/* Global Styles */
:root {
    --primary: #d68aba;
    --primary-dark: #b2618f;
    --secondary: #332c54;
    --text: #433f4c;
    --muted: #7c7485;
    --bg-light: #fff9fb;
    --bg-alt: #f4f1fb;
    --accent: #f6dce7;
    --lilac-mist: #efe6ff;
    --max-width: 1200px;
    --shadow-soft: 0 18px 42px rgba(51, 44, 84, 0.09);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff, var(--bg-light));
    line-height: 1.6;
}

h1,
h2,
h3,
.section-title,
.rituals-header h2,
.gallery-header h2,
.experts-title,
.moodboard-copy h2,
.atelier-copy h2 {
    font-family: 'Cormorant Garamond', 'Poppins', serif;
    letter-spacing: 0.5px;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 30px rgba(51, 44, 84, 0.08);
    z-index: 999;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo a {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu-desktop {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--muted);
}

.nav-menu-desktop li a {
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-menu-desktop li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu-desktop li a:hover,
.nav-menu-desktop li a:focus {
    color: var(--primary);
}

.nav-menu-desktop li a:hover::after,
.nav-menu-desktop li a:focus::after {
    transform: scaleX(1);
}

.btn-agenda-desktop {
    padding: 11px 24px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 600;
    border: 1px solid rgba(214, 138, 186, 0.4);
    box-shadow: 0 10px 20px rgba(214, 138, 186, 0.2);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-icon-line {
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 999px;
}

.nav-mobile {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    padding: clamp(3rem, 8vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 36px;
    overflow: hidden;
    color: #fff;
    background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 80px rgba(22, 8, 35, 0.35);
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(14, 6, 22, 0.8), rgba(133, 78, 115, 0.55));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-tags span {
    font-size: 0.82rem;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    letter-spacing: 3px;
}

.hero-signature {
    margin-top: 12px;
    padding-left: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-signature p {
    font-family: 'Cormorant Garamond', 'Poppins', serif;
    font-size: 1.2rem;
    color: #fff;
}

.hero-signature span {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 18px 26px;
    border-radius: 24px;
    max-width: 250px;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.hero-badge strong {
    color: var(--secondary);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 6px;
}

.hero-badge p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Atelier */
.atelier {
    background: linear-gradient(135deg, #fff, var(--lilac-mist));
}

.atelier-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.atelier-copy span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.atelier-copy h2 {
    font-size: 2.6rem;
    color: var(--secondary);
    margin: 14px 0;
}

.atelier-copy p {
    color: var(--muted);
}

.atelier-copy ul {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    color: var(--text);
}

.atelier-copy ul li {
    position: relative;
    padding-left: 18px;
}

.atelier-copy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.atelier-portrait {
    position: relative;
}

.atelier-portrait img {
    width: 100%;
    border-radius: 50px 18px 50px 18px;
    object-fit: cover;
    box-shadow: 0 35px 70px rgba(51, 44, 84, 0.25);
}

.atelier-note {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}


.hero .subheading {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    color: #fff;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #f0bfd6, #d68aba);
    color: var(--secondary);
    box-shadow: 0 18px 28px rgba(214, 138, 186, 0.35);
}

.btn.secondary {
    border-color: rgba(51, 44, 84, 0.15);
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.6);
}

.btn:hover {
    transform: translateY(-3px);
}

/* Trust ribbons */
.trust-ribbons {
    padding-top: 0;
    padding-bottom: 60px;
}

.trust-ribbons-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ribbon-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 138, 186, 0.15);
}

.ribbon-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 20px;
}

.ribbon-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary);
}

.ribbon-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Services */
.services {
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 48px;
    color: var(--secondary);
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.service-box {
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 220, 231, 0.6));
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 138, 186, 0.15);
    position: relative;
    overflow: hidden;
}

.service-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(214, 138, 186, 0.22), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box:hover::after {
    opacity: 1;
}

.service-content h2 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--muted);
}

/* Rituals */
.rituals {
    background: var(--bg-light);
}

.rituals-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.rituals-header span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.rituals-header h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin: 12px 0;
}

.rituals-header p {
    color: var(--muted);
}

.rituals-steps {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.ritual-step {
    background: #fff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 138, 186, 0.18);
    display: flex;
    flex-direction: column;
}

.step-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.step-content {
    padding: 22px;
}

.step-content span {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--primary-dark);
}

.step-content h3 {
    margin: 8px 0;
    color: var(--secondary);
}

.step-content p {
    color: var(--muted);
    line-height: 1.5;
}

/* Gallery */
.gallery {
    background: var(--bg-light);
}

.gallery-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.gallery-header span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.gallery-header h2 {
    font-size: 2.3rem;
    color: var(--secondary);
    margin: 10px 0;
}

.gallery-header p {
    color: var(--muted);
}

.gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-grid figure {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--muted);
}

/* Experts */
.experts {
    background: var(--bg-alt);
}

.experts-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.experts-content {
    max-width: 640px;
}

.experts-title {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 18px;
}

.experts-description {
    color: var(--muted);
    margin-bottom: 40px;
}

