/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #E31E24;
    --cor-fundo: #000000;
    --cor-fundo-secundario: #1A1A1A;
    --cor-fundo-terciario: #2A2A2A;
    --cor-texto: #FFFFFF;
    --cor-texto-secundario: #CCCCCC;
    --font-principal: 'Montserrat', sans-serif;
    --font-secundaria: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-secundaria);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    font-family: var(--font-principal);
    font-size: 32px;
    font-weight: 800;
    color: var(--cor-primaria);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--cor-primaria);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--cor-primaria);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.7) 100%), url('../img/hero-desktop.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-family: var(--font-principal);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--cor-texto-secundario);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-principal);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--cor-primaria);
    color: var(--cor-texto);
}

.btn-primary:hover {
    background-color: #C11A1F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

/* Sobre */
.sobre {
    padding: 100px 0;
    background-color: var(--cor-fundo);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--cor-primaria);
}

.sobre-text h2 {
    font-family: var(--font-principal);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sobre-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cor-texto-secundario);
    margin-bottom: 20px;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background-color: var(--cor-fundo-secundario);
}

.section-title {
    font-family: var(--font-principal);
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.servico-card {
    background-color: var(--cor-fundo-terciario);
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid var(--cor-primaria);
    text-align: center;
    transition: all 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    border-color: var(--cor-primaria);
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.servico-card h3 {
    font-family: var(--font-principal);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--cor-primaria);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.servico-card p {
    font-size: 16px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}

/* Metodologia */
.metodologia {
    padding: 100px 0;
    background-color: var(--cor-fundo);
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.metodologia-item {
    text-align: center;
}

.metodologia-number {
    font-family: var(--font-principal);
    font-size: 80px;
    font-weight: 800;
    color: var(--cor-primaria);
    line-height: 1;
    margin-bottom: 20px;
}

.metodologia-item h3 {
    font-family: var(--font-principal);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metodologia-item p {
    font-size: 16px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--cor-fundo-secundario);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--cor-primaria);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--cor-fundo-terciario);
    color: var(--cor-texto);
    font-family: var(--font-secundaria);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(227, 30, 36, 0.1);
}

.faq-icon {
    color: var(--cor-primaria);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--cor-fundo);
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 16px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Depoimentos */
.depoimentos {
    padding: 100px 0;
    background-color: var(--cor-fundo);
}

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

.depoimento-card {
    background-color: var(--cor-fundo-terciario);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(227, 30, 36, 0.3);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: var(--cor-primaria);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.depoimento-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--cor-primaria);
}

.depoimento-card h4 {
    font-family: var(--font-principal);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--cor-primaria);
}

.depoimento-card p {
    font-size: 16px;
    color: var(--cor-texto-secundario);
    line-height: 1.6;
    font-style: italic;
}

/* CTA Final */
.cta-final {
    padding: 100px 0;
    background-color: var(--cor-fundo-secundario);
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-principal);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-primaria);
    border-radius: 50%;
    color: var(--cor-texto);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #C11A1F;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: var(--cor-fundo);
    text-align: center;
    border-top: 1px solid var(--cor-fundo-terciario);
}

.footer p {
    font-size: 14px;
    color: var(--cor-texto-secundario);
}

/* Responsividade Tablet */
@media (max-width: 1024px) {
    .hero {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.9) 80%, rgba(0, 0, 0, 0.9) 100%), url('../img/hero-mobile.jpg');
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 90vh;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 42px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-image {
        display: none;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.95) 85%, rgba(0, 0, 0, 0.95) 100%), url('../img/hero-mobile.jpg');
        background-position: center top;
        background-size: cover;
        min-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
        padding: 100px 20px 40px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
    }

    .hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .hero .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 14px;
        margin-top: auto;
    }

    .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .sobre,
    .servicos,
    .metodologia,
    .faq,
    .depoimentos,
    .cta-final {
        padding: 60px 0;
    }

    .sobre-image {
        display: none;
    }

    .sobre-text h2 {
        font-size: 32px;
    }

    .sobre-text p {
        font-size: 16px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metodologia-number {
        font-size: 60px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-final h2 {
        font-size: 28px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}
/* =====================================================
   AJUSTES FINOS HERO – CONTROLE MANUAL (SEGURO)
   Altere APENAS os números conforme necessário
===================================================== */

/* ===============================
   DESKTOP – MOVER TEXTO PARA ESQUERDA
================================ */

@media (min-width: 1025px) {

    .hero-text {
        margin-left: -380px; /* 👈 MOVE TUDO PARA ESQUERDA */
    }

    .hero-text h1 {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 10px;
    }

    .btn-primary {
        margin-top: 30px;
    }

}

/* ===============================
   TABLET + MOBILE – AJUSTAR ALTURA DOS TEXTOS
================================ */

@media (max-width: 1024px) {

    .hero-text h1 {
        margin-top: -90px; /* 👈 DESCE A HEADLINE */
    }

    .hero-text .hero-subtitle {
        margin-top: -10px; /* 👈 DESCE O SUBTÍTULO */
    }

    .btn-primary {
        display: inline-block;
        margin-top: 40px; /* 👈 CONTROLA O BOTÃO */
    }

}




