:root {
    --rose: #f4a7b9;
    --rose-dark: #e07d98;
    --rose-deeper: #c75a7a;
    --rose-light: #fce4ec;
    --rose-pale: #fff0f5;
    --blush: #f9d0dc;
    --text-dark: #2d1a22;
    --text-mid: #5a3a48;
    --text-light: #9b7080;
    --white: #ffffff;
    --off-white: #fdf6f8;
    --text: #111827;
    --muted: #6b7280;
    --border: #dce8f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--blush);
    box-shadow: 0 2px 20px rgba(199, 90, 122, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--rose-deeper);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--text-mid);
    font-style: italic;
    font-weight: 400;
}

.menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.menu li a {
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.menu li a:hover {
    background: var(--rose-light);
    color: var(--rose-deeper);
}

/* ── HERO ── */
#Home {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

#myVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(45, 26, 34, 0.6) 0%,
            rgba(199, 90, 122, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 6%;
}

.hero-tag {
    display: inline-block;
    background: var(--rose);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content h1 em {
    color: var(--rose);
    font-style: italic;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(14px, 2vw, 18px);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose-deeper);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(199, 90, 122, 0.4);
}

.hero-cta:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(199, 90, 122, 0.5);
}

/* ── SCROLL MARQUEE ── */
.marquee-section {
    background: var(--rose-deeper);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    display: inline-block;
    color: white;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;

    padding: 0 30px;
    opacity: 0.9;
}

.marquee-track span::before {
    content: '💧 ';
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ── SERVICES ── */
#About {
    padding: 100px 5%;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--rose-deeper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--blush);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--rose), var(--rose-deeper));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(199, 90, 122, 0.15);
    border-color: var(--rose);
}

.service-card:hover::before {
    opacity: 1;
}

.service-emoji {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ── ABOUT SECTION ── */
.about-wrapper {
    background: linear-gradient(135deg, var(--rose-deeper) 0%, #a8476b 100%);
    border-radius: 32px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-wrapper::before {
    content: '♀';
    position: absolute;
    right: -20px;
    top: -40px;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.about-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-left h2 em {
    color: var(--blush);
}

.about-left p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--blush);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 8px;
    display: block;
}

.pioneer-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pioneer-badge .badge-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pioneer-badge p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ── CONTACT ── */
#Contact {
    padding: 100px 5%;
    background: var(--white);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1.5px solid var(--blush);
    transition: all 0.25s;
    color: var(--text-dark);
}

.channel-link:hover {
    border-color: var(--rose);
    background: var(--rose-pale);
    transform: translateX(4px);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.channel-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.channel-text span {
    font-size: 12px;
    color: var(--text-light);
}

.contact-form-box {
    background: var(--off-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--blush);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--blush);
    border-radius: 12px;
    background: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rose);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--rose), var(--rose-deeper));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 90, 122, 0.35);
}

/* ── LOCATION ── */
#Location {
    padding: 100px 5%;
    background: var(--off-white);
}

.location-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(199, 90, 122, 0.12);
    border: 2px solid var(--blush);
    height: 480px;
    margin-top: 40px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── FLOATING WHATSAPP ── */
.button-wpp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-wpp 2.5s infinite;
}

.button-wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wpp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.12);
    }
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s;
}

.footer-social a:hover {
    background: var(--rose-deeper);
    border-color: var(--rose-deeper);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--rose);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;

}

.footer-contact-item i {
    color: var(--rose);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-bottom-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 167, 185, 0.12);
    border: 1px solid rgba(244, 167, 185, 0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    color: var(--rose);
    font-weight: 500;
}


/* ── CONTACT SECTION ── */
#Contact {
    padding: 100px 5%;
    background: var(--white);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Cards de contato */
.direct-contact-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--blush);
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.direct-contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.direct-contact-card h3 i {
    color: var(--rose-deeper);
    margin-right: 12px;
}

.contact-multi-channel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--off-white);
    border-radius: 20px;
    padding: 18px 24px;
    border: 1px solid var(--blush);
    transition: all 0.25s;
    text-decoration: none;
    color: var(--text-dark);
}

.contact-detail-item:hover {
    transform: translateX(5px);
    border-color: var(--rose);
    background: white;
    box-shadow: 0 12px 22px rgba(199,90,122,0.08);
}

.detail-icon-circle {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--rose-light), #fff0f5);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--rose-deeper);
    flex-shrink: 0;
}

.detail-info h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.detail-info p {
    font-size: 14px;
    color: var(--text-mid);
    margin: 0;
}

.detail-info .small-text {
    font-size: 12px;
    margin-top: 4px;
    color: var(--text-light);
}

/* Form box */
.contact-form-box {
    background: var(--off-white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--blush);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-form-box h3 i {
    margin-right: 10px;
    color: var(--rose-deeper);
}

.contact-form-box p {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.email-highlight {
    background: var(--blush);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.email-highlight i {
    font-size: 26px;
    color: var(--rose-deeper);
}

.email-highlight strong {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    word-break: break-all;
}

.info-list {
    margin-top: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-dark);
}

.info-item i {
    color: var(--rose-deeper);
    width: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 28px;
    padding: 16px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .menu {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .about-wrapper {
        padding: 40px 24px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .direct-contact-card {
        padding: 24px;
    }

    .contact-detail-item {
        padding: 14px 20px;
    }

    .detail-icon-circle {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }
}