body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Topbar */
.topbar {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    font-weight: 700;
    color: #333;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.nav-links.open {
    display: block;
}

/* Hero */
.hero {
    background: url('/assets/img/backgrounds/portadabee.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 1rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: #f2d8e9;
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Call to action */
.call-to-action {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

.btn-secondary {
    background: #333;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
}

/* Services */
.services {
    padding: 4rem 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Method */
.method {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.method h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.method p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Modalities */
.modalities {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.modalities h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modalities p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.modality-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Coaches */
.coaches {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.coaches h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coaches p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-weight: bold;
    color: #f2d8e9;
}

/* Gallery */
.gallery {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Guarantee */
.guarantee {
    padding: 4rem 2rem;
    background: #f2d8e9;
    text-align: center;
}

.guarantee h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Hover Cards (Modalities) */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Gallery */
.gallery-item {
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    background: rgba(255, 203, 234, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    background: #b0b0ca;
    color: #fff;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    color: #ffcbea;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 4rem 1rem 1rem;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1001;
    }

    .nav-links.open {
        left: 0;
    }

    .hero {
        padding: 6rem 1rem;
    }

    .method, .modalities, .coaches, .testimonials, .gallery, .guarantee, .call-to-action, .services {
        padding: 3rem 1rem;
    }

    .method h2, .modalities h2, .coaches h2, .testimonials h2, .gallery h2, .guarantee h2 {
        font-size: 1.8rem;
    }

    .modalities-grid, .testimonials-grid, .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer .container {
        flex-direction: column;
    }
}