/*---FONTS---*/
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/*---BODY---*/

body {
    margin: 0;
    padding: 0;
    font-family:sans-serif;
    box-sizing: border-box;
    background-color: #f2f4f4;   
}

div, body {
    box-sizing: border-box;
}

    /*---TOP BAR---*/

.top-bar {
    background: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-family: poppins;
    font-size: 15px;
    gap: 5px;
}
.top-bar span {
    margin: 0 10px;
    word-break: break-all;
    text-align: center;
}
.btn-contacto {
    background: blue ;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    font-family: poppins;
    font-weight: 600;
    margin: 0 10px;
}
.btn-contacto:hover {
    background: #0f05bb;
    color: white;
}

.top-bar img {
    width: 17px;
    
}

@media (min-width: 601px) {
.btn-contacto {
    margin-left: 230px; /* Aumenta el espacio entre el botón y el texto */
}
}

/*---TOP BAR MEDIA QUERY---*/

@media (max-width: 600px) {
.top-bar {
    flex-direction: column;
    font-size: 13px;
}
.top-bar span, .btn-contacto {
    margin: 5px 0;
    width: 100%;
    text-align: center;
}
.btn-contacto {
    width: auto;
    min-width: 120px;
    max-width: 80%;
    margin: 10px auto;
    display: block;
    text-align: center;
    background: blue;
    color: white;
}
}

    /*---MENU---*/

.header {
    display: flex;
    align-items: center;
    background: #222;
    padding: 10px 60px;
    position: relative;
    max-width: 100%;
    position: sticky;
    top: 0;
    z-index: 1;
}

.logo {
    height: 100px;
    margin-right: auto;
}

.menu-toggle {
    display: none !important;
}

.hamburger {
    width: 35px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
    margin-bottom: 8px;
}

.menu {
    font-family: poppins;
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 115px;
    right: 0px;
    width: 330px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.menu a {
    color: #fff;
    padding: 15px 20px;
    font-family: poppins;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: background 0.2s;
}

.menu a:last-child {
    border-bottom: none;
}

.menu a:hover {
    color:  #4285F4;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.menu-toggle:checked ~ .menu {
    display: flex;
    max-height: 500px;
}

/*---MENU ACTIVE---*/

.menu a.active, .menu-link.active {
    color: #4285F4;
    padding: 15px 20px;
    font-family: poppins;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
}


/*---MENU ACTIVE---*/

.menu a.active, .menu-link.active {
    color: #4285F4;
    padding: 15px 20px;
    font-family: poppins;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
}

/*---MENU MEDIA QUERY MAX-WIDTH 700 px---*/

@media (max-width: 700px) {
.hamburger, .menu-toggle {
    display: block;
}
.menu {
    display: none;
    flex-direction: column;
    background: #222;
    width: 100%;
    border-radius: 0 0 8px 8px;
}
.menu-toggle:checked + .hamburger + .menu {
    display: flex;
}
.menu a {
    padding: 12px 18px;
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid #444;
}
.header {
    justify-content: space-between;
    
}
.main__content {
    transition: margin-top 0.5s;
    margin-top: 0;
}
.menu-toggle:checked ~ .main__content {
    margin-top: 360px; /* Ajusta según la altura de tu menú */
}
}

/*---MENU MEDIA QUERY MIN-WIDTH 700 px---*/

@media (min-width: 700px) {
.hamburger, .menu-toggle {
    display: none;
}
.menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: none;
    box-shadow: none;
    width: auto;
    border-radius: 0;
}
.menu a {
    border: none;
    padding: 0 18px;
    color: #fff;
    font-size: 16px;
    
}
.header {
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
}

.logo {
    margin-bottom: 0;
    display: block;
}
}

/*---TITULO PAGINA---*/

.seccion_titulo-container {
    background-color: #f2f4f4;
    display: flex;
    height: 35px;
    justify-content: center;
    margin: 20px 0px 80px;

}

.seccion_titulo {
    background-color:#0f05bb ;
    height: 45px;
    width:310px;
    font-family: sans-serif;    
    color: white;
    font-size: 10px;
    padding: 1px 0px 48px 0px;
    border-radius: 18px;
    text-align: center;
}    

/*---VIDEO---*/

video {   
    background-color: #f2f4f4;
    max-width: 100%;   
}

