/* ==========================================================================
   ATLANTA EXECUTIVE TRANSPORT - ESTILO COMPLETO E ATUALIZADO
   ========================================================================== */

/* --- Reset e Configurações Gerais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff !important;
    color: #000000 !important;
    overflow-x: hidden;
}

/* Força o padrão de fundo branco e texto preto para as seções de conteúdo */
section, .about, .testimonials, .contact, .services-section {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Altera títulos, parágrafos e tags internas nas seções para a cor preta */
.about h2, .about h3, .about p, .feature-card h4, .feature-card p,
.testimonials h2, .testimonial-item h4, .testimonial-item p,
.contact h2, .contact p {
    color: #000000 !important;
}

/* --- Layout Base / Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navegação --- */
header {
    background-color: #1e3a8a !important; /* Azul executivo */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a, .language-selector, .language-selector a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

nav ul a:hover, .language-selector a:hover {
    opacity: 0.8;
}

.language-selector .active {
    font-weight: 700;
    border-bottom: 2px solid #ffffff;
}

/* --- Seção Hero (Banner Principal Ajustado) --- */
.hero {
    position: relative;
    height: 65vh; /* Altura corrigida para não quebrar o design */
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; 
    background-color: #000000 !important; 
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55; /* Contraste para leitura do texto */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

/* EXCEÇÃO: Mantém o texto em destaque solicitado na cor branca */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.service-tags {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #ffffff !important;
    text-transform: uppercase;
}

/* --- Botões Executivos --- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1e3a8a;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #152963;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ebd59;
}

/* --- Seção: Nossos Serviços (Cards, Ícones & Espaçamentos) --- */
.services-section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.service-card {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb;
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 3rem;
    color: #1e3a8a !important;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #4b5563 !important; /* Cinza escuro para melhor legibilidade */
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- Subseção: Nossos Diferenciais --- */
.why-choose {
    margin-top: 40px;
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 45px;
    text-transform: uppercase;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: #6b7280 !important;
}

.features-grid .img-wrapper {
    width: 100px; 
    height: 100px;
    margin: 0 auto 15px auto;
    border-radius: 50% !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6; 
    border: 2px solid #1e3a8a; 
}

.features-grid .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
}

/* --- Seção: Testemunhos / Avaliações --- */
.testimonial-item {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* --- Seção: Contato --- */
.contact {
    text-align: center;
    padding: 90px 20px;
}

.contact h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #1e3a8a !important;
    margin-top: 10px;
}

/* --- Footer --- */
footer {
    background-color: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

/* --- Botão Flutuante do WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

/* --- Efeitos de Animação (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (Responsividade)
   ========================================================================== */

@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    nav ul { display: none; } 
    
    .hero { height: 55vh; } /* Diminui ainda mais o vídeo no mobile para melhor encaixe */
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1.05rem; }
    .service-tags { font-size: 0.9rem; }
    
    .services-section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; margin-bottom: 35px; }
    .services-grid { gap: 20px; margin-bottom: 60px; }
    .service-card { padding: 35px 20px; }
    
    .subsection-title { font-size: 1.6rem; margin-bottom: 30px; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; }
    
    .phone-number { font-size: 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 24px; }
}