/* =========================================================
   VARIABLES
   ========================================================= */

/*
   CAMBIA ESTOS VALORES PARA REBRANDEAR TODA LA PLANTILLA.

   --primary = color principal
   --dark    = fondo oscuro
*/
:root {
    --primary: #0d6efd;
    --primary-dark: #084298;
    --dark: #07111f;
    --dark-2: #0d1b2a;
    --light: #f7f9fc;
    --text: #182230;
    --muted: #687385;
    --success: #25D366;
    --radius: 18px;
    --shadow: 0 15px 45px rgba(10, 25, 50, .10);
}


/* =========================================================
   BASE
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    transition: .25s ease;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.03em;
}

.section-subtitle {
    max-width: 650px;
    color: rgba(255,255,255,.70);
}

.eyebrow {
    display: inline-block;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .13em;
}

.eyebrow-light {
    color: #8fc4ff;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    background: rgba(7, 17, 31, .88);
    backdrop-filter: blur(14px);
    transition: .25s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.navbar-brand {
    font-size: 1.1rem;
}

.logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-link {
    color: rgba(255,255,255,.85) !important;
    font-size: .92rem;
    margin-left: 8px;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar-toggler {
    border: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 760px;
    position: relative;
    background:
        linear-gradient(135deg, rgba(3,10,20,.96), rgba(7,35,68,.82)),
        url("../img/hero.svg") center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 45%, rgba(13,110,253,.25), transparent 38%);
}

.hero-description {
    max-width: 680px;
    color: rgba(255,255,255,.80);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.hero-meta i {
    color: #7eb7ff;
    margin-right: 5px;
}

.hero-card {
    padding: 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 25px;
    background: rgba(255,255,255,.07);
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
}

.hero-card img {
    display: block;
    width: 100%;
    border-radius: 18px;
}

.hero-card-caption {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    padding: 14px 10px 4px;
    font-size: .9rem;
}

.hero-card-caption i {
    color: #51e38a;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar {
    background: #fff;
    padding: 28px 0;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
    position: relative;
    z-index: 3;
}

.trust-bar i {
    display: block;
    font-size: 1.55rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.trust-bar strong,
.trust-bar small {
    display: block;
}

.trust-bar small {
    color: var(--muted);
}


/* =========================================================
   NOSOTROS
   ========================================================= */

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 13px;
}

.check-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list-item i {
    color: var(--success);
    font-size: 1.2rem;
}


/* =========================================================
   BENEFICIOS
   ========================================================= */

.benefit-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: var(--radius);
    padding: 32px 24px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(20,40,80,.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,.10);
    color: var(--primary);
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card p {
    color: var(--muted);
    margin-bottom: 0;
}


/* =========================================================
   SERVICIOS
   ========================================================= */

.services-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(13,110,253,.20), transparent 30%),
        var(--dark);
}

.service-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    transition: .25s ease;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.service-card p {
    color: var(--muted);
}

.service-price {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    padding: 70px 0;
    background: #fff;
}

.cta-section .container {
    background: var(--light);
    border: 1px solid #e7edf5;
    border-radius: 24px;
    padding: 45px;
}


/* =========================================================
   GALERÍA
   ========================================================= */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eef2f7;
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform .4s ease;
}

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

.gallery-caption {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: rgba(0,0,0,.70);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}


/* =========================================================
   INFO CARDS
   ========================================================= */

.info-card {
    background: #fff;
    border: 1px solid #e5ebf3;
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(20,40,80,.05);
}

.info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,.10);
    color: var(--primary);
    font-size: 1.3rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px dashed #dde4ee;
}

.schedule-row:last-child {
    border-bottom: 0;
}


/* =========================================================
   TESTIMONIOS
   ========================================================= */

.testimonial-card {
    height: 100%;
    padding: 32px;
    border: 1px solid #e6ebf2;
    border-radius: var(--radius);
    background: #fff;
    transition: .25s ease;
}

.stars {
    color: #f5b301;
    letter-spacing: 2px;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: .35;
}

.testimonial-card p {
    color: var(--muted);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-width {
    max-width: 850px;
}

.accordion-item {
    border: 1px solid #e4eaf2 !important;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(13,110,253,.06);
    box-shadow: none;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact-section {
    padding: 90px 0;
    background:
        linear-gradient(135deg, #07111f, #0c2948);
}

.contact-card {
    height: 100%;
    text-align: center;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    color: #fff;
}

.contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.10);
    border-radius: 50%;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #030911;
    color: #fff;
    padding: 55px 0 25px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer h6 {
    font-weight: 800;
    margin-bottom: 15px;
}

.footer a:not(.footer-brand) {
    display: block;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #fff;
}


/* =========================================================
   WHATSAPP FLOTANTE
   ========================================================= */

.whatsapp-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.whatsapp-floating:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
    .navbar .btn {
        width: 100%;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
    }

    .hero .min-vh-100 {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 70px !important;
    }

    .hero-card {
        max-width: 650px;
        margin: 0 auto;
    }

    .cta-section .container {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        text-align: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-card {
        margin-top: 10px;
    }

    .info-card {
        flex-direction: column;
    }

    .info-icon {
        flex-basis: auto;
    }

    .schedule-row {
        font-size: .9rem;
    }

    .whatsapp-floating {
        width: 56px;
        height: 56px;
        right: 15px;
        bottom: 15px;
    }
}