.experts-content ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 18px;
}

.stat-box {
    background: #fff;
    padding: 28px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(137, 181, 225, 0.12);
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-text {
    color: var(--muted);
}

/* Testimonials */
.testimonials {
    background: #fff;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.testimonials-header span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.testimonials-header h2 {
    font-size: 2.3rem;
    color: var(--secondary);
    margin: 10px 0;
}

.testimonials-header p {
    color: var(--muted);
}

.testimonial-cards {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 220, 231, 0.9));
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 138, 186, 0.2);
}

.client-info {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    object-fit: cover;
}

.client-info h3 {
    font-size: 1.05rem;
    color: var(--secondary);
}

.client-info p {
    color: var(--muted);
    font-size: 0.9rem;
}

.rating {
    color: #f8b84e;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial-quote {
    color: var(--text);
    line-height: 1.5;
}

/* Moodboard */
.moodboard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 220, 231, 0.5));
}

.moodboard-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.moodboard-copy span {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

.moodboard-copy h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin: 12px 0;
}

.moodboard-copy p {
    color: var(--muted);
    margin-bottom: 16px;
}

.moodboard-copy ul {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.moodboard-collage {
    position: relative;
    min-height: 420px;
}

.moodboard-collage img {
    position: absolute;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
}

.collage-main {
    width: 60%;
    height: 360px;
    object-fit: cover;
    top: 0;
    left: 0;
}

.collage-secondary {
    width: 55%;
    height: 280px;
    object-fit: cover;
    top: 60px;
    right: 0;
}

.collage-detail {
    width: 40%;
    height: 180px;
    object-fit: cover;
    bottom: 0;
    left: 25%;
}

.collage-note {
    position: absolute;
    bottom: 20px;
    right: 10%;
    background: #fff;
    padding: 18px 22px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    max-width: 220px;
}

.collage-note p {
    color: var(--text);
    font-style: italic;
}

/* CTA */
.cta-section {
    background: linear-gradient(120deg, #fbe9f3, #f3ecff);
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-text {
    font-size: 1.5rem;
    color: var(--secondary);
}

.cta-button {
    background: #fff;
    color: var(--secondary);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(51, 44, 84, 0.1);
}

/* Tabs */
.tabs-section {
    background: #fff;
}

.tabs-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.tabs-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tab-button {
    padding: 13px 24px;
    border-radius: 40px;
    border: 1px solid rgba(214, 138, 186, 0.3);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, rgba(214, 138, 186, 0.9), rgba(137, 181, 225, 0.8));
    color: #fff;
    border-color: transparent;
}

.tabs-content {
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: 34px;
    padding: 40px;
}

.tabs-content ul {
    display: grid;
    gap: 16px;
    color: var(--muted);
}

/* Contact */
.contact {
    background: var(--bg-light);
}

.contact-section {
    padding: 0;
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.contact-info {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(246, 220, 231, 0.5));
    border-radius: 36px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info ul {
    display: grid;
    gap: 16px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.material-icons {
    color: var(--primary);
}

.contact-map {
    min-height: 320px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Floating buttons */
.contact-button {
    position: fixed;
    bottom: 110px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 30px rgba(214, 138, 186, 0.35);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-button .material-icons {
    color: #fff;
    font-size: 28px;
}

#whatsapp-button {
    background: linear-gradient(135deg, #91e0b5, #58c48f);
}

#phone-button {
    background: linear-gradient(135deg, #b4c7ff, #8296ff);
    bottom: 36px;
}

.notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff9eb5;
    color: #fff;
    border-radius: 999px;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1f1a36;
    color: #fff;
    padding: 70px 20px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
}

.footer-menu li,
.footer-contact li,
.footer-payment li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-credits {
    text-align: center;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 960px) {
    .nav-desktop,
    .btn-agenda-desktop {
        display: none;
    }

    .menu-icon {
        display: flex;
    }

    .nav-mobile {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: #fff;
    }

    .nav-mobile.open {
        max-height: 200px;
    }

    .nav-menu-mobile {
        padding: 20px;
        display: grid;
        gap: 12px;
    }

    section {
        padding: 60px 16px;
    }

    .hero {
        min-height: 70vh;
        padding: 70px 20px;
        align-items: flex-end;
    }

    .hero-content {
        max-width: 100%;
    }

    .experts-grid {
        grid-template-columns: 1fr;
    }

    .atelier-inner {
        grid-template-columns: 1fr;
    }

    .moodboard-grid {
        grid-template-columns: 1fr;
    }

    .moodboard-collage {
        min-height: auto;
        display: grid;
        gap: 20px;
        position: static;
    }

    .moodboard-collage img,
    .collage-note {
        position: static;
        width: 100%;
        height: auto;
    }

    .collage-main,
    .collage-secondary,
    .collage-detail {
        height: auto;
    }

    .hero-visual img {
        height: 420px;
    }

    .hero-visual-card {
        position: static;
        margin-top: 18px;
    }

    .tabs-content {
        padding: 20px;
    }

    .contact-button {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }
}

@media (max-width: 600px) {
    .buttons {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .rituals-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }
}
