/*==================================================
1. CONFIGURACIÓN GENERAL
==================================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Segoe UI',sans-serif;
    background:#f5f8fb;
    color:#333;
    line-height:1.7;
}
/*==================================================
2. ENLACES
==================================================*/
a{
    text-decoration:none;
    transition:.3s;
}
img{
    max-width:100%;
    display:block;
}
/*==================================================
3. HEADER
==================================================*/
.navbar{
    background:#FF5722;
    padding:15px 0;
}
.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#fff !important;
}
.navbar-brand span{
    color:#FFD180;
}
.navbar-nav .nav-link{
    color:#fff !important;
    margin-left:18px;
    font-weight:600;
    position:relative;
}
.navbar-nav .nav-link:hover{
    color:#FFD180 !important;
}
.navbar-nav .nav-link.active{
    color:#FFD180 !important;
}
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#FFD180;
    transition:.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}
/*==================================================
4. BANNER DE PÁGINAS
==================================================*/
.page-banner{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("img/banner.jpg") center/cover;
    color:#fff;
    text-align:center;
    padding:110px 20px;
}
.page-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}
.page-banner p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}
/*==================================================
5. TÍTULOS
==================================================*/
.titulo-seccion{
    color:#212529;
    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}
.titulo-seccion::after{
    content:"";
    width:70px;
    height:4px;
    background:#FF5722;
    display:block;
    margin-top:12px;
}
/*==================================================
6. FONDO CLARO
==================================================*/
.fondo-claro{
    background:#eef8f5;
}
/*==================================================
7. SLIDER
==================================================*/
.carousel{
    margin-bottom:40px;
}
.carousel-item{
    height:85vh;
    min-height:500px;
}
.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.65);
}
.carousel-caption{
    bottom:18%;
    text-align:left;
    max-width:650px;
}
.carousel-caption h1{
    font-size:55px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}
.carousel-caption p{
    font-size:20px;
    margin-bottom:30px;
    color:#fff;
}
.carousel-caption .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
/*==================================================
8. BOTONES
==================================================*/
.btn-primary{
    background:#F24822;
    border:none;
    border-radius:40px;
    padding:12px 28px;
    transition:.3s;
}
.btn-primary:hover{
    background:#D93E1B;
    transform:translateY(-3px);
}
.btn-success{
    background:#F24822;
    border:none;
    border-radius:40px;
    padding:12px 28px;
    transition:.3s;
}
.btn-success:hover{
    background:#D93E1B;
    transform:translateY(-3px);
}
/*==================================================
9. TARJETAS GENERALES
==================================================*/
.card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}
.card-body{
    padding:30px;
}
/*==================================================
10. ICONOS
==================================================*/
.icono{
    font-size:55px;
    color:#0B7A75;
    margin-bottom:20px;
    display:block;
}
.producto-icono{
    font-size:45px;
    color:#0b7a75;
    margin:15px 0;
}
/*==================================================
11. IMÁGENES DE TARJETAS
==================================================*/
.card-img-top{
    height:230px;
    object-fit:cover;
}
.producto-card img{
    transition:.4s;
}
.producto-card:hover img{
    transform:scale(1.08);
}
/*==================================================
12. PRODUCTOS
==================================================*/
.producto-card{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    transition:.35s;
}
.producto-card h4{
    font-size:24px;
    color:#0b7a75;
    margin-top:15px;
    font-weight:700;
}
.producto-card p{
    color:#666;
    margin:15px 0;
    min-height:70px;
}
.producto-card .btn{
    width:100%;
    border-radius:30px;
}
/*==================================================
13. BENEFICIOS
==================================================*/
.beneficios{
    background:#eef8f5;
}
.beneficio{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.beneficio:hover{
    transform:translateY(-8px);
}
.beneficio i{
    font-size:55px;
    color:#0B7A75;
    margin-bottom:20px;
}
.beneficio h4,
.beneficio h5{
    color:#0B7A75;
    font-weight:700;
    margin-bottom:15px;
}
.beneficio p{
    color:#666;
    margin:0;
}
/*==================================================
14. NOSOTROS
==================================================*/
section img{
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
section p{
    font-size:17px;
    color:#555;
}
/*==================================================
15. FORMULARIOS
==================================================*/
.form-control{
    border-radius:12px;
    padding:14px;
    border:1px solid #d8d8d8;
    box-shadow:none;
}
.form-control:focus{
    border-color:#FF5722;
    box-shadow:0 0 8px rgba(34,197,94,.25);
}
.form-label{
    font-weight:600;
    color:#212529;
}
textarea{
    resize:none;
}
/*==================================================
16. MAPA
==================================================*/
iframe{
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
/*==================================================
17. FOOTER
==================================================*/
.footer{
    background:#FF5722;
    color:#fff;
    padding:60px 0 20px;
}
.footer h3,
.footer h4{
    font-weight:700;
    margin-bottom:20px;
}
.footer p{
    color:#f5f5f5;
}
.footer ul{
    padding:0;
}
.footer ul li{
    list-style:none;
    margin-bottom:10px;
}
.footer ul li a{
    color:#fff;
    transition:.3s;
}
.footer ul li a:hover{
    color:#ffe082;
    padding-left:8px;
}
.footer hr{
    border-color:rgba(255,255,255,.3);
    margin:30px 0 20px;
}
/*==================================================
18. REDES SOCIALES
==================================================*/
.redes{
    display:flex;
    gap:15px;
    margin-top:15px;
}
.redes a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    color:#FF5722;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.35s;
}
.redes a:hover{
    background:#FFD180;
    color:#000;
    transform:translateY(-5px);
}
/*==================================================
19. BOTÓN WHATSAPP
==================================================*/
.btn-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.30);
    z-index:999;
}
.btn-whatsapp:hover{
    background:#128C7E;
    color:#fff;
    transform:scale(1.1);
}
/*==================================================
20. RESPONSIVE
==================================================*/
@media(max-width:991px){
    .carousel-item{
        height:60vh;
    }
    .carousel-caption{
        bottom:12%;
        text-align:center;
        left:10%;
        right:10%;
    }
    .carousel-caption h1{
        font-size:36px;
    }
    .carousel-caption p{
        font-size:17px;
    }
    .titulo-seccion{
        font-size:30px;
    }
}
@media(max-width:768px){
    .navbar-brand{
        font-size:24px;
    }
    .page-banner{
        padding:70px 20px;
    }
    .page-banner h1{
        font-size:36px;
    }
    .page-banner p{
        font-size:17px;
    }
    .card-body{
        padding:20px;
    }
    .icono{
        font-size:42px;
    }
    .producto-icono{
        font-size:38px;
    }
    .footer{
        text-align:center;
    }
    .redes{
        justify-content:center;
    }
}
@media(max-width:576px){
    .carousel-item{
        height:50vh;
    }
    .carousel-caption h1{
        font-size:28px;
    }
    .carousel-caption p{
        font-size:15px;
    }
    .btn-whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }
}