/* ==========================================
   VARIABLES DE COLOR (Paleta Pastel Basada en el Logo)
   ========================================== */
:root {
    --pastel-red: #F28B82;       /* Rojo pastel suave para llamadas de atención */
    --pastel-red-hover: #E57373; /* Rojo pastel un poco más intenso */
    --pastel-yellow: #FFF2CC;    /* Fondo amarillo pastel muy suave y limpio */
    --pastel-yellow-dark: #FCE8B2;/* Detalle en amarillo complementario */
    --dark-text: #2D3142;        /* Gris Oxford para textos, suave pero legible */
    --light-bg: #FAFAFA;         /* Fondo general del sitio */
    --white: #FFFFFF;
    --wsp-color: #25D366;        /* Color corporativo de WhatsApp */
}

/* ==========================================
   RESET & ESTILOS GENERALES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--pastel-yellow);
}

.text-center {
    text-align: center;
}

/* Separadores Estilizados */
.divider {
    width: 60px;
    height: 4px;
    background-color: var(--pastel-red);
    margin: 20px auto 40px auto;
    border-radius: 2px;
}

.divider-left {
    width: 50px;
    height: 4px;
    background-color: var(--pastel-red);
    margin: 15px 0 25px 0;
    border-radius: 2px;
}

/* ==========================================
   NAVBAR (HEADER)
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Isotipo basado en el círculo original pero adaptado moderno */
.logo-hd {
    background-color: #FFEB3B; /* Amarillo brillante del logo suavizado */
    color: #D32F2F;            /* Letras rojas contrastantes */
    font-weight: 900;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #D32F2F;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.brand-name {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-text);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pastel-red);
}

/* Enlaces a las subpáginas independientes */
.nav-links .special-link {
    padding: 8px 15px;
    border: 2px solid var(--pastel-red);
    border-radius: 20px;
    transition: all 0.3s;
}

.nav-links .special-link:hover {
    background-color: var(--pastel-red);
    color: var(--white);
}

.nav-links .special-link-highlight {
    padding: 8px 15px;
    background-color: var(--pastel-red);
    color: var(--white);
    border-radius: 20px;
    transition: background-color 0.3s;
}

.nav-links .special-link-highlight:hover {
    background-color: var(--pastel-red-hover);
}

/* ==========================================
   HERO SECTION (HOME)
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, rgba(255,242,204,0.6) 0%, rgba(242,139,130,0.2) 100%), 
                url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=1469&auto=format&fit=crop') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--dark-text);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #4A4E69;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    padding: 12px 30px;
    background-color: var(--pastel-red);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(242,139,130,0.2);
}

.btn-primary:hover {
    background-color: var(--pastel-red-hover);
}

.btn-secondary {
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid var(--pastel-yellow-dark);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--pastel-yellow);
}

/* ==========================================
   SECCIÓN DE SELECCIÓN / TEXTOS
   ========================================== */
.lead-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #4A4E69;
}

/* ==========================================
   SECCIÓN OFERTAS (CARDS)
   ========================================== */
.grid-ofertas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card-oferta {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px 25px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-oferta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge-promo {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--pastel-yellow-dark);
    color: var(--dark-text);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Card Destacada (Para Chacinados) */
.highlight-card {
    background: linear-gradient(145deg, var(--pastel-red) 0%, #E57373 100%);
    color: var(--white);
}

.highlight-card h3, .highlight-card p {
    color: var(--white);
}

.badge-promo.premium {
    background-color: var(--white);
    color: var(--pastel-red);
}

.precio {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.btn-card {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-bg);
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.btn-card:hover {
    background-color: var(--pastel-yellow);
}

.btn-card-white {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--pastel-red);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-card-white:hover {
    background-color: rgba(255,255,255,0.9);
}

/* ==========================================
   SECCIÓN CONTACTO Y MAPA
   ========================================== */
.grid-contacto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.info-contacto p {
    margin-bottom: 15px;
    font-size: 16px;
}

.social-box {
    margin-top: 30px;
}

.social-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons-body {
    display: flex;
    gap: 15px;
}

.social-btn {
    text-decoration: none;
    color: var(--dark-text);
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: var(--pastel-red);
    color: var(--white);
}

/* Contenedor del Mapa */
.iframe-container {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E2E8F0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #718096;
    padding: 20px;
    text-align: center;
}

.map-placeholder i {
    font-size: 40px;
    color: var(--pastel-red);
    margin-bottom: 10px;
}

/* ==========================================
   FOOTER (CENTRADO Y OPTIMIZADO)
   ========================================== */
footer {
    background-color: var(--white);
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    display: flex;
    flex-direction: column; /* Apila los elementos verticalmente */
    justify-content: center;
    align-items: center;    /* Centra todo horizontalmente */
    gap: 20px;              /* Espacio uniforme entre bloques */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;     /* Centra los textos internos */
}

.logo-hd-small {
    background-color: #FFEB3B;
    color: #D32F2F;
    font-weight: 900;
    font-size: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D32F2F;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Espacio limpio entre cada icono de red social */
}

.footer-socials a {
    color: var(--dark-text);
    font-size: 22px; /* Un toque más grande para mejorar el click en móviles */
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--pastel-red);
    transform: scale(1.1); /* Efecto sutil de agrandamiento al pasar el cursor */
}

/* ==========================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================== */
.wsp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--wsp-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.wsp-float:hover {
    transform: scale(1.1);
    background-color: #20BA56;
}

/* Responsive sencillo */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .grid-contacto {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}