:root {
    /* ONNA Brand Colors */
    --onna-olive: #746F4F;
    --onna-olive-light: #8a8563;
    --onna-blue-gray: #7B8890;
    --onna-sand: #BEB8A2;
    --onna-cream: #E2D6C8;
    --onna-cream-light: #F5F0E8;
    --onna-terracotta: #8F4623;
    --onna-terracotta-light: #a85a35;

    /* Functional colors */
    --text-dark: #3d3a2d;
    --text-medium: #5c5847;
    --text-light: #8a8573;
    
    --header-height: 100px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--onna-cream-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

p {
    margin-bottom: 1rem;
    font-size: 16px;
    font-weight: 300;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

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

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

/* Organic shapes background */
.organic-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
}

.organic-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--onna-olive);
    top: -150px;
    right: -150px;
    animation: breathe 12s ease-in-out infinite;
}

.organic-shape.shape-2 {
    width: 600px;
    height: 600px;
    background: var(--onna-terracotta);
    top: 60%;
    left: -200px;
    animation: breathe 15s ease-in-out infinite 2s;
}

.organic-shape.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--onna-blue-gray);
    bottom: -100px;
    right: 10%;
    animation: breathe 10s ease-in-out infinite 1s;
}

@keyframes breathe {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(30px, -30px); }
    66% { transform: scale(0.9) translate(-20px, 20px); }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Josefin Sans', sans-serif;
}

.btn-primary {
    background: var(--onna-olive);
    color: var(--onna-cream-light);
}

.btn-primary:hover {
    background: var(--onna-olive-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(116, 111, 79, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--onna-olive);
    border: 1px solid var(--onna-olive);
}

.btn-secondary:hover {
    background: var(--onna-olive);
    color: var(--onna-cream-light);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--onna-sand);
}

.btn-outline:hover {
    border-color: var(--onna-olive);
    color: var(--onna-olive);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--onna-olive);
    border: 1px solid transparent;
}

.btn-outline-light:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 15px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(245, 240, 232, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--onna-cream);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.desktop-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex: 1;
}

.nav-actions.mobile-only-actions {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--onna-olive);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--onna-olive);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--onna-terracotta);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 44px;
    color: var(--onna-olive);
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    padding: calc(var(--header-height) + 60px) 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    color: var(--onna-olive);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    height: 600px;
    border-radius: 20px;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px 240px 20px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 8px solid rgba(255,255,255,0.4);
}

.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-weight: 500;
    color: var(--onna-olive);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    left: -40px;
}

.badge-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

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

/* About Section */
.about-section {
    background: white;
    position: relative;
    z-index: 2;
    border-radius: 40px;
    margin: 0 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 48px;
    color: var(--onna-olive);
    font-weight: 400;
    margin-bottom: 24px;
}

.instructors-preview {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--onna-cream);
}

.instructor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.instructor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--onna-sand);
}

.instructor-info .name {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
}

.instructor-info .role {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.about-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: rgba(255,255,255,0.6);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(116, 111, 79, 0.1);
}

.service-img {
    height: 250px;
    position: relative;
}

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

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.yoga-icon { color: var(--onna-olive); }
.bungee-icon { color: var(--onna-terracotta); }

.service-content {
    padding: 40px 30px 30px;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.yoga-card h3 { color: var(--onna-olive); }
.bungee-card h3 { color: var(--onna-terracotta); }

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.yoga-card .benefit-list svg { color: var(--onna-olive); }
.bungee-card .benefit-list svg { color: var(--onna-terracotta); }

/* Packs Section */
.packs-section {
    background: var(--onna-cream);
    margin: 0 20px;
    border-radius: 40px;
    padding-bottom: 80px;
}

.packs-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--onna-olive);
    border-radius: 30px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--onna-olive);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--onna-olive);
    color: var(--onna-cream-light);
}

.pack-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pack-grid.active {
    display: grid;
    animation: fadeInTab 0.5s ease;
}

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

.pack-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.pack-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.pack-item:hover img {
    transform: scale(1.05);
}

.pack-details {
    padding: 20px;
    background: white;
    text-align: center;
    border-top: 1px solid var(--onna-cream);
    position: relative;
    z-index: 2;
}

.pack-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--onna-olive);
    margin-bottom: 8px;
    font-weight: 500;
}

.pack-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
}

.pack-meta span:last-child {
    font-weight: 600;
    color: var(--onna-terracotta);
    font-size: 18px;
}

.pack-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: rgba(116, 111, 79, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.pack-item:hover .pack-overlay {
    opacity: 1;
}

/* Call to action */
.cta-section {
    padding: 100px 20px;
    background: transparent;
}

.cta-section h2 {
    font-size: 48px;
    color: var(--onna-olive);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Footer */
.site-footer {
    background: white;
    padding: 80px 0 30px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-medium);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--onna-olive);
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--onna-cream);
    color: var(--onna-olive);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--onna-olive);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--onna-cream);
    color: var(--text-light);
    font-size: 14px;
}

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

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

/* Footer Contact Icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-medium);
}

.contact-item svg {
    color: var(--onna-olive);
    flex-shrink: 0;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-content p {
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 100%;
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%; /* Cambiado a left o right según prefieras */
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: left 0.4s ease;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        z-index: 99;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        font-size: 18px;
    }
    
    .desktop-actions {
        display: none; /* Hide on mobile */
    }

    .mobile-only-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 40px;
        gap: 15px;
    }
    
    .mobile-only-actions .btn {
        text-align: center;
        width: 100%;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .about-text h2 {
        font-size: 36px;
    }
}
