﻿html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* alto del header fijo */
}



body{
    font-family: "Montserrat", sans-serif;
}

.ayuda{
    height: 135px;
}

.cintillo{
    background: #c72127;
    color: white;
    text-align: center;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cabecera{
    padding-top: 12px;
    padding-bottom: 12px;
}

.logotipo img{
    width: 100%;
}

nav a{
    color: black;
    text-decoration: none;
}
nav ul{
    list-style: none;
    padding: 0;
}
nav ul li{
    width: 25%;
    float: left;
}

.menu{
    text-align: center;
    font-size: 22px;
}
.menu:hover, .activo{
    font-weight: bold;
    color: #0c548f;
}

.datos{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #c72127;
    font-weight: bold;
}






.efecto{
    padding: 0;
}


.boton{
    margin-top: -40px;
}


.leyenda{
    background: #f7f7f7;
    text-align: center;
    font-weight: 600;
    font-size: 21px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.leyenda strong{
    font-size: 30px;
    color: #c72127;
}


.productos-inicio{
    padding-top: 40px;
    padding-bottom: 40px;
}

.titulo{
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 32px;
    color: #c72127;
    margin-bottom: 40px;
}



.pro img{
    width: 100%;
}
.pro strong, .pro h3, .pro h2{
    width: 100%;
    text-align: center;
    color: #b11c21;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}


.imagen img{
    width: 100%;
}

.desc h2{
    background: #ef7940;
    width: 100%;
    text-transform: uppercase;
    font-size: 22px;
    color: white;
    padding: 4px 12px;
    margin-bottom: 12px;
    display: inline-block;
}


.texto-producto{
    font-size: 15px;
}
.texto-producto h2, .texto-producto h3, .texto-producto h4, .texto-producto h5{
    font-size: 15px;
    font-weight: bold;
}
.texto-producto span{
    font-size: 13px;
    color: gray;
}
.texto-producto img{
    width: 50%;
}



.nosotros{
    padding-top: 30px;
    padding-bottom: 30px;
}


.seccion{
    background: #0a3f6b;
    color: white;
    font-size: 20px;
    padding: 40px;
}


.img1{
    background: url(../images/1.webp) no-repeat center center;
    background-size: cover;
}
.img2{
    background: url(../images/2.webp) no-repeat center center;
    background-size: cover;
}
.img3{
    background: url(../images/3.webp) no-repeat center center;
    background-size: cover;
}



@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){
    .ayuda{
        display: none;
    }
    header{
        position: relative;
    }
}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .seccion{
        padding: 10px;
    }
    .img{
        height: 300px;
    }
    nav{
        margin-top: 20px !important;
    }
    nav ul li{
        width: 33.33%;
    }
    .texto-producto img{
        width: 100%;
    }
}

@media screen and (max-width:576px){
    
}




.chat{
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: #24d366;
    font-weight: normal;
    font-size: 20px;
    color: white;
    padding: 6px 17px;
    border-radius: 20px;

    animation-name: pulse;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0s;
    animation-iteration-count: 100;
}
@keyframes pulse {
    from,to {
        transform: scale3d(1,1,1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }
}

.pulse {
    animation-name: pulse
}



.form-group{
    margin-bottom: 12px;
}




.footer-site{
    margin-top: 30px;
    background: linear-gradient(180deg, #0c548f 0%, #0a3f6b 55%, #072c4a 100%);
    color: rgba(255,255,255,0.92);
    padding-top: 55px;
    padding-bottom: 0;
}

.footer-brand img{
    width: 210px;
    max-width: 100%;
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.footer-title{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-text{
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.footer-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links a{
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .12s ease, opacity .12s ease;
}

.footer-links a:hover{
    transform: translateX(3px);
    opacity: 0.95;
    color: #ffffff;
}

.footer-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c72127;
    box-shadow: 0 0 0 4px rgba(199,33,39,0.18);
    display: inline-block;
}

.footer-contact{
    display: grid;
    gap: 14px;
}

.footer-contact-item{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-icon{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-contact-label{
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 2px;
}

.footer-contact-link{
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.footer-contact-link:hover{
    text-decoration: underline;
}

.footer-cta{
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.footer-btn{
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
}

.footer-btn-primary{
    background: #c72127;
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
}

.footer-btn-primary:hover{
    background: #b11c21;
    color: white;
}

.footer-btn-outline{
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
}

.footer-btn-outline:hover{
    background: rgba(255,255,255,0.14);
    color: white;
}

.footer-bottom{
    margin-top: 45px;
    background: rgba(0,0,0,0.22);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-mini-link{
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 700;
}

.footer-mini-link:hover{
    text-decoration: underline;
}

.footer-mini-sep{
    margin: 0 10px;
    opacity: 0.65;
}

@media screen and (max-width:576px){
    .footer-brand img{
        width: 180px;
    }
    .footer-title{
        font-size: 19px;
    }
}



.ft-card{
    border: 1px solid #e9ecef;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.ft-header{
    padding: 28px 28px 16px 28px;
    text-align: center;
}
.ft-title{
    color: #b11c21;
    font-weight: 800;
    letter-spacing: .5px;
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
}
.ft-subtitle{
    margin: 12px 0 0 0;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    font-size: clamp(16px, 1.6vw, 22px);
}
.ft-meta{
    padding: 0 28px 18px 28px;
    font-size: 18px;
}
.ft-meta strong{
    font-weight: 800;
}

.ft-table-wrap{
    padding: 0 28px 18px 28px;
}

.ft-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 14px; /* separa filas tipo "lista" como en tu imagen */
}
.ft-table thead th{
    font-weight: 800;
    font-size: 20px;
    padding: 10px 12px;
    border: 0;
    white-space: nowrap;
}
.ft-table tbody td{
    padding: 16px 12px;
    border: 0;
    background: #fff;
    vertical-align: middle;
    font-size: 18px;
}

/* “Píldoras” por fila */
.ft-table tbody tr td:first-child{
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}
.ft-table tbody tr td:last-child{
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}
.ft-row{
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
    outline: 1px solid #f0f2f5;
}

/* Alineaciones tipo ficha */
.ft-col-prop{ font-weight: 600; }
.ft-col-valor{ text-align: center; font-weight: 800; }
.ft-col-unidad{ text-align: center; color: #495057; }
.ft-col-metodo{ text-align: end; font-weight: 700; color: #212529; }

.ft-footer{
    padding: 18px 28px 26px 28px;
    font-size: 18px;
}
.ft-footer strong{
    font-weight: 800;
}

/* Responsive */
@media (max-width: 767.98px){
    .ft-meta, .ft-table-wrap, .ft-footer, .ft-header{
        padding-left: 16px;
        padding-right: 16px;
    }
    .ft-table thead{
        display: none;
    }
    .ft-table, .ft-table tbody, .ft-table tr, .ft-table td{
        display: block;
        width: 100%;
    }
    .ft-table{
        border-spacing: 0 12px;
    }
    .ft-table tbody td{
        border-radius: 0 !important;
        box-shadow: none;
    }
    .ft-row{
        border-radius: 14px;
        padding: 10px 12px;
    }
    .ft-table tbody tr{
        background: #fff;
    }
    .ft-table tbody tr td{
        background: transparent;
        padding: 8px 0;
        font-size: 16px;
    }
    .ft-col-prop{ font-weight: 800; }
    .ft-col-valor, .ft-col-unidad, .ft-col-metodo{ text-align: start; }
    .ft-label{
        display: inline-block;
        min-width: 120px;
        color: #6c757d;
        font-weight: 700;
        margin-right: 6px;
    }
}