/* ==========================================================
   style_index.css
   SOLO CONTENIDO PRINCIPAL (sin header ni footer)
   ========================================================== */

:root{
    --primary-color:#088A88;
    --dark-overlay:rgba(0,0,0,.5);
    --transition-speed:.5s;
    --terciary:#fff;
}

body{
    font-family:'Roboto',sans-serif;
    margin:0;
    font-size:1rem;
    line-height:1.5;
    color:#000;
    background:#F3F3F3;
    overflow-x:hidden;
}

/* TEXTOS */ 
.text-primary { 
    color: var(--primary-color) !important;
}

.text-white{ font-weight: 900; }
.text-secondary { color: var(--secondary-color) !important; }

/* BOTONES GENERALES */
.btn-primary{
    background:var(--primary-color);
    border-color:var(--primary-color);
}

.btn-primary:hover{
    background:#066b6a;
    border-color:#066b6a;
}

.btn-outline-primary{
    border-color:var(--primary-color);
    color:#ffffff;
}

.btn-outline-primary:hover{
    background:var(--primary-color);
    color:#fff;
}

/* HERO / CAROUSEL */
.carousel-item{
    height:100vh;
    min-height:400px;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-caption{
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:var(--dark-overlay);
}

.carousel-caption h1{
    text-shadow:2px 2px 4px rgba(0,0,0,.3);
}

/* ABOUT */
.about-text{
    border-left:5px solid var(--primary-color);
    border-radius:8px;
    box-shadow:0 0 30px rgba(0,0,0,.05);
}

/* SERVICIOS */
.feature-item{
    display:flex;
    align-items:center;
    margin-bottom:28px;
    font-size:1.2rem;
    color:#111;
}

.check-circle{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    background:rgba(8,138,136,.12);
    color:var(--primary-color);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:18px;
}

.service-box{
    background:#fff;
    padding:40px 25px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(8,138,136,.18);
}

.service-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:22px;
    background:#f8f9fa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:var(--primary-color);
}

.service-box h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-box p{
    color:#777;
    margin:0;
    font-size:16px;
    line-height:1.6;
}

/* CONTACTO */
.contacto-card{
    border:1px solid rgba(8,138,136,.15);
    transition:.3s;
}

.contacto-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(8,138,136,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:var(--primary-color);
}

.icon-circle{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#25D366;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* BOTÓN WHATSAPP */
.support-toggle{
    position:fixed;
    right:18px;
    bottom:10px;
    z-index:2000;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    text-decoration:none;
    box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.support-toggle:hover{
    transform:scale(1.1);
}

/* BACK TOP */
.back-to-top{
    position:fixed;
    right:20px;
    bottom:70px;
    display:none;
    z-index:80;
    background:var(--primary-color);
}

/* RESPONSIVE */
@media (max-width:991px){
    .feature-item{
        font-size:1rem;
    }

    .carousel-caption h1{
        font-size:2.5rem;
    }
}   