/* --- RESET & GLOBAIS --- */
:root {
    --primary-color: #FFC107; /* Amarelo/Dourado */
    --secondary-color: #FFA000; /* Laranja */
    --dark-color: #212121; /* Cinza escuro/Preto */
    --medium-gray: #424242;
    --light-gray: #f4f4f4;
    --text-color: #333;
    --white-color: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* --- ANIMAÇÕES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* --- CABEÇALHO --- */
.header {
    background-color: rgba(33, 33, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

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

.logo {
    font-family: 'Teko', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-decoration: none;
    font-weight: 700;
}

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

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

/* --- SEÇÃO HERO --- */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/fundo.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- SEÇÃO SOBRE --- */
#sobre {
    background-color: var(--light-gray);
}
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.sobre-text {
    flex: 1;
}
.sobre-image {
    flex: 1;
}
.sobre-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- SEÇÃO VÍDEO --- */
#video {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/imagem02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.video-wrapper h2 {
    color: var(--white-color);
}

/* Container com proporção 9:16 para vídeos verticais */
.video-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* largura máxima no desktop */
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;

    /* Mantém proporção vertical 9:16 */
    aspect-ratio: 9 / 16;
}

/* Iframe responsivo */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        aspect-ratio: 9 / 16;
    }
}


/* --- SEÇÃO SERVIÇOS --- */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.servico-card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.servico-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

.servico-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.icon {
    font-size: 2.5rem;
    color: #11253f; /* ou a cor padrão da sua identidade visual */
    margin-bottom: 10px;
}

/* --- SEÇÃO BENEFÍCIOS --- */
#beneficios {
    background-color: var(--dark-color);
}

#beneficios h2 {
    color: var(--white-color);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.beneficios-list {
    list-style: none;
}

.beneficios-list li {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.beneficios-list .icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.beneficios-image img {
    border-radius: 10px;
}

/* --- SEÇÃO DEPOIMENTOS --- */
#depoimentos {
    background-color: var(--light-gray);
}

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

.depoimento-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.depoimento-autor h4 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.depoimento-autor span {
    color: #777;
    font-size: 0.9rem;
}

/* --- SEÇÃO CONTATO --- */
.contato-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.5);
}

.btn-submit {
    width: 100%;
}

/* --- RODAPÉ --- */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .logo {
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 20px;
    max-width: 500px;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--white-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 30px;
    width: 100%;
}

/* --- BOTÃO WHATSAPP FIXO --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    h2 { font-size: 2.5rem; }
    section { padding: 60px 0; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .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 { height: auto; padding: 150px 20px 80px; }
    .hero-content h1 { font-size: 2.8rem; }
    
    .sobre-content { flex-direction: column; }
    
    .beneficios-grid { grid-template-columns: 1fr; }
    .beneficios-image { order: -1; margin-bottom: 30px; }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}