:root {
    --cream: #FAF7F4;
    --nude: #EDE0D4;
    --nude-mid: #D9C4B5;
    --rosé: #C4937F;
    --rosé-deep: #A6705A;
    --blush: #F2E8E1;
    --sand: #B8A090;
    --charcoal: #2C2624;
    --warm-gray: #7A6E6A;
    --white: #FFFFFF;

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-accent: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Jost', sans-serif;

    --transition: 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-soft: 0 8px 40px rgba(44, 38, 36, 0.08);
    --shadow-card: 0 4px 24px rgba(44, 38, 36, 0.10);
}

/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background-color: var(--cream);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* TIPOGRAFIA GLOBAL */
h1,
h2,
h3,
h4 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1.2;
}

.label-tag {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rosé);
}

/* ANIMAÇÕES DE ENTRADA */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays escalonados */
.reveal-d1 {
    transition-delay: 0.10s;
}

.reveal-d2 {
    transition-delay: 0.22s;
}

.reveal-d3 {
    transition-delay: 0.34s;
}

.reveal-d4 {
    transition-delay: 0.46s;
}

/* BOTÕES */
.btn-rose {
    background-color: var(--rosé);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    border-radius: 0;
    transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-rose:hover {
    background-color: var(--rosé-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(166, 112, 90, 0.35);
}

.btn-outline-rose {
    background-color: transparent;
    color: var(--rosé);
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 13px 34px;
    border: 1.5px solid var(--rosé);
    border-radius: 0;
    transition: all var(--transition);
}

.btn-outline-rose:hover {
    background-color: var(--rosé);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost-white {
    background-color: transparent;
    color: #fff;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 13px 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    transition: all var(--transition);
}

.btn-ghost-white:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

/* NAVBAR */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
    background-color: rgba(250, 247, 244, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 24px rgba(44, 38, 36, 0.08);
}

.navbar-brand {
    font-family: var(--ff-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 0.04em;
    transition: color 0.4s ease;
}

#mainNav.scrolled .navbar-brand {
    color: var(--charcoal) !important;
}

.nav-link {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 6px 14px !important;
    transition: color 0.3s ease;
    position: relative;
}

#mainNav.scrolled .nav-link {
    color: var(--warm-gray) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background-color: var(--rosé);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: #fff !important;
}

#mainNav.scrolled .nav-link:hover {
    color: var(--rosé) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 10px;
}

#mainNav.scrolled .navbar-toggler {
    border-color: var(--nude-mid);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44,38,36,0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO SECTION */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1210;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg,
            rgba(26, 18, 16, 0.68) 0%,
            rgba(26, 18, 16, 0.28) 55%,
            rgba(26, 18, 16, 0.55) 100%),
        url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?w=1800&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center 30%;
    transform-origin: center;
    transition: transform 12s ease-out;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

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

.hero-label-line {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-label-line .line-dec {
    display: block;
    width: 42px;
    height: 1px;
    background-color: var(--rosé);
}

.hero-label-line span {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--rosé);
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--nude);
}

.hero-subtitle {
    font-family: var(--ff-accent);
    font-size: clamp(1rem, 2vw, 1.22rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.80);
    max-width: 460px;
    margin-bottom: 42px;
    line-height: 1.8;
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* FAIXA DECORATIVA */
.deco-strip {
    background-color: var(--rosé);
    padding: 18px 0;
    overflow: hidden;
}

.deco-strip-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.deco-strip-item {
    font-family: var(--ff-accent);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.92);
    padding: 0 32px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.deco-strip-item::after {
    content: '✦';
    font-size: 0.55rem;
    opacity: 0.7;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* SEÇÃO MÉTRICAS */
#metrics {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

#metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--nude-mid), var(--rosé), var(--nude-mid), transparent);
}

.metric-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.metric-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--nude);
}

.metric-card:last-child::after {
    display: none;
}

.metric-number {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--rosé);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.metric-number sup {
    font-size: 0.6em;
    vertical-align: super;
    font-weight: 400;
}

