/* ==========================================================================
   Cores principais: 
     Bordô: #4a1d2c, #6b2e3e
     Dourado: #ffd966, #b88b4a
     Fundo escuro: #071522
   ========================================================================== */

/* ---------- RESET E CONFIGURAÇÕES GLOBAIS ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Para compensar o header fixo */
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #071522; /* fundo escuro do plugin */
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd966 0%, #b88b4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.2rem;
    color: #ffd966;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    color: #ffd966;
    margin-bottom: 1rem;
}

p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.secao-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.secao-titulo p {
    color: #b88b4a;
    font-size: 1.1rem;
}

/* ---------- BOTÕES ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primario {
    background: linear-gradient(135deg, #4a1d2c 0%, #6b2e3e 100%);
    color: #ffd966;
    box-shadow: 0 4px 15px rgba(74, 29, 44, 0.3);
}

.btn-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 139, 74, 0.4);
    background: linear-gradient(135deg, #5e2538 0%, #7e3a4c 100%);
    color: #ffe6a3;
}

.btn-secundario {
    background: transparent;
    color: #b88b4a;
    border: 2px solid #b88b4a;
}

.btn-secundario:hover {
    background: rgba(184, 139, 74, 0.1);
    transform: translateY(-3px);
    border-color: #ffd966;
    color: #ffd966;
}

/* ---------- CABEÇALHO FIXO ---------- */
/* Logo com imagem no cabeçalho */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-cabecalho {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-cabecalho:hover {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd966;
}

.logo span span {
    color: #b88b4a;
}

/* Ajuste responsivo para mobile */
@media (max-width: 768px) {
    .logo-cabecalho {
        max-height: 65px;
    }
    .logo span {
        font-size: 1.2rem;
    }
    .cabecalho{
        padding: 0,2rem 0;
    }
}
.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*background: rgba(7, 21, 34, 0.95);*/
    /*background: linear-gradient(135deg, #4a1d2c 0%, #6b2e3e 100%) !important;*/
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 139, 74, 0.3);
    transition: all 0.3s ease;
}

.cabecalho-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffd966;
    letter-spacing: -0.5px;
}

.logo span {
    color: #b88b4a;
}

.nav-lista {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd966;
}

.OpList{
    transition: all 0.3s ease;
}

.OpList:hover{
    color: #ffd966;
    transform: translateY(-3px);
    text-shadow: 0 8px 25px rgba(184, 139, 74, 0.4);
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    color: #ffd966;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ---------- SEÇÃO HERO ---------- */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(145deg, #071522 0%, #0a1a2a 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-conteudo {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 139, 74, 0.2);
    color: #b88b4a;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-botoes {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-imagem {
    flex: 1;
    text-align: center;
}

.hero-imagem img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(184,139,74,0.3);
}

/* ---------- SERVIÇOS ---------- */
.servicos {
    padding: 80px 0;
    background: #0a1929;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: #0d1f2f;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 139, 74, 0.2);
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: #b88b4a;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.5);
}

.card-icone {
    font-size: 2.8rem;
    color: #b88b4a;
    margin-bottom: 1.2rem;
}

/* ---------- DIFERENCIAIS ---------- */
.diferenciais {
    padding: 80px 0;
    background: #071522;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.diferencial-item {
    background: linear-gradient(145deg, #0d1f2f, #071522);
    padding: 1.8rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-numero {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(184, 139, 74, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos {
    padding: 80px 0;
    background: #0a1929;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: #0d1f2f;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    border-left: 4px solid #b88b4a;
}

.depoimento-texto i {
    color: #b88b4a;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.depoimento-autor {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184,139,74,0.3);
}

.depoimento-autor h4 {
    margin-bottom: 0.2rem;
    color: #ffd966;
}

.depoimento-autor span {
    font-size: 0.85rem;
    color: #b88b4a;
}

/* ---------- CONTATO ---------- */
.contato {
    padding: 80px 0;
    background: #071522;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contato-info, .contato-formulario {
    background: #0d1f2f;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(184,139,74,0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.info-item i {
    font-size: 1.8rem;
    color: #b88b4a;
    width: 40px;
}

.info-item h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.info-item p {
    margin: 0;
    color: #ccc;
}

.redes-sociais {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.redes-sociais a {
    background: rgba(184,139,74,0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #b88b4a;
    transition: all 0.3s;
}

.redes-sociais a:hover {
    background: #b88b4a;
    color: #071522;
    transform: translateY(-3px);
}

/* Formulário */
.campo-form {
    margin-bottom: 1.2rem;
}

.campo-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #ffd966;
}

.campo-form input,
.campo-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1a2c3c;
    border: 1px solid #2a3a4a;
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.2s;
}

.campo-form input:focus,
.campo-form textarea:focus {
    outline: none;
    border-color: #b88b4a;
    box-shadow: 0 0 0 2px rgba(184,139,74,0.2);
}

.btn-enviar {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resposta-form {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.resposta-form.sucesso {
    color: #90ee90;
}

.resposta-form.erro {
    color: #ff9999;
}

/* ---------- RODAPÉ ---------- */
/* Logo com imagem no rodapé */
.logo-imagem-texto {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.logo-rodape {
    max-height: 120px;
    width: auto;
    border-radius: 8px; /* opcional, para cantos arredondados */
    transition: transform 0.3s ease;
}

.logo-rodape:hover {
    transform: scale(1.02);
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .logo-imagem-texto {
        justify-content: center;
        text-align: center;
    }
    .logo-rodape {
        max-height: 120px;
    }
}
.rodape {
    background: #04101a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(184,139,74,0.3);
}

.rodape-conteudo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rodape-logo h3 {
    font-size: 1.5rem;
}

.rodape-logo span {
    color: #b88b4a;
}

.rodape-links ul {
    list-style: none;
    margin-top: 0.5rem;
}

.rodape-links li {
    margin-bottom: 0.5rem;
}

.rodape-links a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.2s;
}

.rodape-links a:hover {
    color: #ffd966;
}

.rodape-newsletter form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rodape-newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 40px;
    border: none;
    background: #1a2c3c;
    color: #fff;
}

.rodape-newsletter button {
    background: #b88b4a;
    border: none;
    width: 40px;
    border-radius: 40px;
    color: #071522;
    cursor: pointer;
    transition: 0.2s;
}

.rodape-newsletter button:hover {
    background: #ffd966;
}

.rodape-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #aaa;
}

/* ---------- ANIMAÇÕES (SCROLL REVEAL) ---------- */
.animar,
.animar-card,
.animar-entrada,
.animar-entrada-atraso {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animar.animado,
.animar-card.animado,
.animar-entrada.animado,
.animar-entrada-atraso.animado {
    opacity: 1;
    transform: translateY(0);
}

.animar-entrada-atraso {
    transition-delay: 0.2s;
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .contato-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-mobile {
        display: block;
    }
    .nav-lista {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: #0a1929;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s;
        gap: 1.5rem;
        z-index: 999;
        backdrop-filter: blur(10px);
    }
    .nav-lista.ativo {
        left: 0;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-botoes {
        justify-content: center;
    }
    .servicos-grid, .diferenciais-grid, .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}