/* Variáveis de Cores e Fontes */
:root {
    --bg-dark: #2a1230;
    --bg-darker: #1d0c22;
    --bg-light: #fdfaf6;
    --gold: #c9a17e;
    --gold-light: #d9b48f;
    --text-light: #f4ede4;
    --text-dark: #333333;
    
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: var(--bg-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.text-left {
    text-align: left;
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 3rem auto;
}

.divider.text-left {
    margin-left: 0;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

/* Header */
.header {
    background-color: var(--bg-dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 80px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(42, 18, 48, 0.85) 0%, rgba(29, 12, 34, 0.95) 100%), url('hero_bg.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 150px 0 100px 0;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--gold-light);
    line-height: 1.2;
}

/* Áreas de Atuação */
.areas {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border: 1px solid rgba(201, 161, 126, 0.3);
    padding: 40px 30px;
    background-color: #fff;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.card h3 {
    color: var(--bg-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Sobre */
.sobre {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    opacity: 0.03;
    pointer-events: none;
    width: 50vw;
    max-width: 600px;
}

.watermark img {
    width: 100%;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.sobre-img-container {
    flex: 1;
}

.sobre-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 15px;
}

.diferenciais {
    margin-top: 30px;
}

.diferencial-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.diferencial-icon {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
}

.diferencial-item h4 {
    font-family: var(--font-title);
    color: var(--bg-dark);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    padding: 30px;
    border-left: 2px solid var(--gold);
    background-color: #fff;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 15px;
}

.depoimento-author {
    font-weight: 600;
    color: var(--bg-dark);
}

/* Como Funciona */
.como-funciona {
    padding: 80px 0;
    background-color: #fff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workflow-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-family: var(--font-title);
    font-size: 3rem;
    color: rgba(201, 161, 126, 0.2);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.workflow-step h4 {
    color: var(--bg-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-title);
}

.workflow-step p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid rgba(201, 161, 126, 0.3);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover, .accordion-header.active {
    color: var(--gold);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-dark);
}

/* Contato */
.contato {
    padding: 80px 0;
    background-color: #fff;
}

.contato-container {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
}

.contato-lista {
    list-style: none;
    margin-top: 30px;
}

.contato-lista li {
    margin-bottom: 20px;
}

.contato-lista a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contato-lista a:hover {
    color: var(--gold);
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--gold);
}

.contato-form {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border: 1px solid rgba(201, 161, 126, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--bg-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info p {
    margin-bottom: 5px;
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    background-color: var(--bg-darker);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(244, 237, 228, 0.6);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content, .contato-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
