:root {

    --primary: #E7CF34;
    --secondary: #D3631E;
    --light: #F6F7F8;
    --dark: #ee653c;
    --terceario: linear-gradient(90deg, rgba(153, 17, 17, 1) 31%, rgba(255, 82, 85, 1) 91%);
    --celeste: #ffffff;
    --azul: #ff5255;
}


* {
    font-family: "Noto Sans", "san serif";
  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*-----------ICONO FLOTANTE-------------*/







body {
    position: relative;
}

.btnFlotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

/* El icono queda normal */
.iconoFlotante {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Efecto hover */
.btnFlotante:hover .iconoFlotante {
    transform: scale(1.1);
}

/* Tooltip ahora se posiciona ARRIBA del botón */
.tooltipFlotante {
    position: absolute;
    right: 70px;            /* Se coloca a la izquierda del botón */
    bottom: 15px;           /* Se sube para quedar visible */
    background: #1cb454;
    color:white;
     
     text-shadow: 1px 1px 4px rgb(56, 56, 56); 
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
     filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
    opacity: 0;
    transform: translateX(20px);  /* Sale desde atrás del ícono */
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

/* Cuando pasa el mouse */
.btnFlotante:hover .tooltipFlotante {
    opacity: 1;
    transform: translateX(0); /* Se mueve y queda arriba a la izquierda */
}




.iconoFlotante {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
    transition: transform 0.2s ease;
      animation: pulse 1.6s infinite;
       filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));

}


.iconoFlotantePNG {
    width: 45px;
    transition: transform 0.2s ease;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
    animation: pulse 1.6s infinite;


}
.iconoFlotantePNG:hover {
 border: solid 5px var(--azul);

    background-color: #b43e40;
}


    /* Animación tipo latido */
@keyframes pulse {
    0% {
        transform: scale(1);
        
    }

    50% {
        transform: scale(1.05);
        
    }

    100% {
        transform: scale(1);
     
    }
}

@media(max-width:500px) {


.btnFlotante:hover .tooltipFlotante {
    opacity: 0;
    
}


}

/*----------------------*/

.navbar-collapse {
    justify-content: space-evenly;
}

.navbar {
    padding: 0;
}

.contRedesNAV {
    display: flex;
    gap: 1.5rem;

}

.enlace-color {
    color: var(--light)
}

.enlace-color:hover {
    background-color: rgb(253, 47, 226);
}

.enlace-color:focus {
    color: rgba(255, 255, 255, 0.5)
}

.navbar-toggler {
    border: 1px solid var(--primary);
    color: rgba(255, 0, 0, 0);
    padding: 0.25rem 0.5rem;

}

.icoMenu1 {
    width: 2rem;
}

.icon-burger {
    color: var(--primary);

}

.contRedes {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.iconRedes {
    font-size: 1.8rem;
    color: var(--celeste);
}

.iconRedes:hover {
    color: var(--primary);
}

.logo {
    color: var(--light);
    font-family: 'Times New Roman', Times, serif;
    gap: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo:hover {
    color: var(--primary)
}

.container-fluid {

    padding-bottom: 1rem;
    padding-top: 1rem;
}

.navbar .container-fluid {
    justify-content: space-between;
}



/*.carousel-control-next{
    position: initial;
}*/


.navbar-collapse {
    justify-content: space-evenly;
}

.container-color {
    background-color: rgba(245 82 82 / 82%);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.055) !important;
    padding: 1rem;

}

.enlace-color:hover {
    background-color: var(--primary);
}

.enlace-color:focus {
    color: rgba(255, 255, 255, 0.5)
}

.navbar-toggler {
    border: 1px solid var(--primary);
    color: rgba(255, 0, 0, 0);
    padding: 0.25rem 0.5rem;
    margin-right: 1rem;

}

.contRedes {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo {
    color: var(--light);
    font-family: 'Times New Roman', Times, serif;
    gap: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo:hover {
    color: var(--primary)
}

.logoImg {
    padding-left: 10px;
    width: 10rem;

}

.container-fluid {

    padding: 0.5rem 0 0.5rem 0;
    justify-content: flex-end;

}

@media(max-width: 980px) {
    .marginEspecial {
        margin-bottom: 1rem;
    }
}

/*------------------------VIDEO-------------------------*/
.navbar {
    z-index: 5;
    position: fixed;
    width: 100%;
}

.contVideo {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.capa {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(31, 30, 30);
    opacity: 0.5;
    mix-blend-mode: overlay;

}

.contInfo {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    height: 550px;
}

/*------------NAV transparente---------------------*/
.bg-light {
    opacity: 1;
    background-color: rgba(var(--bs-light-rgb), 0) !important;


}

.container-color {
    background-color: rgba(245 82 82 / 82%);
}

/*-------------------Text Principal -------------------*/
.navbar-collapse {

    padding: 1rem;
}

.contTexVideo {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 55%;

}



.contTexVideo h1 {
    text-align: center;
    font-size: 6rem;
    font-weight: 900;
    font-family: "serif";
    
   
 

}

.contTexVideo h2{
    padding-top: 10px;
    padding-bottom: 30px;
    font-weight: 400;

}
.contTexVideo h1 strong {
    color: var(--azul);
    text-shadow: 1px 1px 10px rgb(0, 0, 0);

    font-weight: 600;
    font-style: italic;
}

.contTexVideo h2,
h1 {
    color: #f5f5f5;
      text-shadow:5px 5px 3px rgb(0, 0, 0);
  
    
    
}

.lineaRoja {
   height: 15px;
       background: var(--terceario);
       width: 100%;
    
}
.contTexVideo h2 {
    margin-top: 10px;
    font-size: 2rem;
    text-align: center;
    
}

.titulo {
    font-weight: 900;
}

.subtitulo {
    color: var(--azul);
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    font-weight: 300;


}



.materiasOfrecidas {
    display: flex;
    gap: 1rem;

}

.materiasOfrecidas h3 {
    color: var(--primary);
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    font-size: 2rem;

}

h3 {
    text-align: center;
}

.BotonDatosWeb3 {
    text-decoration: none;
    background: #E7CF34;
    background: var(--terceario);
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--light);
    text-shadow: 1px 1px 5px rgb(34, 9, 1);
    font-weight: 800;
    box-shadow: 2px 2px 15px rgb(233, 71, 22);
    margin-top: 2rem;
    font-size: 1.3rem;
       animation: pulse 1.6s infinite;


}

.BotonDatosWeb3:active {

    font-size: 1.8rem;
}

@media (max-width: 500px) {

    .logoImg {
        width: 12rem;
    }

    .contTexVideo {
        margin-bottom: -1rem;
    }

    .contTexVideo {

    width: 90%;
}



    .contTexVideo h1 {
        font-size: 4rem;
        text-align: center;
    }

    .contTexVideo h1 strong {
        color: var(--azul);
        text-shadow: 1px 1px 10px rgb(18, 19, 22);
        font-size: 1.5rem;
        font-weight: 600;
        font-style: italic;
    }

    .contTexVideo h2 {
        font-size: 1.2rem;
        text-align: center;
         text-shadow:
        3px 3px 4px rgb(15, 0, 0),
        -3px -3px 4px rgb(29, 0, 0);
        color: #f1f1f1;
        font-weight: 600;
         
        
    }

    .lineaRoja{
        height: 10px;
    }
    .subtitulo {
        color: var(--azul);
    }

    .materiasOfrecidas h3 {
        font-size: 1.5rem;
        text-align: center;
    }

}

@media (max-width: 350px) {

    .contTexVideo h1 {
        font-size: 3rem;
        text-align: center;
    }

   
    .materiasOfrecidas h3 {
        font-size: 1.3rem;
        text-align: center;
    }

}

/*-------------PERFIL----------------------*/
.perfil {
    background-color: #f8f6f7d2;
    padding: 3rem 0 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contPerfil {
    display: flex;
    gap: 1.2rem;
    justify-content: center;


}

.imgProfe {
    width: 50%;
    max-width: 350px;
    height: auto;
}

.contTextPerfil {
    display: flex;
    flex-direction: column;

    width: 500px;
}

.name,
.Profesorado,
.texResaltado {
    color: var(--azul);
}

.Profesorado {
    margin: 2px 0 05px 0;
    font-weight: 400;
}

.name {
    font-size: 3rem;
    font-weight: 800;
    margin: 0px;
}

/*--------MATRICULAS----------*/


.sectionMatriculas {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;

    padding: 2rem;
}

.contmatriculas {

    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--azul);
    border-radius: 20px;
    background-color: rgb(240, 240, 240);
    width: 95%;


}

.tituloMatriculas {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #141414;

}

.contlogomatriculas {
    display: flex;
    gap: 6rem;
}

.matriculaA {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.logoMatricula {

    height: 70px;
    width: auto;
}

.siglas {
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    color: #004694;
}

@media(max-width:700px) {
    .contlogomatriculas {

        gap: 2rem;
    }

}

@media(max-width:600px) {

    .contPerfil {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: center;
    }

    .contTextPerfil {
        width: 300px;

    }


    .matriculaA {
        width: 90px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5rem;
    }

}

@media(max-width:500px) {
    .imgProfe {
        width: 90%;
    }

    .name {
        font-size: 2.2rem;
    }

}

@media(max-width:390px) {


    .sectionMatriculas {

        padding: 0.5rem;
    }

    .contmatriculas {
        width: 100%;
        padding: 5px;
    }
    .matriculaA{
        width: 80px;
    }

}

@media(max-width:350px) {
    .contlogomatriculas {

        flex-wrap: wrap;
        justify-content: center;
    }



}



/*--------------------CARD AVISOS------------------------*/

.ContCardAviso {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;

}

.cardAviso {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    min-height: 230px;
    gap: 0.5rem;
    border: 3px solid var(--azul);
    border-radius: 20px;
    padding: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: var(--azul);

}

.cardAviso:hover {

    background-color: var(--azul);
    color: #ffffff;

}

.icoAviso {
    width: auto;
    height: 70px;
    margin-bottom: 15px;
    margin-top: 15px;
}


.cardAvisoh2 {
    font-size: 1rem;
    text-align: center;

}


.cardAvisoP {
    font-size: 0.8rem;
    text-align: center;


}

.urgencia {
    animation: pulse 1.6s infinite;
}



/* Animación tipo latido */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 80, 180, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 80, 180, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 80, 180, 0.4);
    }
}

/*---------------MATERIAS------------------------*/
.todasMaterias {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
}

.conTotalMateria {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center
}

.contTexMateria {
    width: 250px;
    height: 640px;
    border: 1px solid gainsboro;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.seccionTitulo {

    text-align: center;
    font-size: 4rem;
    color: #F6F7F8;
    font-weight: 600;
    background-color: var(--azul);
    padding: 10px 0;
    width: 100%;


}

.seccionTituloBajada {
    text-align: center;
}

.seccionTitulo,
h2 {
    font-weight: 700;
}

.LineaBanner,
.LineaBanner2,
.LineaBanner3 {
    width: 100%;
    height: 21%;


    background-size: auto 134px;
    margin-bottom: 1rem;
    border-radius: 0.8rem 0.8rem 0 0;
}

ul {
    margin-left: 10px;
    margin-right: 20px;
}

.img1 {
    background-image: url(/asset/img/AIRE_ACONDICIONADO.jpg);
}

.img2 {
    background-image: url(/asset/img/ELECTRICISTA.png);
}

.img3 {
    background-image: url(/asset/img/GASISTA_2.jpg);
}

.img4 {
    background-image: url(/asset/img/PLOMERO.jpg);
}

.img5 {
    background-image: url(/asset/img/ALBAÑIL.jpg);
}

.img6 {
    background-image: url(/asset/img/CARPINTERO.jpg);
}

.img7 {
    background-image: url(/asset/img/CERRAJERO.jpg);
}

.img8 {
    background-image: url(/asset/img/HERRERO.jpg);
}

.img9 {
    background-image: url(/asset/img/PERSIANISTA.jpg);
}

.img10 {
    background-image: url(/asset/img/PINTOR.jpg);
}


.LineaBanner2 {
    background-image: url(/pages/servicios/productos/webs/web_3/asset/img/fisica.png);
    background-color: #fd7348;
}

.LineaBanner3 {
    background-image: url(/pages/servicios/productos/webs/web_3/asset/img/texturas-materias-quimica.png);
    background-color: #48fda9;
}

li {

    transition: transform 0.1s ease;
    cursor: pointer;
}

li:hover {
    transform: scale(1.02);
    color: var(--azul);
}

@media(max-width:500px){
    .contTexMateria {
    width: 310px;
    height: 540px;
  
}
}


/*------------------------GALERIA--------------------------*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}

.d-none{
 display: block !important;

}
.carousel-caption {
    position: absolute;
     right: 0;
    bottom: 0;
     left: 0; 
    padding-top: 1.25rem;
    /* padding-bottom: 0; */
    color: #fff;
    text-align: center;
    background-color: #0000002f

}
/* Responsive */
@media (max-width: 600px) {
    .caption {
        font-size: 12px;
        padding: 6px;
    }


}

/*------------------------------------------------*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.overlay-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.overlay-content img {
    max-width: 100%;
    max-height: 80vh;
    margin-bottom: 10px;
}

.overlay-content p {
    color: #fff;
    font-size: 16px;
}


/*--------------------------CONTACTOS-----------------------------------*/
.contTotalContacto {
    padding: 1rem 0.5rem;
    background-color: #f8f6f7d2;

}

.datosContacto {

    display: flex;
    flex-direction: column;
    align-items: center;
}

.conRedesMasBajada {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.conRedesMasBajada p {
    width: 500px;
    text-align: justify;
}

.celu{
    font-size: 1.8rem;
    color: rgb(29, 29, 28);
    border: 3px solid var(--azul);
    padding: 8px;
    border-radius: 14px;
 


}

.ContRedes {

    display: flex;
    gap: 2.2rem;
    justify-content: space-evenly;
    margin-bottom: 1.6rem;

}

.contContactoRedes {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

}

.contContactoRedes a {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    text-decoration: none;


}

.cambioColor {
    font-size: 1.5rem;
    color: var(--azul);
    transition: transform 0.1s ease;
}


.cambioColor:active {
    transform: scale(0.92);
}

.iconoRedesPNG {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.2s ease;
}

.iconoRedesPNG:hover {
    transform: scale(1.1);
}

.icoTamaño {
    width: 35px;
}


.mapsGoogle{
    width: 100%;
    max-width: 100%;
    height: 350px; /* o auto si querés */




}

.maps{
    width: 100%;
    max-width: 100%;
    height: 350px; /* o auto si querés */




}



@media (max-width:500px) {
    .mailContacto {
        font-size: 1.2rem;
    }

  
    .conRedesMasBajada p {
        width: 300px;
        text-align: left;
    }

    .seccionTitulo {
        font-size: 3rem;
    }


.maps{
   
    
    height: 450px; /* o auto si querés */




}

.mapsGoogle{
  
    height: 450px; /* o auto si querés */

}

}




@media (max-width:320px) {
   
    .conRedesMasBajada p {
        width: 300px;
    }
}

/*----------------Footer---------------------------*/
.footer {
    background-color: #b43e40;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--light);
    align-items: center;
    padding: 1rem 0 1rem 0;

}

.contLogo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contTextFooter {
    width: 50%;
    text-align: center;
    font-weight: 200;
    line-height: 1.4rem;
}

.line {
    width: 90%;
    border: 0.5px solid var(--primary);

}

.contPubli a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.664);
    font-size: 0.8rem;
    font-weight: 200;
}

.contPubli a:hover {
    color: #000000;
}




.botonUno {
    border: 1px solid var(--light);
    text-decoration: none;
    background: #E7CF34;
    background: var(--terceario);
    padding: 0.5rem 1rem 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--light);
    text-shadow: 1px 1px 5px rgb(34, 9, 1);
    font-weight: 800;
    box-shadow: 2px 2px 15px rgb(233, 71, 22);

    font-size: 1.3rem;


}


.logoFooter {
    width: 15rem;
}

@media (max-width:450px) {
    .contTextFooter {
        width: 95%;

    }

}

@media (max-width:400px) {
    .mailContacto {
        font-size: 1rem;
        margin-top: 10px;
    }
}