/* ============================================
   LANDING PAGE - MOBILE FIRST DESIGN
   Optimizado para iPhone/iOS
   Paleta Verde Esmeralda Moderna
   ============================================ */

:root {
    /* Verde Esmeralda - Paleta Principal */
    --emerald-50: #ECFDF5;
    --emerald-100: #D1FAE5;
    --emerald-200: #A7F3D0;
    --emerald-300: #6EE7B7;
    --emerald-400: #34D399;
    --emerald-500: #10B981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065F46;
    --emerald-900: #064E3B;
    
    /* Colores Complementarios */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* WhatsApp Green */
    --whatsapp: #25D366;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Safe Areas para iPhone */
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
    --safe-left: env(safe-area-inset-left);
    --safe-right: env(safe-area-inset-right);
}

/* ============================================
   RESET Y CONFIGURACIÓN BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
    padding-top: 70px;
    padding-bottom: var(--safe-bottom);
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* Disable zoom on iPhone */
input, textarea, select {
    font-size: 16px !important;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: calc(20px + var(--safe-bottom));
    right: calc(20px + var(--safe-right));
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 35px -5px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

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

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 calc(16px + var(--safe-left)) 0 calc(16px + var(--safe-right));
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 60px;
    width: auto;
}

.navbar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    letter-spacing: -0.5px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-search,
.navbar-menu {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gray-800);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.navbar-search:hover,
.navbar-menu:hover {
    background: var(--gray-100);
    color: var(--emerald-600);
}

.navbar-search:active,
.navbar-menu:active {
    transform: scale(0.95);
}

/* Responsive - Tablets y Desktop */
@media (min-width: 768px) {
    .navbar-container {
        height: 80px;
        padding: 0 20px;
    }
    
    .navbar-logo {
        height: 70px;
    }
    
    .navbar-title {
        font-size: 24px;
    }
    
    .navbar-search,
    .navbar-menu {
        font-size: 24px;
        width: 44px;
        height: 44px;
    }
}

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

