/* ==================== VARIABLES Y RESET ==================== */
:root {
    /* Colores principales - Basados en el logo oficial de Ojo Ciego Camp */
    --color-primary: #4A3728;        /* Café/marrón del logo */
    --color-primary-light: #5D473A;
    --color-primary-dark: #3A2A1E;
    
    --color-secondary: #E8A435;       /* Naranja/amarillo del toro */
    --color-secondary-light: #F5B94A;
    --color-secondary-dark: #D4922A;
    
    --color-accent: #1E90D0;          /* Azul del texto "ojo ciego" */
    --color-accent-light: #3AA0E0;
    --color-accent-dark: #1578B5;
    
    /* Neutros */
    --color-dark: #1A1A1A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-light: #F5F5F0;
    --color-white: #FFFFFF;
    --color-cream: #FDF8F3;
    
    /* Tipografía */
    --font-display: 'Dela Gothic One', cursive;
    --font-body: 'DM Sans', sans-serif;
    
    /* Espaciado */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==================== NUEVO HEADER (v2 - estilo Highlander) ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-white, #fff);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md, 20px);
    height: 70px;
}

.site-logo {
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    height: 50px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav > li {
    position: relative;
}

.desktop-nav > li > a {
    text-decoration: none;
    color: var(--color-text, #4A3728);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.desktop-nav > li > a:hover {
    background: var(--color-light, #f5f5f0);
    color: var(--color-primary, #2D6A4F);
}

/* Desktop Dropdown */
.drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white, #fff);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    list-style: none;
    z-index: 1001;
}

.has-drop:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--color-text, #4A3728);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s;
}

.drop-menu li a:hover {
    background: var(--color-light, #f5f5f0);
    color: var(--color-primary, #2D6A4F);
}

/* Nav CTA Button */
.nav-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.nav-cta-btn svg {
    fill: currentColor;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-text, #4A3728);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Mobile Navigation Panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-white, #fff);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav > ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--color-text, #4A3728);
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav .sub-menu {
    display: none;
    padding-left: 20px;
    background: #fafafa;
    list-style: none;
    margin: 0;
}

.mobile-nav .sub-menu a {
    font-size: 0.9rem;
    padding: 12px 25px;
    font-weight: 400;
}

.mobile-nav .menu-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-nav .menu-parent a {
    flex: 1;
}

.mobile-nav .menu-parent .arrow {
    padding: 15px 20px;
    font-size: 0.7rem;
    transition: transform 0.2s;
    color: var(--color-text, #4A3728);
}

.mobile-nav .menu-parent.open .arrow {
    transform: rotate(180deg);
}

.mobile-nav .menu-parent.open + .sub-menu {
    display: block;
}

.mobile-cta-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 25px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-cta-btn svg {
    fill: currentColor;
}

/* Mobile breakpoint */
@media (max-width: 1023px) {
    .desktop-nav { display: none !important; }
    .hamburger { display: flex !important; }
}

@media (min-width: 1024px) {
    .mobile-nav,
    .mobile-nav-overlay,
    .hamburger { display: none !important; }
}


/* Tag Favorito */
.tag-favorite {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 600;
}

/* Footer Contact Items con SVG */
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact .contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
    margin-top: 2px;
}

.footer-contact .contact-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact .contact-item a:hover {
    color: var(--color-secondary);
}

.footer-contact .contact-item div {
    line-height: 1.5;
    opacity: 0.9;
}

/* WhatsApp Float con SVG */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    fill: white;
}

/* Footer Badge Turismo */
.footer-badge {
    margin-top: 20px;
}

.footer-badge-img {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
}

/* Footer Logo sin fondo negro */
.footer-logo-img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    background: transparent;
}

/* Asegurar que el logo no tenga fondo negro */
.logo-img,
.footer-logo-img {
    background-color: transparent !important;
}

/* Footer contact headers */
.footer-contact h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    margin-top: 15px;
    color: var(--color-secondary);
}

.footer-contact h4:first-child {
    margin-top: 0;
}



/* ==================== CTA BUTTONS ==================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
}

.cta-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary .cta-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.cta-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
}

.cta-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.cta-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white) !important;
    font-size: 1.1rem;
    padding: 16px 32px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #1DA851 0%, #0e7a65 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.cta-secondary-light {
    background: transparent;
    color: var(--color-white) !important;
    border: 2px solid rgba(255,255,255,0.6);
    font-size: 1.05rem;
    padding: 16px 32px;
}

.cta-secondary-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.cta-secondary-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.play-icon {
    font-size: 0.8rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('../images/hero-grupo-campo.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 55, 40, 0.75) 0%,
        rgba(74, 55, 40, 0.60) 50%,
        rgba(74, 55, 40, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-xxl) var(--space-md);
    color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-years {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.badge-text {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    margin-bottom: var(--space-xl);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.section-tag.light {
    color: var(--color-accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--color-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: var(--color-white);
}

.section-title .highlight {
    color: var(--color-secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
    max-width: 600px;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: var(--space-xxl) 0;
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-featured {
    grid-column: span 2;
    flex-direction: row;
}

@media (max-width: 768px) {
    .service-featured {
        grid-column: span 1;
        flex-direction: column;
    }
}

.service-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-featured .service-image {
    flex: 0 0 40%;
    height: auto;
    min-height: 300px;
}

.service-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    flex: 1;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
}

.service-highlights {
    margin-bottom: var(--space-md);
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: var(--color-text);
    padding: 6px 0;
}

.service-highlights li::before {
    content: "✔";
    color: var(--color-primary);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.price-from {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.service-cta {
    font-weight: 600;
    color: var(--color-secondary);
    transition: var(--transition-fast);
}

.service-card:hover .service-cta {
    color: var(--color-secondary-dark);
}

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: var(--space-xxl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-content .section-title {
    margin-bottom: var(--space-lg);
}

.why-text {
    font-size: 1.05rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.why-values {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.value-item:hover {
    background: var(--color-cream);
    transform: translateX(4px);
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Image Collage */
.why-image {
    position: relative;
}

.image-collage {
    position: relative;
    height: 500px;
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.collage-item.main {
    width: 75%;
    height: 80%;
    top: 0;
    left: 0;
}

.collage-item.secondary {
    width: 50%;
    height: 50%;
    bottom: 0;
    right: 0;
    border: 4px solid var(--color-white);
}

.collage-badge {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-md);
    display: inline-block;
}

.collage-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.collage-badge .badge-label {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* ==================== VALUES CAROUSEL ==================== */
.values-section {
    padding: var(--space-xl) 0;
    background: var(--color-primary);
    overflow: hidden;
}

.values-section .section-title,
.values-section .section-subtitle,
.values-section .section-tag {
    color: var(--color-white);
}

.values-section .section-tag {
    color: var(--color-accent);
}

.values-carousel {
    margin-top: var(--space-xl);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.values-track {
    display: flex;
    gap: var(--space-md);
    animation: scroll 30s linear infinite;
}

.value-chip {
    flex-shrink: 0;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== ACTIVITIES PREVIEW ==================== */
.activities-preview {
    padding: var(--space-xxl) 0;
    background: var(--color-cream);
}

.activities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.activity-category {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.activity-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.activity-category h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: var(--space-md);
}

.activity-category ul {
    text-align: left;
}

.activity-category li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: 4px 0;
    border-bottom: 1px solid var(--color-light);
}

.activity-category li:last-child {
    border-bottom: none;
}

.activities-cta {
    text-align: center;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: var(--space-xxl) 0;
    background: var(--color-primary);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .video-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

.video-content {
    color: var(--color-white);
}

.video-description {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-top: var(--space-md);
}

.video-player {
    position: relative;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    background: var(--color-secondary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: var(--space-xxl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic;
}

.testimonial-text::before {
    content: """;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
}

.author-detail {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.testimonials-cta {
    text-align: center;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 768px) {
    .cta-card {
        grid-template-columns: 1fr auto;
        padding: var(--space-xxl);
    }
}

.cta-content {
    color: var(--color-white);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.cta-title .highlight {
    color: var(--color-accent);
}

.cta-text {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.whatsapp-icon svg {
    display: block;
}

.cta-decoration {
    display: none;
}

@media (min-width: 768px) {
    .cta-decoration {
        display: block;
    }
}

/* ---- Cupo Widget ---- */
.cupo-widget {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    text-align: center;
    min-width: 220px;
    max-width: 260px;
    backdrop-filter: blur(8px);
    position: relative;
}

.cupo-alert-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 60, 60, 0.90);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.cupo-alert-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: cupo-blink 1.6s ease-in-out infinite;
}

@keyframes cupo-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.cupo-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.1rem;
}

.cupo-big {
    font-family: var(--font-display);
    font-size: 3.8rem;
    line-height: 1;
    color: var(--color-secondary);
}

.cupo-unit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
    text-align: left;
}

/* Barra de progreso */
.cupo-bar-track {
    height: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 6px;
}

.cupo-bar-fill {
    height: 100%;
    width: 75%;          /* Ajusta según tu ocupación real */
    background: linear-gradient(90deg, var(--color-secondary) 0%, #e8603c 100%);
    border-radius: var(--radius-full);
    position: relative;
}

/* Punto parpadeante al final de la barra */
.cupo-bar-fill::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid var(--color-secondary-dark);
    animation: cupo-blink 1.6s ease-in-out infinite;
}

.cupo-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.1rem;
}

.cupo-bar-mid {
    opacity: 0;  /* Oculto — solo extremos visibles */
}

.cupo-aviso {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.4;
    margin-bottom: 1.1rem;
}

.cupo-aviso strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.cupo-btn {
    display: block;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.cupo-btn:hover {
    background: var(--color-secondary-light);
    transform: translateY(-1px);
}
/* ---- Fin Cupo Widget ---- */

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding-top: var(--space-xxl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-badge {
    background: var(--color-primary);
}

.footer-logo .logo-name {
    color: var(--color-white);
}

.footer-logo .logo-camp {
    color: rgba(255,255,255,0.6);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
}

.social-link svg {
    fill: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    font-size: 1rem;
}

.contact-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.contact-text a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-legal p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.footer-badge {
    height: 50px;
    width: auto;
    opacity: 0.7;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
    fill: currentColor;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    white-space: nowrap;
    margin-right: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


/* ==================== ALIMENTACIÓN ==================== */
.alimentacion-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.menus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
}

@media (max-width: 900px) {
    .menus-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card.featured {
    border: 3px solid #E65100;
}

.menu-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #E65100;
    color: var(--color-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
}

.menu-image {
    position: relative;
    padding: 20px;
    background: #f8f8f8;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.menu-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1B5E20;
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
}

.menu-content {
    padding: 25px;
}

.menu-content h3 {
    color: #1B5E20;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.menu-content > p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.menu-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-highlights li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.menu-highlights li:last-child {
    border-bottom: none;
}

.alimentacion-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .alimentacion-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alimentacion-section .feature-item {
    text-align: center;
    padding: 20px;
}

.alimentacion-section .feature-icon {
    width: 40px;
    height: 40px;
    background: #1B5E20;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
}

.alimentacion-section .feature-item h4 {
    color: #1B5E20;
    font-size: 1rem;
    margin-bottom: 5px;
}

.alimentacion-section .feature-item p {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin: 0;
}

.alimentacion-cta {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(27, 94, 32, 0.1);
    border-radius: var(--radius-lg);
}

.alimentacion-cta .cta-text {
    color: var(--color-text);
    font-size: 1.05rem;
    margin: 0;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .cta-button {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
    }
}

/* ==================== FOOTER CORREGIDO ==================== */
/* Logo en header */
.logo-img {
    max-height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 50px;
    }
}

/* Service badge alternativo */
.service-badge--alt {
    background: #E8A435 !important;
}

/* Tag exclusivo */
.tag-exclusive {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Price highlight para mejor visibilidad */
.price-highlight {
    background: var(--color-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: inline-block;
}

.price-reference-card .price-amount,
.section--primary .price-amount {
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


/* ==================== FOOTER LAYOUT MEJORADO ==================== */
.main-footer {
    background: #4A3728;
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 0.8fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Footer Brand */
.footer-brand {
    grid-column: span 1;
}

@media (max-width: 1200px) {
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo-img {
    max-width: 90px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-social svg {
    fill: currentColor;
}

/* Footer Links */
.footer-links h4,
.footer-contact-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* Footer Contact Columns */
.footer-contact-col {
    font-size: 0.9rem;
}

.footer-contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .footer-contact-col .contact-item {
        justify-content: center;
        text-align: left;
    }
}

.footer-contact-col .contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
    margin-top: 3px;
}

.footer-contact-col .contact-item div {
    line-height: 1.5;
    opacity: 0.85;
}

.footer-contact-col .contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-col .contact-item a:hover {
    color: var(--color-secondary);
}

/* Footer Badge Column */
.footer-badge-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 768px) {
    .footer-badge-col {
        grid-column: span 2;
        justify-content: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-badge-col {
        grid-column: span 1;
    }
}

.footer-badge-img {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    fill: white;
}

/* ==================== FOOTER PROFESIONAL 2026 ==================== */

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #E8A435 0%, #d4922e 100%);
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    min-width: 280px;
    outline: none;
    transition: box-shadow 0.3s;
}

.newsletter-form input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 14px 32px;
    background: #4A3728;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #2a1a10;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text p {
        max-width: 100%;
    }
    
    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Main Footer */
.footer-main {
    background: #4A3728;
    padding: 70px 0 50px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.4fr 1.5fr 1.3fr 0.8fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 1024px) {
    .footer-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Brand Column */
.footer-brand-col {
    text-align: center;
}

.footer-brand-col .footer-logo-img {
    width: 115px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.footer-slogan {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-brand-col .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand-col .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-brand-col .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-brand-col .footer-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(232, 164, 53, 0.4);
}

/* Sitemap Column */
.footer-sitemap h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sitemap-columns {
    display: flex;
    gap: 40px;
}

@media (max-width: 600px) {
    .sitemap-columns {
        flex-direction: column;
        gap: 0;
    }
}

.sitemap-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-columns li {
    margin-bottom: 12px;
}

.sitemap-columns a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.sitemap-columns a:hover {
    color: var(--color-secondary);
    padding-left: 8px;
}

/* Locations Column */
.footer-locations h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 15px;
    border-left: 3px solid var(--color-secondary);
}

.location-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.location-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.location-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.location-contact:hover {
    color: var(--color-secondary);
}

.location-contact svg {
    fill: currentColor;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 5px;
}

.footer-email:hover {
    color: var(--color-secondary);
}

.footer-email svg {
    fill: currentColor;
}

/* Badge Column */
.footer-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
}

@media (max-width: 1024px) {
    .footer-badge-col {
        grid-column: span 2;
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .footer-badge-col {
        grid-column: span 1;
    }
}

.footer-badge-col .footer-badge-img {
    max-width: 110px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Footer Bottom */
.footer-bottom {
    background: #3a2a1c;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 600px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

/* WhatsApp Float - Enhanced */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    fill: white;
}

/* Logo en navegación sin fondo negro */
.logo-img {
    max-height: 65px;
    width: auto;
    background: transparent !important;
    border-radius: 50%;
}

/* Logo del footer más grande y centrado */
.footer-brand-col .footer-logo-img {
    width: 140px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-col .footer-logo {
    display: block;
}

/* CTA WhatsApp Button en Header */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-cta-whatsapp svg {
    fill: currentColor;
}

/* Fix hover CTA WhatsApp */
.btn-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff !important;
    opacity: 1;
}

.btn-cta-whatsapp:hover svg {
    fill: #fff;
    opacity: 1;
}

/* Fix COMPLETO hover CTA WhatsApp */
.btn-cta-whatsapp,
.btn-cta-whatsapp:link,
.btn-cta-whatsapp:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.btn-cta-whatsapp:hover,
.btn-cta-whatsapp:focus,
.btn-cta-whatsapp:active {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: #fff !important;
    opacity: 1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-cta-whatsapp svg,
.btn-cta-whatsapp:hover svg {
    fill: #fff !important;
    opacity: 1 !important;
}

/* ========== OVERRIDE FINAL - Botón CTA WhatsApp ========== */
/* Este override debe estar al final para tener máxima prioridad */



/* ============================================================
   ANIMACIONES HERO — v13
   Entrada con stagger profesional. Sutil, no empalagoso.
   Respeta prefers-reduced-motion automáticamente.
   ============================================================ */

@keyframes oc-hero-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge     { animation: oc-hero-up 0.55s ease both; animation-delay: 0.10s; }
.hero-title     { animation: oc-hero-up 0.60s ease both; animation-delay: 0.25s; }
.hero-subtitle  { animation: oc-hero-up 0.60s ease both; animation-delay: 0.40s; }
.hero-urgency   { animation: oc-hero-up 0.55s ease both; animation-delay: 0.50s; }
.hero-stats     { animation: oc-hero-up 0.60s ease both; animation-delay: 0.55s; }
.hero-ctas      { animation: oc-hero-up 0.55s ease both; animation-delay: 0.70s; }

/* Urgency pill — aparece entre stats y CTAs */
.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(232, 164, 53, 0.13);
    border: 1px solid rgba(232, 164, 53, 0.38);
    border-radius: var(--radius-full);
    padding: 7px 18px 7px 12px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
}

.hero-urgency strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.urgency-dot {
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: urgency-pulse 2.4s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.72); }
}

/* Reduce motion — nunca forzamos animaciones */
@media (prefers-reduced-motion: reduce) {
    .hero-badge, .hero-title, .hero-subtitle,
    .hero-urgency, .hero-stats, .hero-ctas {
        animation: none !important;
        opacity: 1 !important;
    }
    .urgency-dot { animation: none !important; }
}
/* ============================================================ */
