:root {
    /* Color Palette - Inspired by CelebrArte logo */
    --primary-teal: #2d9d9c;
    --primary-coral: #ff6b6b;
    --primary-yellow: #ffd166;
    --primary-pink: #ff8fab;

    /* Additional Colors */
    --bg-light: #fdfcfb;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --accent-purple: #9b59b6;
    --accent-blue: #5ca7b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-blue) 100%);
    --gradient-warm: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-pink) 50%, var(--primary-yellow) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 157, 156, 0.9) 0%, rgba(255, 107, 107, 0.7) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Balloon Cursor */
body {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="70" viewBox="0 0 28 70"><defs><radialGradient id="bg1"><stop offset="0%" style="stop-color:%23ff9999;stop-opacity:1"/><stop offset="70%" style="stop-color:%23ff6b6b;stop-opacity:1"/><stop offset="100%" style="stop-color:%23ff4444;stop-opacity:1"/></radialGradient></defs><ellipse cx="14" cy="13" rx="11" ry="13" fill="url(%23bg1)"/><ellipse cx="9" cy="8" rx="3" ry="4" fill="rgba(255,255,255,0.6)"/><path d="M 14 26 L 14 28" stroke="%23cc0000" stroke-width="1" fill="none"/><ellipse cx="14" cy="28.5" rx="2" ry="1.5" fill="%23cc0000"/><path d="M 14 30 Q 15 40, 13 50 Q 12 60, 14 68" stroke="%23444" stroke-width="0.8" fill="none" opacity="0.7"/></svg>') 14 0, auto;
}

a, button, .service-card, .gallery-item, .nav-link, .menu-toggle, .modal-close {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="70" viewBox="0 0 28 70"><defs><radialGradient id="bg2"><stop offset="0%" style="stop-color:%2366e6e6;stop-opacity:1"/><stop offset="70%" style="stop-color:%232d9d9c;stop-opacity:1"/><stop offset="100%" style="stop-color:%231a7a7a;stop-opacity:1"/></radialGradient></defs><ellipse cx="14" cy="13" rx="11" ry="13" fill="url(%23bg2)"/><ellipse cx="9" cy="8" rx="3" ry="4" fill="rgba(255,255,255,0.6)"/><path d="M 14 26 L 14 28" stroke="%23006666" stroke-width="1" fill="none"/><ellipse cx="14" cy="28.5" rx="2" ry="1.5" fill="%23006666"/><path d="M 14 30 Q 15 40, 13 50 Q 12 60, 14 68" stroke="%23444" stroke-width="0.8" fill="none" opacity="0.7"/></svg>') 14 0, pointer;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: #a23838;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: var(--spacing-xs) var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    transition: var(--transition-normal);
}

.navbar.scrolled .logo {
    height: 90px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-menu a:hover {
    color: var(--primary-teal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.logo-link:hover .logo {
    transform: scale(1.05);
    transition: var(--transition-normal);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-warm);
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: white;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-md);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-teal);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover span {
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 1s ease;
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features/Services Section - Visual Carousel */
.features {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: var(--spacing-xl) 0;
}

.services-carousel-wrapper {
    position: relative;
    margin-top: var(--spacing-lg);
}

.features-grid {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-md) 0;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
}

/* Hide scrollbar Chrome/Safari */
.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-card {
    min-width: 400px;
    height: 450px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Gradient backgrounds for each card */
.feature-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card:nth-child(6) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.feature-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    text-align: center;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    font-family: 'Baloo 2', cursive;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
    max-width: 90%;
}

/* Navigation Buttons */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.services-nav-btn:hover {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.services-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.services-nav-prev {
    left: -30px;
}

.services-nav-next {
    right: -30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: var(--spacing-lg);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 157, 156, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot:hover {
    background: rgba(45, 157, 156, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-teal);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card {
        min-width: 320px;
        height: 400px;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h3 {
        font-size: 1.6rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .services-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .services-nav-prev {
        left: 10px;
    }
    
    .services-nav-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        min-width: 280px;
        height: 350px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .services-nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.gallery-overlay-content {
    color: white;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.gallery-overlay-content h3 {
    color: white;
    margin-bottom: var(--spacing-xs);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: var(--bg-light);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-item-text a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item-text a:hover {
    color: var(--primary-teal);
}

.contact-form {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(45, 157, 156, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer aqui */ 
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--primary-coral);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-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-fast);
}

.social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.footer-legal span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* NouWeb Link Styling - Eye-catching gradient effect */
.nouweb-link {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 25%, #f093fb 50%, #f5576c 75%, #ffd166 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none !important;
    display: inline-block;
    animation: gradientFlow 5s ease infinite;
    transition: all 0.4s ease;
    text-shadow: none;
    padding: 2px 8px;
    border-radius: 4px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nouweb-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 25%, #f093fb 50%, #f5576c 75%, #ffd166 100%);
    background-size: 300% 300%;
    border-radius: 6px;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    animation: gradientFlow 5s ease infinite;
}

.nouweb-link:hover {
    transform: translateY(-2px) scale(1.05);
}

.nouweb-link:hover::before {
    opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Show gallery overlay on mobile - always visible with nice gradient */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(45, 157, 156, 0.85) 0%, rgba(255, 107, 107, 0.75) 100%);
    }
    
    .gallery-overlay-content {
        transform: translateY(0);
        padding: var(--spacing-md);
    }
    
    .gallery-overlay-content h3 {
        font-family: 'Baloo 2', cursive;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .gallery-overlay-content p {
        font-family: 'Nunito', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.98);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    }
    
    .gallery-item img {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========== CALENDAR & RESERVATION SECTION ========== */

.calendar-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: var(--spacing-xl) 0;
}

.calendar-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    align-items: start;
}

/* Calendar Wrapper */
.calendar-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.legend-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.available {
    background: var(--primary-teal);
}

.legend-dot.occupied {
    background: #e74c3c;
}

.legend-dot.today {
    background: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.3);
}

/* FullCalendar Custom Styles */
#calendar {
    min-height: 600px;
}

.fc {
    font-family: var(--font-primary);
}

.fc .fc-toolbar-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-teal);
}

.fc .fc-button {
    background: var(--primary-teal);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.fc .fc-button:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.fc .fc-button:active,
.fc .fc-button:focus {
    box-shadow: none !important;
}

.fc .fc-button-primary:disabled {
    background: #cccccc;
    opacity: 0.6;
}

.fc .fc-daygrid-day-number {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px;
}

.fc .fc-day-today {
    background-color: rgba(255, 209, 102, 0.15) !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Occupied dates styling */
.fc .fc-daygrid-day.occupied-date {
    background-color: rgba(231, 76, 60, 0.1);
    cursor: not-allowed;
}

.fc .fc-daygrid-day.occupied-date .fc-daygrid-day-number {
    color: #e74c3c;
    text-decoration: line-through;
}

.fc .fc-daygrid-day.available-date {
    cursor: pointer;
    transition: var(--transition-fast);
}

.fc .fc-daygrid-day.available-date:hover {
    background-color: rgba(45, 157, 156, 0.1);
}

.fc .fc-daygrid-day.selected-date {
    background-color: rgba(45, 157, 156, 0.2) !important;
    border: 2px solid var(--primary-teal);
}

.fc .fc-daygrid-day.selected-date .fc-daygrid-day-number {
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reservation Form Wrapper */
.reservation-form-wrapper {
    position: sticky;
    top: 100px;
}

.reservation-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-teal);
}

.reservation-card h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-sm);
}