.hero-carousel {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 250px;
    max-height: 600px;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

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

/* Ajuste especial para la imagen del cielo de luces - enfoque en pista de baile */
.carousel-slide:nth-child(6) img {
    object-position: center 70%;
}

.carousel-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 600px;
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.carousel-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.carousel-cta {
    display: inline-block;
    padding: 12px 28px;
    background: var(--emerald-500);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.carousel-cta:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Loading States */
.carousel-loading,
.promotions-loading,
.packages-loading,
.gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--gray-600);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--emerald-100);
    border-top-color: var(--emerald-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   HERO BADGES SECTION
   ============================================ */

.hero-badges-section {
    background: white;
    padding: 40px 0 60px 0;
}

.hero-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-badge:hover {
    transform: translateY(-10px);
}

.badge-circle {
    width: 20vh;
    height: 20vh;
    min-width: 160px;
    min-height: 160px;
    max-width: 220px;
    max-height: 220px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover .badge-circle {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    transform: scale(1.08);
}

/* Mobile/Tablet - Mantener en línea pero más pequeños */
@media (max-width: 768px) {
    .hero-badges-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .badge-circle {
        width: 18vh;
        height: 18vh;
        min-width: 120px;
        min-height: 120px;
        max-width: 150px;
        max-height: 150px;
        border: 3px solid white;
    }
    
    .badge-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .badge-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-badges-grid {
        gap: 30px;
    }
    
    .badge-circle {
        width: 19vh;
        height: 19vh;
        min-width: 140px;
        min-height: 140px;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    .badge-text {
        font-size: 0.95rem;
    }
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.section-title i {
    color: var(--emerald-500);
}

/* ============================================
   PROMOTIONS SECTION
   ============================================ */

.promotions-section {
    background: white;
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.promotion-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promotion-content {
    padding: 20px;
}

.promotion-badge {
    display: inline-block;
    background: var(--emerald-500);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.promotion-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.promotion-description {
    color: var(--gray-600);
    margin-bottom: 12px;
}

.promotion-validity {
    font-size: 0.875rem;
    color: var(--gray-600);
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
    margin-top: 12px;
}

/* ============================================
   PACKAGES SECTION (BEHANCE STYLE)
   ============================================ */

.packages-section {
    background: var(--gray-50);
}

#packagesContainer {
    max-width: 900px;
    margin: 0 auto;
}

.package-showcase {
    margin-bottom: 40px;
}

/* Package Image Container with Carousel */
.package-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 16px;
}

.package-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.package-carousel-slide.active {
    opacity: 1;
}

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

/* Interaction Buttons (Bottom Right of Image) */
.package-interactions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.interaction-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.interaction-btn:hover {
    background: white;
    transform: scale(1.05);
}

.interaction-btn:active {
    transform: scale(0.98);
}

.interaction-btn i {
    font-size: 1rem;
}

.interaction-btn.liked i {
    color: var(--emerald-500);
}

/* Package Info (Below Image) */
.package-info {
    padding: 0 4px;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.package-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* ============================================
   FEATURES SECTION (GRID MINI CARDS)
   ============================================ */

.features-section {
    background: white;
}

/* Grid Container - 3 columns, 2 rows */
.features-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid-mini {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .features-grid-mini {
        gap: 20px;
    }
}

/* Mini Card Style */
.feature-mini-card {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 12px;
    padding: 20px 12px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.feature-mini-card.clickable {
    text-decoration: none;
    color: white;
}

@media (min-width: 768px) {
    .feature-mini-card {
        padding: 24px 16px;
    }
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-mini-card:hover::before {
    opacity: 1;
}

.feature-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

/* Icon with Subtle Float Animation */
.feature-mini-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    animation: subtleFloat 3s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.feature-mini-card:hover .feature-mini-icon {
    animation: none;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Title */
.feature-mini-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .feature-mini-title {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .feature-mini-title {
        font-size: 1rem;
    }
}

/* Description */
.feature-mini-description {
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .feature-mini-description {
        font-size: 0.875rem;
    }
}

/* Different gradients for variety (6 cards) */
.feature-mini-card:nth-child(1) {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.feature-mini-card:nth-child(2) {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
}

.feature-mini-card:nth-child(3) {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.feature-mini-card:nth-child(4) {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.feature-mini-card:nth-child(5) {
    background: linear-gradient(135deg, #6EE7B7 0%, #34D399 100%);
}

.feature-mini-card:nth-child(6) {
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    background: var(--gray-50);
}

.gallery-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gallery-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel-btn.prev {
    left: 16px;
}

.gallery-carousel-btn.next {
    right: 16px;
}

.gallery-carousel-btn i {
    color: var(--gray-900);
    font-size: 1.25rem;
}

.gallery-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--emerald-500);
    width: 24px;
    border-radius: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Compact Grid for 2 contact cards */
.contact-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .contact-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Grid for 3 contact cards in one line */
.contact-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .contact-grid-three {
        gap: 20px;
    }
}

.contact-card {
    background: var(--gray-50);
    padding: 20px 12px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 28px 24px;
    }
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-icon {
    font-size: 2rem;
    color: var(--emerald-500);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .contact-card h3 {
        font-size: 1.1rem;
    }
}

.contact-link {
    color: var(--emerald-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-link:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

.contact-text {
    color: var(--gray-600);
    margin: 0;
}

/* Location Section */
.location-section {
    background: var(--gray-50);
}

/* Map Section */
.map-section {
    margin-bottom: 40px;
}

.map-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.map-title i {
    color: var(--emerald-500);
    margin-right: 8px;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--emerald-500);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link:hover {
    background: var(--emerald-600);
}

.map-link i {
    font-size: 0.875rem;
}

.map-address {
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* CTA Buttons */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.btn-chat,
.btn-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-chat {
    background: var(--emerald-500);
    color: white;
}

.btn-chat:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-quote {
    background: white;
    color: var(--emerald-600);
    border: 2px solid var(--emerald-500);
}

.btn-quote:hover {
    background: var(--emerald-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.footer {
    background: var(--gray-900);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
    text-align: center;
}

.footer-logo h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--emerald-400);
}

.footer-logo p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--emerald-500);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   IMAGE MODAL
   ============================================ */

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    padding: var(--safe-top) var(--safe-right) var(--safe-bottom) var(--safe-left);
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: calc(20px + var(--safe-top));
    right: calc(20px + var(--safe-right));
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.modal-caption {
    color: white;
    margin-top: 16px;
    text-align: center;
    font-size: 1rem;
}

/* ============================================
   QUOTATION PREVIEW SECTION
   ============================================ */

.quotation-preview-section {
    background: var(--gray-50);
    padding: 40px 0;
}

.quotation-preview-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.quotation-preview-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.excel-preview {
    height: 200px;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    padding: 16px;
    overflow: hidden;
    position: relative;
}

.excel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-300);
}

.excel-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.excel-title i {
    color: #1D6F42;
    font-size: 0.875rem;
}

.excel-table {
    background: white;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
    overflow: hidden;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .excel-table {
        font-size: 0.75rem;
    }
}

.excel-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid var(--gray-200);
}

.excel-row:last-child {
    border-bottom: none;
}

.excel-header-row {
    background: var(--emerald-500);
}

.excel-cell {
    padding: 6px 8px;
    border-right: 1px solid var(--gray-200);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .excel-cell {
        padding: 8px 12px;
    }
}

.excel-cell:last-child {
    border-right: none;
}

.header-cell {
    font-weight: 700;
    color: white;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .header-cell {
        font-size: 0.75rem;
    }
}

.excel-row:not(.excel-header-row) .excel-cell {
    color: var(--gray-800);
}

.excel-row:not(.excel-header-row):nth-child(even) {
    background: var(--gray-50);
}

.quotation-info {
    padding: 20px 24px;
    text-align: center;
}

.quotation-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.quotation-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Modern Quotation Card Styles */
.quotation-preview-card-modern {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.quotation-preview-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.quotation-preview-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.4);
}

.quotation-header-modern {
    padding: 24px 20px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.quotation-icon-badge {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.quotation-icon-badge i {
    font-size: 28px;
    color: white;
}

.quotation-header-text {
    flex: 1;
    min-width: 0;
}

.quotation-title-modern {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quotation-subtitle-modern {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.quotation-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 20px 20px;
    position: relative;
    z-index: 1;
}

.quotation-feature-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-height: 70px;
}

.quotation-feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 18px;
    color: white;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.feature-label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.feature-value {
    font-size: 0.8rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}

.quotation-cta-modern {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: #FF6B35;
    flex: 1;
    line-height: 1.3;
}

.cta-arrow {
    font-size: 22px;
    color: #FF6B35;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.quotation-preview-card-modern:hover .cta-arrow {
    transform: translateX(8px);
}

@media (min-width: 768px) {
    .quotation-header-modern {
        padding: 32px 24px 24px;
        gap: 16px;
    }
    
    .quotation-icon-badge {
        width: 64px;
        height: 64px;
    }
    
    .quotation-icon-badge i {
        font-size: 32px;
    }
    
    .quotation-title-modern {
        font-size: 1.75rem;
    }
    
    .quotation-subtitle-modern {
        font-size: 0.95rem;
    }
    
    .quotation-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 0 24px 24px;
    }
    
    .quotation-feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-label {
        font-size: 0.7rem;
    }
    
    .feature-value {
        font-size: 0.9rem;
    }
    
    .quotation-cta-modern {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-arrow {
        font-size: 24px;
    }
}

/* ============================================
   CALENDAR AVAILABILITY SECTION
   ============================================ */

.calendar-availability-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ECFDF5 0%, #ffffff 100%);
}

.calendar-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin: 32px 0;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.calendar-main-text {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    font-weight: 500;
    line-height: 1.3;
}

.calendar-price {
    font-size: 2.5rem;
    margin: 0 0 24px 0;
    line-height: 1;
}

.calendar-price strong {
    font-weight: 800;
}

.btn-whatsapp-calendar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #10B981;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #F0FDF4;
}

.btn-whatsapp-calendar i {
    font-size: 1.5rem;
}

.calendar-main-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 32px auto;
    overflow: hidden;
}

.calendar-header-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.calendar-control-btn {
    background: #10B981;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.calendar-control-btn:hover {
    background: #059669;
    transform: scale(1.1);
}

.calendar-control-btn:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
}

.calendar-month-year {
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
    flex-grow: 1;
}

#singleCalendarView {
    margin-bottom: 20px;
}

.month-calendar {
    background: transparent;
    padding: 0;
}

.month-header {
    display: none;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 6px;
}

.day-name {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #6B7280;
    padding: 2px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: default;
    border: 1.5px solid #E5E7EB;
    max-width: 100%;
    box-sizing: border-box;
}

.calendar-date.empty {
    border: none;
}

.calendar-date.available {
    background: white;
    color: #111827;
    transition: all 0.3s ease;
}

.calendar-date.available:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.calendar-date.contracted {
    background: #ef4444;
    color: white;
    border-color: #dc2626;
    font-weight: 700;
}

.calendar-date.past {
    background: #F3F4F6;
    color: #9CA3AF;
    border-color: #E5E7EB;
}

.calendar-date.today {
    background: #D1FAE5;
    color: #065F46;
    border-color: #10B981;
    font-weight: 700;
    transition: all 0.3s ease;
}

.calendar-date.today:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #374151;
}

.legend-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid #E5E7EB;
}

.legend-box.available {
    background: white;
}

.legend-box.contracted {
    background: #ef4444;
    border-color: #dc2626;
}

.calendar-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
    .carousel-title {
        font-size: 2.5rem;
    }
    
    .carousel-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-social {
        gap: 20px;
    }
    
    .cta-section {
        flex-direction: row;
    }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
    .carousel-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
