﻿:root {
    --preto: #0f0f0f;
    --preto-2: #171313;
    --rose: #d8a0a8;
    --rose-claro: #e7bcc2;
    --branco: #ffffff;
    --cinza: #d6d6d6;
    --cinza-2: #9f9f9f;
    --linha: rgba(216, 160, 168, 0.25);

    --fonte-titulo: "Cormorant Garamond", serif;
    --fonte-texto: "Poppins", sans-serif;

    --container: min(1120px, calc(100% - 32px));
    --header: 72px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-texto);
    background: var(--preto);
    color: var(--branco);
}

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

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

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

.section {
    padding: 90px 0;
}

h1,
h2,
h3 {
    font-family: var(--fonte-titulo);
    line-height: 0.95;
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
}

p {
    color: var(--cinza);
    line-height: 1.75;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--rose-claro);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary {
    background: var(--rose);
    color: #160d10;
}

.btn-secondary {
    border: 1px solid var(--linha);
    color: var(--branco);
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header);
    z-index: 100;
    background: rgba(15, 15, 15, 0.78);
    backdrop-filter: blur(14px);
}

.header-inner {
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    color: var(--cinza);
    font-size: 0.95rem;
    font-weight: 500;
}

.site-nav a:hover {
    color: var(--rose-claro);
}

.menu-toggle {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/img/itamara/itamara2.jpeg");
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.94) 0%,
            rgba(5, 5, 5, 0.78) 28%,
            rgba(5, 5, 5, 0.32) 55%,
            rgba(5, 5, 5, 0.08) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(520px, calc(100% - 32px));
    margin-left: clamp(24px, 6vw, 92px);
    padding: 0;
}

.hero-content h1 {
    max-width: 10ch;
    margin-bottom: 22px;
    font-size: clamp(3rem, 5vw, 5rem);
}

.hero-content p {
    max-width: 430px;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
}

.hero-actions .btn {
    min-width: 250px;
}

.hero-highlights {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    list-style: none;
}

.hero-highlights li {
    color: var(--cinza);
}

.hero-highlights li::before {
    content: "✦";
    margin-right: 10px;
    color: var(--rose);
}

.hero-image {
    display: none;
}

.hero .btn-secondary {
    background: rgba(216, 163, 177, 0.18);
    border: 1px solid rgba(216, 163, 177, 0.45);
    color: #fff;
    backdrop-filter: blur(8px);
}

/* SOBRE */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.about-media img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    object-position: center top;
}

.about-content h2 {
    margin-bottom: 18px;
}

.value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-icon {
    color: var(--rose-claro);
}

/* SERVIÇOS */

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.services-list {
    display: grid;
    gap: 70px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(216, 160, 168, 0.16);
}

.service-card-reverse .service-media {
    order: 2;
}

.service-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-media-grid img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 20px;
}

.service-body h3 {
    margin-bottom: 18px;
}

.service-body p {
    max-width: 520px;
}

.service-btn {
    margin-top: 24px;
}

/* RESULTADOS */

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.result-card {
    overflow: hidden;
    border-radius: 18px;
}

.result-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.result-card:hover img {
    transform: scale(1.04);
}

/* DEPOIMENTOS */

.testimonials-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.testimonials-viewport {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 14px;
    transition: transform 0.45s ease;
}

.testimonial-image-card {
    flex: 0 0 calc((100% - 28px) / 3);
}

.testimonial-image-card img {
    width: 100%;
    border-radius: 16px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--linha);
    border-radius: 50%;
    background: transparent;
    color: var(--rose-claro);
    cursor: pointer;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.carousel-dot.is-active {
    background: var(--rose);
}

/* CONTATO */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.contact-copy h2 {
    margin-bottom: 18px;
}

.contact-copy .btn {
    margin-top: 24px;
}

.contact-list {
    display: grid;
    gap: 16px;
    list-style: none;
}

.contact-list span {
    display: block;
    color: var(--cinza-2);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* FOOTER */

.site-footer {
    padding: 36px 0 20px;
    border-top: 1px solid rgba(216, 160, 168, 0.14);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-brand img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-links,
.footer-social {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    width: var(--container);
    margin: 24px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(216, 160, 168, 0.1);
}

.footer-bottom p,
.footer-brand p {
    color: var(--cinza-2);
}

/* WHATSAPP FLUTUANTE */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 110;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: #160d10;
}

/* ANIMAÇÃO */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* RESPONSIVO */

@media (max-width: 768px) {
    :root {
        --container: min(1120px, calc(100% - 24px));
        --header: 68px;
    }

    .section {
        padding: 64px 0;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(15, 15, 15, 0.98);
        border: 1px solid var(--linha);
        border-radius: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 10px;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 44px;
        height: 44px;
        border: 1px solid var(--linha);
        border-radius: 50%;
        background: transparent;
    }

    .menu-toggle span {
        width: 16px;
        height: 2px;
        margin: 0 auto;
        background: var(--rose-claro);
    }

    .hero {
        min-height: auto;
        padding-top: var(--header);
        display: block;
    }

    .hero-content {
        padding: 400px 5px 26px;
    }

    .hero-content .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        max-width: 18ch;
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        line-height: 1;
    }

    .hero-content p {
        max-width: 310px;
        font-size: 0.70rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.95);
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-actions .btn {
        min-height: 44px;
        font-size: 0.9rem;
    }

    .hero-highlights {
        display: none;
    }

    .hero-image {
        height: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-grid,
    .service-card,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card-reverse .service-media {
        order: initial;
    }

    .service-media-grid img {
        height: 190px;
    }

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

    .result-card img {
        height: 180px;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .testimonial-image-card {
        flex-basis: 100%;
    }

    .carousel-btn {
        display: none;
    }
}