/* --- BASE & VARIAVEIS --- */
:root {
    --rose-gold: #b78472;
    --nude: #f9f4f1;
    --text-dark: #6d4c41;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--nude);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px; /* Limita a largura para não colar nos cantos */
    margin: 0 auto;
    padding: 0 40px; /* Margem interna para respiro em telas menores */
}

/* --- HEADER (CENTRALIZADO) --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 244, 241, 0.95); /* Nude sutil */
    border-bottom: 1px solid rgba(183, 132, 114, 0.1);
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--rose-gold);
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--rose-gold);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- BOTÕES --- */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.4s;
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--white);
    border: 1px solid var(--rose-gold);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* --- SEÇÃO CONCEITO --- */
.concept-section {
    padding: 100px 0;
    background: var(--white);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.frame {
    border: 1px solid var(--rose-gold);
    padding: 15px;
}

.frame img {
    width: 100%;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}
/* --- RESPONSIVIDADE (ADAPTAÇÃO) --- */

/* 1. Notebooks e Telas Médias (até 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .concept-grid {
        gap: 40px;
    }
}

/* 2. Tablets (até 768px) */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav {
        flex-direction: column; /* Logo em cima, menu embaixo */
        gap: 15px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column; /* Botões um em cima do outro */
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%; /* Botão ocupa a largura no celular */
        max-width: 300px;
        text-align: center;
    }

    /* Empilhamento da seção conceito */
    .concept-grid {
        grid-template-columns: 1fr; /* Vira uma coluna única */
        text-align: center;
    }

    .concept-text h2 {
        font-size: 2.2rem;
    }

    .concept-img {
        order: -1; /* Imagem aparece antes do texto no celular */
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 3. Celulares Pequenos (até 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .logo {
        font-size: 1.4rem;
    }

    nav ul {
        flex-wrap: wrap; /* Menu quebra linha se não couber */
        justify-content: center;
        gap: 10px 20px;
    }
}
/* --- PÁGINA SOBRE --- */

/* Hero sutil para páginas internas */
.page-hero {
    padding: 180px 0 80px;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid rgba(183, 132, 114, 0.1);
}

.bio-section {
    padding: 100px 0;
    background: var(--nude);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

/* Moldura Diferenciada com Badge de Experiência */
.frame-overlap {
    position: relative;
    padding: 20px;
}

.frame-overlap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border: 2px solid var(--rose-gold);
    z-index: 0;
}

.frame-overlap img {
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 30px 30px 0px var(--white);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--text-dark);
    color: var(--rose-gold);
    padding: 20px;
    z-index: 2;
    text-align: center;
    min-width: 140px;
}

.experience-badge span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.experience-badge small {
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--white);
}

/* Texto da Bio */
.bio-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.signature {
    margin: 40px 0;
}

.signature span {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose-gold);
    font-style: italic;
}

/* Ajuste Responsivo para o Sobre */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .frame-overlap img {
        box-shadow: 15px 15px 0px var(--white);
    }
    
    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
}
/* --- PÁGINA CONTATO --- */

.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-items {
    margin: 40px 0;
}

.item {
    margin-bottom: 30px;
}

.item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--rose-gold);
    margin-bottom: 5px;
}

/* Botão WhatsApp Grande */
.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366; /* Verde oficial do WhatsApp */
    color: #fff;
    text-decoration: none;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Imagem de Destaque no Contato */
.map-placeholder {
    position: relative;
    border: 1px solid var(--rose-gold);
    padding: 10px;
}

.map-placeholder img {
    width: 100%;
    display: block;
    filter: grayscale(40%);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--rose-gold);
    color: #fff;
    padding: 15px 25px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Botão Flutuante de WhatsApp (Global) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ajuste Responsivo Contato */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .map-overlay {
        right: 0;
        bottom: 10px;
        font-size: 0.8rem;
    }
}
/* --- PÁGINA DE SERVIÇOS --- */

.services-menu {
    padding: 80px 0;
    background: var(--white);
}

.service-category {
    margin-bottom: 80px;
}

.category-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--rose-gold);
    margin-bottom: 50px;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rose-gold);
    margin: 10px auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas no desktop */
    gap: 40px 100px;
}

.menu-item {
    margin-bottom: 20px;
}

.menu-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted #e0d5d0;
    margin: 0 15px;
}

.service-price {
    font-weight: 600;
    color: var(--rose-gold);
}

.service-desc {
    font-size: 0.85rem;
    color: #8a6d64;
    margin-top: 5px;
    font-style: italic;
}

.services-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--nude);
}

.services-footer p {
    font-size: 0.8rem;
    margin-bottom: 30px;
}

/* Ajuste Responsivo Serviços */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr; /* Uma coluna em tablets e celulares */
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .menu-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-dots {
        display: none; /* Remove pontos no celular para não bugar */
    }
    .service-price {
        margin-top: 5px;
    }
}
/* --- PÁGINA PORTFÓLIO --- */

.portfolio-section {
    padding: 60px 0 120px;
    background: var(--white);
}

/* Filtros */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.filter-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    color: #8a6d64;
    transition: 0.3s;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
}

.filter-item.active, .filter-item:hover {
    color: var(--rose-gold);
    border-bottom: 1px solid var(--rose-gold);
}

