/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #022E1F;
    background-size: cover;
    /* Opção para imagem de fundo geral do site */
    background-image: url(''); /* Adicione a URL da imagem aqui */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #022E1F;
  /*backdrop-filter: blur(10px); */
    border-bottom: 1px solid #022E1F;
    z-index: 10000000000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}
/* Tamanho da logo inicial */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Cor da Logo */
.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #daa520;
    margin-bottom: 0.25rem;
}
/* Escrita abaixo da Logo maior */
.logo span {
    font-size: 0.875rem;
    color: #daa520;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
/* Cor da letra cabeçalho */
.nav-link {
    text-decoration: none;
    color: #daa520;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
/* Cor da letra quando passa o mouse */
.nav-link:hover {
    color: #daa520;
}
/* Cor da barra abaixo da letra quando passa o mouse */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #daa520;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 105%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #daa520;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #022E1F 0%, #022E1F 100%);
    /* Opção para imagem de fundo específica do hero */
    background-image: url('https://tse2.mm.bing.net/th/id/OIP.r4ZadKmXaXJ5AZJ_FkoI5QHaE7?rs=1&pid=ImgDetMain&o=7&rm=3'), linear-gradient(135deg, rgba(240, 250, 252, 0.527) 0%, rgba(226, 232, 240, 0.829) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Texto ao lado do foguete */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #022E1F;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.35rem;
    color: #022E1F;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #022E1F 0%, #022E1F 100%);
    color: white;
    box-shadow: 0 4px 20px lch(97.33% 1.17 174.05 / 0.733);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243, 237, 237, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #022E1F;
    border-color: #022E1F;
}

.btn-secondary:hover {
    background: #fdfdfd;
    color: #022E1F;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(246, 247, 248, 0.836);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #022E1F 0%, #06b379 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(219, 205, 4, 0.562);
    animation: float 6s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 6rem;
    color: #daa520;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Seções */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #daa520;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #daa520;
    max-width: 600px;
    margin: 0 auto;
}

/* Serviços */
.services {
    background: #022e1f;
   background-image: url('https://tse2.mm.bing.net/th/id/OIP.9fsyqo5s7y0qyXkoyigxFAHaE8?rs=1&pid=ImgDetMain&o=7&rm=3'), linear-gradient(135deg, rgba(240, 250, 252, 0.068) 0%, rgba(226, 232, 240, 0.021) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px #daa52065;
    transition: all 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #daa520 0%, #8f6b10 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #022E1F;
    font-size: 1rem;
    line-height: 1.7;
}

/* Quem Somos */
.about-content {
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description p {
    font-size: 1.1rem;
    color: #022E1F;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #022E1F;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: #022E1F;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #daa520 0%, #8f6b10 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(240, 236, 5, 0.822);
}

.about-graphic i {
    font-size: 4rem;
    color: #022E1F;
}

/* Localização */
.location {
    background: #022E1F;
    background-image: url(''), linear-gradient(135deg, #022217 0%, #32daa27e 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
/* COR DO ICONE DO LADO DO MAPA */
.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #daa520 0%, #8f6b10 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* COR INTERNA DO ICONE */
.info-icon i {
    font-size: 1.5rem;
    color: #022E1F;
}
/* COR DA LETRA */
.info-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
/* COR DA LETRA */
.info-text p {
    color: #ffffff;
    line-height: 1.6;
}



/* Contato */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #022E1F;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #022E1F;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 2rem;
}
/* COR DO BOTÃO DE CONTATOS E ENDEREÇO */
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: hwb(180 94% 5%); 
    border-radius: 12px;
    transition: all 0.3s ease;
}
/* COR DO BOTÃO QUANDO SE PASSA O MOUSE CONTATOS E ENDEREÇO */
.contact-method:hover {
    background: #022e1f60; 
    transform: translateX(5px);
}
/* COR DA LOGO DO  BOTÃO DE CONTATOS E ENDEREÇO */
.contact-method i {
    font-size: 1.25rem;
    color: #a17e24f1;
    width: 24px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #daa520 0%, #8f6b10 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(253, 229, 7, 0.753);
}

.social-link i {
    color: white;
    font-size: 1.2rem;
}

/* Formulário */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ebe5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #daa520;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ */
.faq {
    background: #08080865;
     /* Opção para imagem de fundo da seção FAQ */
/* Opção para imagem de fundo específica do hero */
    background-image: url('https://www.pronascer.com.br/wp/wp-content/uploads/2018/10/banner-duvidas-1.jpg'), linear-gradient(135deg, rgba(240, 250, 252, 0.795) 0%, rgba(226, 232, 240, 0.829) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.692);
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #daa520;
}
/* COR DO TEXTO - CAIXA DE DÚVIDAS */
.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.faq-question i {
    color: #daa520;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #022E1F;
    /* Opção para imagem de fundo do footer */
    background-image: url(''), rgba(31, 41, 55, 0.95);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

/* Classes utilitárias para imagens de fundo */
.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.bg-overlay > * {
    position: relative;
    z-index: 2;
}

/* Classe para imagem de fundo personalizada */
.custom-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Classe para parallax */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #daa520;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 188px;
    height: 85px;
    display: block;
}

.footer-logo p {
    color: #daa520;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #daa520;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}
/* COR DO TEXTO */
.footer-section ul li a {
    color: #edeef0;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* Cor do botão quando passa o mouse acima */
.footer-section ul li a:hover {
    color: #daa520;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #daa520;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
/* Linha acima do COPYR */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #daa520;
}
/* Cor do Copyr */
.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        background-attachment: scroll; /* Melhor performance em mobile */
    }
    
    .parallax-bg {
        background-attachment: scroll; /* Parallax pode causar problemas em mobile */
    }
    
    .hamburger {
        display: flex;
    }
    /* Ajuste 3 pontos mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.781);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0,90rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .section-header {
        text-align: center;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 80vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Animações de Scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}