.reservation-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Form Styles */
#reservationForm .form-group {
    margin-bottom: var(--spacing-md);
}

#reservationForm label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

#reservationForm input,
#reservationForm select,
#reservationForm textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--bg-light);
}

#reservationForm input:focus,
#reservationForm select:focus,
#reservationForm textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 157, 156, 0.1);
}

#reservationForm input:read-only {
    background: #f5f5f5;
    cursor: not-allowed;
    color: var(--text-light);
}

#reservationForm textarea {
    resize: vertical;
    min-height: 100px;
}

#reservationForm select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c2c2c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-sm);
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

/* Reservation Message */
.reservation-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reservation-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.reservation-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.reservation-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading State */
.submit-button.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-button.loading span::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

/* Responsive Styles for Calendar Section */
@media (max-width: 1024px) {
    .calendar-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .reservation-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .calendar-wrapper {
        padding: var(--spacing-md);
    }
    
    .reservation-card {
        padding: var(--spacing-md);
    }
    
    #calendar {
        min-height: 500px;
    }
    
    .fc .fc-toolbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fc .fc-toolbar-title {
        font-size: 1.4rem;
    }
    
    .fc .fc-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .calendar-legend {
        gap: var(--spacing-sm);
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    #calendar {
        min-height: 400px;
    }
    
    .fc .fc-toolbar-title {
        font-size: 1.2rem;
    }
    
    .fc .fc-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .fc .fc-daygrid-day-number {
        padding: 4px;
        font-size: 0.85rem;
    }
    
    .reservation-card h3 {
        font-size: 1.4rem;
    }
    
    .legend-dot {
        width: 12px;
        height: 12px;
    }
}

/* ==================== CALENDAR OCCUPIED DATES STYLES ==================== */
/* Estilos para mostrar fechas ocupadas/disponibles en el calendario */

/* Fecha disponible - Verde */
.available-date {
    background-color: rgba(76, 175, 80, 0.1) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
}

.available-date:hover {
    background-color: rgba(76, 175, 80, 0.2) !important;
    border-color: #4caf50 !important;
    transform: scale(1.05);
}

/* Fecha ocupada - Rojo */
.occupied-date {
    background-color: rgba(244, 67, 54, 0.2) !important;
    position: relative;
    cursor: not-allowed !important;
    pointer-events: auto !important;
}

.occupied-date::before {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f44336;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.3;
    z-index: 1;
}

.occupied-date .fc-daygrid-day-number {
    color: #f44336 !important;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.occupied-date .fc-daygrid-day-frame {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(211, 47, 17, 0.15) 100%);
}

/* Fecha seleccionada - Amarillo */
.selected-date {
    background-color: rgba(255, 193, 7, 0.3) !important;
    border: 2px solid #ffc107 !important;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

.selected-date .fc-daygrid-day-number {
    color: #f57c00 !important;
    font-weight: 700;
}

/* Fecha pasada - Gris */
.fc-day-past {
    opacity: 0.4 !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    cursor: not-allowed !important;
}

.fc-day-past .fc-daygrid-day-number {
    color: #9e9e9e !important;
}

/* Hoy - Azul */
.fc-day-today:not(.occupied-date):not(.fc-day-past) {
    background-color: rgba(33, 150, 243, 0.1) !important;
    border: 2px solid #2196f3 !important;
}

.fc-day-today .fc-daygrid-day-number {
    color: #1976d2;
    font-weight: 700;
}