.metric-label {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

/* SEÇÃO SOBRE */
#about {
    padding: 120px 0;
    background-color: var(--cream);
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    height: 560px;
    object-fit: cover;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1.5px solid var(--nude-mid);
    z-index: 0;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    z-index: 2;
    width: 120px;
    height: 120px;
    background-color: var(--rosé);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
}

.about-badge .badge-num {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about-badge .badge-txt {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.about-content {
    padding-left: 60px;
}

.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--nude);
}

.pillar-item:first-child {
    border-top: 1px solid var(--nude);
}

.pillar-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--rosé);
    transition: background-color var(--transition), transform var(--transition);
}

.pillar-item:hover .pillar-icon {
    background-color: var(--rosé);
    color: #fff;
    transform: rotate(-5deg) scale(1.08);
}

.pillar-title {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--charcoal);
}

.pillar-text {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* SEÇÃO SERVIÇOS */
#services {
    padding: 120px 0;
    background-color: var(--blush);
    position: relative;
}

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

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-title em {
    color: var(--rosé);
    font-weight: 400;
}

.section-subtitle {
    font-family: var(--ff-accent);
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 500px;
}

.deco-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 28px;
}

.deco-divider .line {
    flex: none;
    width: 40px;
    height: 1px;
    background: var(--rosé);
}

.deco-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--rosé);
    transform: rotate(45deg);
}

.service-card {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 38, 36, 0.14);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.service-img-wrap img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.06);
}

.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(196, 147, 127, 0.55) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover .service-img-wrap::after {
    opacity: 1;
}

.service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background-color: var(--white);
    padding: 5px 12px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rosé);
}

.service-body {
    padding: 32px 28px 36px;
}

.service-name {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.87rem;
    color: var(--warm-gray);
    line-height: 1.75;
    margin-bottom: 26px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--nude);
    padding-top: 20px;
}

.service-price-hint {
    font-family: var(--ff-accent);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--sand);
}

/* SEÇÃO DEPOIMENTOS */
#testimonials {
    padding: 120px 0;
    background-color: var(--white);
}

.stars {
    color: var(--rosé);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-card {
    background-color: var(--cream);
    padding: 40px 36px;
    position: relative;
    border-left: 3px solid var(--rosé);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.quote-mark {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--ff-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--nude);
    line-height: 1;
    user-select: none;
}

.testimonial-text {
    font-family: var(--ff-accent);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 26px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--nude-mid);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
}

.author-role {
    font-size: 0.74rem;
    color: var(--sand);
    letter-spacing: 0.08em;
}

/* CTA FINAL */
#cta {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--charcoal);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(26, 18, 16, 0.88) 0%, rgba(44, 38, 36, 0.75) 100%),
        url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-pretitle {
    font-family: var(--ff-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rosé);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--nude);
}

.cta-text {
    font-family: var(--ff-accent);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

/* RODAPÉ */
footer {
    background-color: #1a1210;
    padding: 80px 0 32px;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--nude);
    margin-bottom: 14px;
}

.footer-tagline {
    font-family: var(--ff-accent);
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.footer-heading {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rosé);
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--nude);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    font-size: 0.9rem;
    color: var(--rosé);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
}

.social-link:hover {
    background-color: var(--rosé);
    border-color: var(--rosé);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 64px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--nude);
}

/* RESPONSIVIDADE */
@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
        margin-top: 70px;
    }

    .about-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .metric-card::after {
        display: none;
    }

    .metric-card {
        border-bottom: 1px solid var(--nude);
    }

    .metric-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .about-image-wrap img {
        height: 380px;
    }

    .about-badge {
        width: 96px;
        height: 96px;
        bottom: -16px;
        left: -8px;
    }

    .about-badge .badge-num {
        font-size: 1.5rem;
    }

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

    .cta-text {
        max-width: 100%;
    }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
    color: #fff;
    animation: none;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}