.video__container {
    background-color: #f2f4f4;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

.video {    
    max-width: 570px;
    min-width: 100px;
    margin: 20px;
    animation: aparecer 3s -.6s both;
}

.video__data {  
    background-color: #f2f4f4; 
    min-width: 360px;
    flex: 1;
    width: 100%;
    padding: 0px 10px;  
    margin: 15px;    
    padding: 0px 0px 40px; 
}

.video__data h3 {
    font-size: 18px;
    color: #0f05bb;
    line-height: 25px;
    margin: 0;
}

.video__data p {
    text-align: justify;
    font-size: 15px;
    font-family: poppins;
    font-weight:300;
    line-height: 25px;
    margin: 0px;
    color: #424242;
    padding: 0px 0px 50px;
}

.video__data b {
    font-size: 15px;
    font-family: poppins;
    font-weight: 900;
    color: #0f05bb;
}

.video__ver h3 {
    font-size: 18px;
    font-family: poppins;
    font-weight: 400;
    margin: 6px 0;
    display: block;
    text-align:left;
    color: #0f05bb;
}

.video__ver p {
    font-size: 15px;
    font-family: poppins;
    font-weight: 300;
    margin: 0px;
    text-align:justify; 
    line-height: 22px;
    padding: 0px 0px 20px;
    color: red;
}

.video__data strong {
    color: #0f05bb;
    font-weight: 300;
}


/*---SOLICITE COTIZACIÓN---*/

.cotizar-btn { 
    display: inline-block; 
    padding: 12px 28px; 
    background-color: #0f05bb; 
    color: #fff; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 16px;
    font-family: poppins;
    font-weight: 500;
    letter-spacing: 2px;
    transition: background 0.2s;
} 
.cotizar-btn:hover {
    background-color: black;
}

/*---ROTUVINIL...---*/

.rotuvinil__container {
    background-color: #0f05bb;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1170px;
    margin: auto;
    animation: aparecer 3s -.6s both;
}

.card__item {
    display: inline-block;
    min-width: 230px;   
    background-color: #0f05bb;
    margin: auto;
    width: 100%;
    flex: 1; 
    padding: 0px;
    margin: 20px;
    text-align: center; 
}

.card__texto h3 {
    font-size: 16px;
    font-family: poppins;
    font-weight: 400;
    color: white;
    line-height: 30px;
    
}

/*---ROTULACION---*/

.rotulación__container {
    background-color: #f2f4f4;
    margin: 40px;
}

.requiere {
    background-color: #f2f4f4;
    max-width: 1200px;
    font-size: 22px;
    font-family: poppins;
    font-weight: 500;
    color: black;
    margin: auto;
    text-align: center;
    line-height: 35px;
}

.requiere strong {
    color: #0f05bb;
    font-weight: 500;
}

/*---IMAGENES FLEXIBLES---*/

.bloque__foto img {
    max-width: 100%;
    height: auto;
}

.flexbox__container {
    background-color: #f2f4f4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.bloque__foto {
    display: inline-block;
    min-width: 330px;   
    background-color: #f2f4f4;
    margin: auto;
    width: 100%;
    flex: 1; 
    padding: 0px;
    margin: 15px;
    text-align: center;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 2% cover 40%;
}

.bloque__texto h3 {
    font-size: 22px;
    color: #0f05bb;
    font-family: poppins;
    font-weight: 600;
    line-height: 30px;
    margin: 10px 0px 8px;
    
}

.bloque__texto p {
    background-color: #f2f4f4;
    font-size: 15px;
    color: #424242;
    font-family: poppins;
    font-weight: 300;
    text-align: center;
    line-height: 25px;
    margin: 0px 0px 45px;
}

/*---CORTE---*/

.corte__container {
    background-color: #f2f4f4;
    display: flex;
    height: 45px;
    justify-content: center;
    margin: 50px 0px 40px;
}

.corte {
    background-color:#0f05bb ;
    height: 45px;
    width:310px;
    color: white;
    font-size: 20px;
    font-family: poppins;
    font-weight: 600;
    padding: 8px;
    border-radius: 18px;
    text-align: center;    
} 

/*---TE OFRECE---*/

.ofrece {
    background-color: #f2f4f4;
    max-width: 1250px;
    font-size: 10px;
    font-family: poppins;
    font-weight: 400;
    color: black;
    margin: auto;
    text-align: center;
    line-height: 30px;
}

/*---3 REDONDELES FLEXIBLES---*/

.circulo__foto img {
    max-width: 40%;
    border-radius: 50%;
    height: auto;
    animation: aparecer both;
    animation-timeline: view();
    animation-range: cover 2% cover 40%;
}

.circulo__container {
    background-color: #f2f4f4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.circulo__foto {
    display: inline-block;
    min-width: 230px;   
    background-color: #f2f4f4;
    margin: auto;
    width: 100%;
    flex: 1; 
    padding: 0px;
    margin: 20px;
    text-align: center; 
}

.circulo__texto h3 {
    font-size: 18px;
    font-family: poppins;
    font-weight: 600;
    color: #0f05bb;
    line-height: 10px;
    
}

.circulo__texto p {
    font-size: 15px;
    font-family: poppins;
    font-weight: 300;
    text-align: center;
    line-height: 25px;
    margin: 0;
}

.circulo__texto span {
    color: #0f05bb;
    font-weight: 300;
}

/*---MAS DE 8 AÑOS DE EXPERIENCIA---*/

.informacion__footer {
    background-color: black;
    height: 230px;
}

.mas__de {   
    padding: 60px 0px 5px;
    font-size: 13px;
    font-family: poppins;
    font-weight: 600;
    text-align: center;
    color: #007bff;
    line-height: 22px;
    background-color: black;
}

/*---PARA TODOS NUESTROS PRODUCTOS---*/
.para__todos {
    font-size: 13px;
    font-family: poppins;
    font-weight: 300;
    text-align: center;
    color: white;
    line-height: 32px;
}

/*---APLICAN RESTRICCIONES---*/

.aplican__restricciones {
    padding: 10px;   
    font-size: 13px;
    font-family: poppins;
    font-weight: 300;
    text-align: center;
    color: white;
    line-height: 22px;
}

/*---FORMAS DE PAGO---*/
.formas__pago {
    padding: 8px;
    font-size: 13px;
    font-family: poppins;
    font-weight: 300;
    text-align: center;
    color: white;
    line-height: 22px;
    position: relative;
}

/*---FOOTER---*/

.footer {
    background-color: black;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    color: white;
}

.footer-content {
    background-color: black;
    max-width: 1150px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 40px 10px;
    gap: 90px;
}

.logofooter img {
    width: 120px;
}

.logo {
    margin: 0px 0px 0px 0px;
}

.listo {
    list-style: none;
    margin: 10px 0px;
    text-decoration: none;
    
}

.listo a {
    text-decoration: none;
    font-size: 14px;
    font-family: poppins;
    font-weight: 400;
    color: #eaecee;
    
}

.lista {
    list-style: none;
    font-size: 14px;
    font-family: poppins;
    font-weight: 400;
    color: #eaecee;
}

.ic__tel img {
    width: 14px;
    height: 14px;
}

.ic__tel {
    padding: initial;
    font-family: poppins;
    font-weight: 400;
}

.elem a {
    color: #eaecee;
    
    text-decoration: none;  
}

.elem a:hover{
    color: #03a9f4;
}

.elem img {
    width: 20px;
    height: 14px;
}

.elem {
    padding: initial;
    line-height:20px;
    
}

.elem:hover {
    color:#4285F4 ;
    cursor: pointer;
    transition: all 0.3s ease;
}

.title {
    color: white;
    font-family: poppins;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
}

.title::after {
    content: "";
    position: absolute;
    left: 0;
    background-color: blue;
    top: 100%;
    width: 50px;
    height: 2px;
    border-radius: 5px;
}

@media (max-width: 700px){

    .footer {
        display: flex;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

/*---DERECHOS RESERVADOS--*/

.derechos__reservados {
    background-color: black;    
    padding: 40px 25px 40px 25px;   
    text-align: center;
    font-size: 12px;
    font-family: poppins;
    font-weight: 300; 
    color: white;
    line-height: 22px;
}

/*---ANIMACIONES---*/

@keyframes aparecer {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*---LINEA DE TELEFONO---*/

.boton-flotante-redondo {
    position: fixed;
    bottom: 130px;
    right: 20px;
    background-color: #25d366; /* Verde tipo WhatsApp */
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: background 0.3s;
}
.boton-flotante-redondo:hover {
    background-color: #128C7E;
}

.boton-flotante-redondo img {
    width:30px;
    height:30px;
}

/*---BOTON REGRESAR ARRIBA---*/

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    background:#155DFC ;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
    display: none;
}
#scrollTopBtn:hover {
    background: #0f05bb;
}
.boton__subir img {
    width: 20px;
}