/* ===== ESPACIO GLOBAL POR NAVBAR FIXED ===== */

/* Altura real del navbar */
:root {
    --navbar-height: 80px;
}

/* ====== BASE ====== */
body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    color: #1f2937;
    padding-top: var(--navbar-height);
}

/* Ajuste en móvil (navbar más alto por menú hamburguesa) */
@media (max-width: 991px) {
    :root {
        --navbar-height: 90px;
    }
}


/* ===== HERO CON IMAGEN CORREGIDO ===== */
.hero {
    position: relative;
    min-height: 90vh;              /* mejor que height fija */
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../img/hero-dog.png");
    background-size: cover;
    background-position: center center; /* evita cortes raros */
    background-repeat: no-repeat;

    padding-top: 80px;
    overflow: hidden;
}

/* Overlay oscuro elegante */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* un poco más oscuro para contraste */
    z-index: 1;
}

/* Contenido encima del overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Texto */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #e5e7eb;
    max-width: 640px;
    margin: 0 auto;
}

/* Highlight azul suave */
.text-highlight {
    color: #a7c7ff;
}

/* Responsive real para móvil */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
        background-position: center top; /* mejora encuadre en móvil */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
}


/* Resalte azul suave */
.text-highlight {
    color: #9ec5ff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* ====== TITLES ====== */
.section-title {
    font-weight: 700;
}

/* ====== SERVICE CARDS ====== */
.service-card {
    border-radius: 20px;
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ====== CTA MEMBERSHIP ====== */
.cta-membership {
    background: linear-gradient(135deg, #4f8cff, #6ea8fe);
    color: white;
}

/* ====== BUTTONS ====== */
.btn-primary {
    background-color: #4f8cff;
    border: none;
}

.btn-primary:hover {
    background-color: #3b6fe0;
}
/* ===== VACUNAS ===== */
.vacunas-box {
    max-width: 900px;
}

.vacuna-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #eef2f7;
}

.vacuna-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.vacuna-card li {
    margin-bottom: 6px;
}
/* ===== FAQS ===== */
.faq-box {
    max-width: 850px;
}

.accordion-button {
    font-weight: 500;
    border-radius: 12px !important;
}

.accordion-item {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #eef2f7;
}
/* ==============================
   SECCIÓN SERVICIOS
============================== */

/* Contenedor general */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
}

/* Tarjetas de servicio */
.service-card {
    border-radius: 18px;
    transition: all 0.25s ease;
    border: 1px solid #eef2f7;
    background: #ffffff;
}

/* Hover elegante */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Título dentro de tarjeta */
.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #111827;
}

/* Texto descriptivo */
.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Lista de beneficios */
.service-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.service-card li {
    font-size: 0.92rem;
    margin-bottom: 6px;
    color: #374151;
}

/* Fondo suave sección */
.bg-light {
    background: #f7f9fc !important;
}

/* Espaciado visual */
.py-5 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 22px !important;
    }
}
/* ================= MEMBRESÍAS ================= */

.plan-card {
    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 35px 28px;
    background: #fff;
    transition: all .25s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
    color: #111827;
}

.plan-price span {
    font-size: 1rem;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.plan-features li {
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.95rem;
}

/* Plan destacado */
.featured {
    border: 2px solid #4f8cff;
    transform: scale(1.03);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f8cff;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 999px;
}

/* Beneficios */
.benefit-item {
    padding: 20px;
}
/* ================= SUCURSALES ================= */

.branch-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.08);
}

/* ====== FOOTER ====== */
footer {
    background: #ffffff;
}
