:root {
    /* Cores atualizadas conforme requisito */
    --bg-f7eee5: #F7EEE5;      /* Fundo da barra e do rodapé EXATAMENTE como pedido */
    
    /* Premium Color Palette */
    --primary: #94714e;        /* Bronze/Wood clássico e fino */
    --primary-dark: #6e5033;
    --secondary: #1a1512;      /* Black muito escuro / Charcoal */
    --bg-white: #ffffff;
    --bg-gray: #fbfbf9;
    
    /* Tipografia de Luxo */
    --font-heading: 'Cormorant Garamond', serif; /* Fonte editorial requintada */
    --font-body: 'Montserrat', sans-serif;       /* Contraste moderno nas leituras longas */
    
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --header-height: 130px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--secondary);
    background-color: var(--bg-white);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Tipografia Base */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 500;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ------------------- HEADER ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-f7eee5); /* SOLICITAÇÃO 1 & 2: Cor Exata */
    box-shadow: 0 1px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-height);
    gap: 1.5rem 2rem;
}

.logo-link {
    flex-shrink: 0;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-btn-text-short {
    display: none;
}

/* CTA do menu lateral — só no celular (evita botão duplicado no desktop) */
.nav-drawer-cta {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--secondary);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

body.menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-backdrop {
    display: none;
}

/* SOLICITAÇÃO 3: Logo maior */
.logo-img {
    height: 110px; /* Aumentado consideravelmente */
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-links > a {
    color: var(--secondary);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-btn-header {
    padding: 14px 22px;
    font-size: 0.72rem;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links > a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links > a:hover::after {
    width: 100%;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-solid-dark {
    background-color: var(--secondary);
    color: #fff;
}

.btn-solid-dark:hover {
    background-color: var(--primary);
    color: #fff;
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-dark:hover {
    background-color: var(--secondary);
    color: #fff;
}

/* ------------------- HERO ------------------- */
.hero {
    position: relative;
    padding-top: var(--header-height);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
    /* Tivemos que clarear o overlay pois a ideia do luxo de revista permite fundos claros/minimalistas */
}

/* SOLICITAÇÃO 4: Texto para a Esquerda e menor */
.hero-content-left {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start; /* Alinhando bem à esquerda */
    width: 100%;
}

.hero-card {
    max-width: 650px;
    padding: 4rem 0;
}

.hero-line {
    width: 80px;
    height: 1px;
    background-color: var(--primary);
    margin-bottom: 2rem;
}

.hero-title {
    /* Reduzido o tamanho (estava 4.5rem antes) */
    font-size: 3.2rem; 
    line-height: 1.1;
    margin-bottom: 2rem;
    font-style: italic; /* Luxo editorial */
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 3.5rem;
}

/* ------------------- EDITORIAL ABOUT ------------------- */
.about {
    padding: 160px 0;
    background-color: var(--bg-white);
}

.about-editorial {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 7rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-main {
    width: 80%;
    height: auto;
    object-fit: cover;
}

.img-accent-wrapper {
    position: absolute;
    bottom: -15%;
    right: 0;
    width: 55%;
    box-shadow: -15px -15px 0px var(--bg-white);
}

.img-accent {
    width: 100%;
    height: auto;
    display: block;
}

.editorial-line {
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    margin: 2.5rem 0;
    position: relative;
}
.editorial-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    width: 60px;
    background-color: var(--primary);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
}

.lead-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-text-content p:not(.lead-text) {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ------------------- SERVICES LUXURY GALLERY ------------------- */
.services {
    padding: 120px 0;
    background-color: var(--bg-gray);
}

.section-heading-centered {
    text-align: center;
    margin-bottom: 5rem;
}

.section-heading-centered .section-title {
    margin-bottom: 1rem;
}

/* Masonry / Grid de luxo irregular para portfólio */
.services-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 30px;
}

.sg-item {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* O primeiro card toma 2 colunas */
.sg-item-large {
    grid-column: span 2;
}

/* O quarto card toma 2 colunas */
.sg-item-medium {
    grid-column: span 2;
}

.sg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 1s ease, opacity 0.5s ease;
}

.sg-item:hover .sg-img {
    transform: scale(1.05);
    opacity: 0.5;
}

.sg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    opacity: 1; /* Visível sempre, mas muito elegante */
}

.sg-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.sg-overlay p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* ------------------- CONTACT EDITORIAL ------------------- */
.contact {
    padding: 140px 0;
    background-color: var(--bg-white);
}

.contact-editorial {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 6rem;
    align-items: center;
}

.contact-info-panel .editorial-line {
    margin: 2rem 0;
}

.contact-desc {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.c-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.c-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.c-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.c-item-phones {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.c-item-phones a {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-item-phones a:hover {
    color: var(--primary);
}

.social-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--secondary);
}

.social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-map-panel {
    width: 100%;
    height: 600px;
    filter: grayscale(80%) sepia(20%);
    transition: filter 0.5s ease;
}

.contact-map-panel:hover {
    filter: none;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
}

/* ------------------- FOOTER ATUALIZADO ------------------- */
.footer {
    background-color: #F7EEE5; /* Cor exata igual ao menu */
    padding: 80px 0 30px;
    color: var(--secondary);
}

.footer-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 110px; /* Mesmo tamanho da logo do menu */
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ------------------- WHATSAPP FLOAT ------------------- */
.wa-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.wa-float i {
    font-size: 35px;
    margin-top: 2px; /* leve ajuste visual */
}

.wa-float:hover {
    background-color: #128C7E;
    color: #fff;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ------------------- RESPONSIVO ------------------- */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .header-container { gap: 1rem 1.25rem; }
    .nav-links { gap: 1.75rem; }
    .nav-links > a { font-size: 0.75rem; letter-spacing: 1px; }
    .nav-btn-header { padding: 12px 18px; font-size: 0.68rem; }
    .about-editorial, .contact-editorial { gap: 4rem; }
    .hero-title { font-size: 2.8rem; }
    .services-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 320px;
    }
    .sg-item-large {
        grid-column: span 2;
    }
    .sg-item-medium {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 88px;
    }

    .container { padding: 0 1.5rem; }

    .logo-img { height: 72px; }

    .header-container {
        display: flex;
        justify-content: space-between;
    }

    .nav-btn-header {
        display: inline-flex;
        padding: 12px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .nav-btn-text-full { display: none; }
    .nav-btn-text-short { display: inline; }

    .menu-toggle {
        display: flex;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        top: var(--header-height);
        background: rgba(26, 21, 18, 0.45);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        pointer-events: none;
    }

    body.menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: min(320px, 88vw);
        height: calc(100dvh - var(--header-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1.5rem 1.25rem 2rem;
        background-color: var(--bg-f7eee5);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        overflow-y: auto;
    }

    body.menu-open .nav-links {
        transform: translateX(0);
    }

    .nav-links > a {
        padding: 1rem 0;
        font-size: 0.9rem;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links > a::after {
        display: none;
    }

    .nav-drawer-cta {
        display: block;
        margin-top: 1.25rem;
        padding-top: 0.5rem;
    }

    .nav-drawer-cta .btn {
        display: inline-flex;
        width: 100%;
        padding: 16px 20px;
        white-space: normal;
        text-align: center;
    }

    .about-editorial,
    .contact-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about {
        padding: 100px 0;
    }

    .about-images {
        margin-bottom: 2rem;
    }

    .img-main {
        width: 100%;
    }

    .img-accent-wrapper {
        position: relative;
        bottom: auto;
        right: auto;
        width: 75%;
        margin: -3rem auto 0;
        box-shadow: -10px -10px 0 var(--bg-white);
    }

    .hero {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title { font-size: 2.35rem; }

    .hero-card {
        max-width: 100%;
        padding: 2.5rem 0 1rem;
    }

    .hero-content-left {
        justify-content: center;
        text-align: center;
    }

    .hero-line {
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 2rem;
    }

    .hero-overlay-gradient {
        background: rgba(255, 255, 255, 0.92);
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .services {
        padding: 80px 0;
    }

    .services-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(260px, 55vw);
        gap: 16px;
    }

    .sg-item-large,
    .sg-item-medium {
        grid-column: auto;
    }

    .sg-overlay {
        padding: 1.5rem;
    }

    .sg-overlay h3 {
        font-size: 1.45rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-map-panel {
        height: 360px;
        order: -1;
    }

    .contact-editorial {
        display: flex;
        flex-direction: column;
    }

    .contact-info-panel {
        order: 1;
    }

    .section-heading-centered {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.35rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .footer {
        padding: 50px 0 24px;
    }

    .footer-logo {
        height: 80px;
    }

    .footer-tagline {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 76px;
    }

    .container { padding: 0 1.15rem; }

    .logo-img { height: 60px; }

    .nav-btn-header {
        padding: 10px 12px;
        font-size: 0.65rem;
    }

    .hero-title { font-size: 2rem; }

    .section-title { font-size: 2rem; }

    .about { padding: 70px 0; }

    .services-gallery {
        grid-auto-rows: minmax(240px, 52vw);
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.75rem;
    }

    .wa-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    .wa-float i { font-size: 28px; }

    .contact-map-panel {
        height: 300px;
    }

    .c-item {
        gap: 1rem;
    }

    .eyebrow {
        letter-spacing: 2px;
        font-size: 0.7rem;
    }
}

@media (max-width: 380px) {
    .nav-btn-text-short {
        display: none;
    }

    .nav-btn-header {
        width: 44px;
        height: 44px;
        padding: 0;
        font-size: 0;
        background-color: var(--secondary);
        border-color: var(--secondary);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 22px;
    }
}
