/* ===== VARIÁVEIS ===== */
:root {
    --gold: #C9A24D;
    --chocolate: #4A2C1A;
    --beige: #F6F1EA;
    --white: #FFFFFF;
    --gray: #8F8F8F;
    --light-gray: #E8E1D7;
    --transition: all 0.3s ease;
}

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    background-color: var(--beige);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    color: var(--chocolate);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
    color: var(--chocolate);
    margin-bottom: 5px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--chocolate);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--chocolate);
    border: 1px solid var(--chocolate);
}

.btn-secondary:hover {
    background-color: var(--chocolate);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ===== LOGO COM TAMANHO AUMENTADO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--chocolate);
    font-size: 1.3rem;
}

.logo-img {
    width: 70px; /* Aumentado de 50px */
    height: 70px; /* Aumentado de 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: 80px; /* Tamanho maior no rodapé */
    height: 80px;
}

.logo-large {
    width: 200px; /* Aumentado de 150px */
    height: 200px; /* Aumentado de 150px */
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(246, 241, 234, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(74, 44, 26, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--chocolate);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.whatsapp-btn {
    background-color: var(--gold);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background-color: var(--chocolate);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--chocolate);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    background-color: var(--beige);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23C9A24D" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Z" /><path fill="%234A2C1A" fill-opacity="0.03" d="M0,0 L0,100 L100,100 Z" /></svg>');
    background-size: 200px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--chocolate);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== SOBRE SECTION - Com imagem à direita ===== */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-text p {
    margin-bottom: 25px;
}

.sobre-imagem {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 44, 26, 0.1);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.sobre-imagem:hover img {
    transform: scale(1.03);
}

.imagem-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(74, 44, 26, 0.9), transparent);
    padding: 20px;
    color: var(--white);
}

.imagem-legenda h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.imagem-legenda p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(74, 44, 26, 0.05);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 44, 26, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--chocolate);
    font-weight: 500;
}

/* ===== PRODUTOS SECTION ===== */
.produtos {
    background-color: var(--white);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.produto-card {
    padding: 40px 30px;
    text-align: center;
    background-color: var(--beige);
    border-radius: 10px;
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(74, 44, 26, 0.1);
}

.produto-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.produto-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* ===== GALERIA SECTION ===== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.galeria-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(74, 44, 26, 0.08);
    transition: var(--transition);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(74, 44, 26, 0.15);
}

.galeria-img {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.galeria-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover .galeria-img img {
    transform: scale(1.05);
}

.galeria-caption {
    padding: 15px;
    background-color: var(--white);
    font-weight: 900;
    color: var(--chocolate);
    text-align: center;
    font-family: 'Cinzel', serif;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    background-color: var(--beige);
}

.depoimentos-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.depoimento-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(74, 44, 26, 0.05);
    display: none;
}

.depoimento-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.depoimento-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.depoimento-text:before {
    content: '"';
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.depoimento-author {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.author-name {
    font-weight: 600;
    color: var(--chocolate);
    font-size: 1.1rem;
}

.author-event {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

.depoimentos-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.depoimento-prev, .depoimento-next {
    background: none;
    border: 1px solid var(--chocolate);
    color: var(--chocolate);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.depoimento-prev:hover, .depoimento-next:hover {
    background-color: var(--chocolate);
    color: var(--white);
}

.depoimentos-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--gold);
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(rgba(74, 44, 26, 0.9), rgba(74, 44, 26, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23C9A24D" fill-opacity="0.1" d="M0,0 L100,0 L100,100 Z" /><path fill="%23C9A24D" fill-opacity="0.05" d="M0,0 L0,100 L100,100 Z" /></svg>');
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-title:after {
    display: none;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== RODAPÉ ===== */
.footer {
    background-color: var(--chocolate);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover, .footer-contact li:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícones corrigidos - telefone com ícone correto */
.footer-contact i.fa-phone {
    color: var(--gold);
    width: 20px;
}

.footer-contact i.fa-envelope {
    color: var(--gold);
    width: 20px;
}

.footer-contact i.fa-map-marker-alt {
    color: var(--gold);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.fa-heart {
    color: #ff6b6b;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-imagem {
        order: -1;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo-large {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--beige);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(74, 44, 26, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .whatsapp-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-large {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-large {
        width: 140px;
        height: 140px;
    }
}