/* Grid de Imagens */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.portfolio-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Efeito de Hover Glamour */
.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 76, 65, 0.85); /* Tom chocolate com transparência */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.portfolio-card:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-hover .category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    margin-bottom: 10px;
}

.portfolio-hover h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-view {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    border: 1px solid var(--rose-gold);
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-view:hover {
    background: var(--rose-gold);
}

/* Footer do Portfólio */
.portfolio-footer {
    margin-top: 80px;
    text-align: center;
}

.instagram-handle {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--rose-gold);
    text-decoration: none;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* --- COMPONENTES DE SISTEMA / ADMIN --- */

/* Status Badges */
.badge {
    padding: 5px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.badge-pending { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.badge-approved { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }

/* Tabelas Administrativas */
.admin-table-wrapper {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--rose-gold);
    box-shadow: 10px 10px 0px rgba(183, 132, 114, 0.1);
    margin-top: 30px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    font-family: 'Playfair Display', serif;
    padding: 15px;
    border-bottom: 2px solid var(--nude);
    color: var(--rose-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 18px 15px;
    border-bottom: 1px solid var(--nude);
    font-size: 0.9rem;
}

/* Inputs de Formulário de Sistema */
.admin-input-group {
    margin-bottom: 20px;
}

.admin-input-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.admin-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0d5d0;
    background: #fdfaf7;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.admin-input:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: #fff;
}

/* Links de Ação */
.action-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
}

.action-approve { color: #28a745; }
.action-reject { color: #dc3545; }
.action-approve:hover, .action-reject:hover { opacity: 0.7; }

/* --- CORREÇÕES DE LAYOUT PARA MÓDULOS --- */

/* Força o conteúdo principal a descer para não ficar sob o header fixo */
main {
    padding-top: 100px;
    min-height: 80vh;
}

/* Centralizador de formulários administrativos */
.admin-form-container {
    max-width: 550px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Melhora a visualização da moldura do formulário */
.admin-table-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--rose-gold);
    box-shadow: 15px 15px 0px rgba(183, 132, 114, 0.1); /* Sombra mais nítida */
    width: 100%;
}

/* Ajuste nos inputs para ocuparem 100% da largura da moldura */
.admin-input-group input, 
.admin-input-group select, 
.admin-input-group textarea {
    width: 100% !important;
    display: block;
    margin-top: 5px;
}

/* Ajuste para textos informativos dentro de formulários */
.form-info {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-style: italic;
}

/* --- REFINOS VISUAIS DO SITE PÚBLICO --- */

:root {
    --champagne: #efe1d8;
    --sand: #fffaf6;
    --shadow-soft: 0 18px 45px rgba(109, 76, 65, 0.12);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 35%),
        linear-gradient(180deg, #fcf8f5 0%, var(--nude) 55%, #f7efea 100%);
}

header {
    background: rgba(249, 244, 241, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(183, 132, 114, 0.12);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(73, 46, 41, 0.62), rgba(18, 13, 11, 0.18));
}

.hero-content {
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.95;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
}

.btn {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c18e7c, var(--rose-gold));
    box-shadow: 0 16px 35px rgba(183, 132, 114, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.concept-section,
.bio-section,
.contact-section,
.services-menu,
.portfolio-section {
    background: transparent;
}

.frame,
.map-placeholder,
.signature-card,
.menu-item,
.item {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
}

.frame,
.map-placeholder {
    border-color: rgba(183, 132, 114, 0.55);
}

.concept-text p {
    max-width: 540px;
    margin-bottom: 28px;
}

.highlight-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.highlight-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(183, 132, 114, 0.16);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(109, 76, 65, 0.06);
}

.highlight-card strong,
.highlight-card span {
    display: block;
}

.highlight-card strong {
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.highlight-card span {
    font-size: 0.92rem;
    color: #8a6d64;
}

.signature-section {
    padding: 0 0 110px;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.signature-card,
.menu-item,
.item {
    border: 1px solid rgba(183, 132, 114, 0.12);
    border-radius: 24px;
}

.signature-card {
    padding: 32px;
}

.signature-number {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--rose-gold);
}

.signature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.signature-card p,
.service-desc {
    color: #8a6d64;
}

.page-hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 241, 0.95));
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: auto -10% -55% auto;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(183, 132, 114, 0.18), transparent 70%);
}

.experience-badge {
    background: linear-gradient(135deg, var(--text-dark), #8a6d64);
}

.item {
    padding: 20px 24px;
}

.btn-whatsapp-large {
    border-radius: 999px;
    gap: 12px;
}

.btn-whatsapp-large .icon,
.whatsapp-float i {
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1;
}

.portfolio-card {
    border-radius: 30px;
    box-shadow: 0 14px 34px rgba(109, 76, 65, 0.10);
}

.filter-item {
    border: 0;
    background: transparent;
}

.portfolio-card.is-hidden {
    display: none;
}

.portfolio-hover h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.btn-view:hover {
    background: var(--white);
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(183, 132, 114, 0.3);
}

footer {
    padding: 26px 20px 38px;
    text-align: center;
    color: #8a6d64;
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .highlight-strip,
    .contact-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .concept-text p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .signature-card,
    .menu-item,
    .item {
        padding: 22px;
    }

    .portfolio-card {
        height: 360px;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
}