/* ==========================================================
   1. VARIÁVEIS GLOBAIS E RESET
   ========================================================== */
:root {
    --bg-color: #0B0B0B;
    --primary: #E10600;
    --text-color: #F5F5F5;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --card-bg: #111111;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================
   2. BARRA DE NAVEGAÇÃO (NAVBAR) E DROPDOWN
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, border-bottom 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(225, 6, 0, 0.2);
}

.logo {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    bottom: 5px;
    left: 0;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

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

.nav-links li a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--primary);
}

/* --- Dropdown Navbar --- */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: var(--card-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    z-index: 1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--primary);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li a {
    color: var(--text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content li a::after {
    display: none;
}

.dropdown-content li a:hover {
    background-color: rgba(225, 6, 0, 0.1);
    color: var(--text-color);
}

/* --- Barra de Busca Navbar --- */
.navbar-right .search-bar {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
}

.search-bar input {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-body);
    outline: none;
    width: 150px;
}

.search-bar button {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.search-bar button:hover {
    color: var(--primary);
}

/* ==========================================================
   3. SEÇÃO HERO (BANNER PRINCIPAL COM VÍDEO)
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 12vh;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.75);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    width: 100%;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.9);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #e0e0e0;
}

/* ==========================================================
   4. ESTILOS DE BOTÕES GLOBAIS
   ========================================================== */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-color);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 40px;
    text-decoration: none;
    letter-spacing: 2px;
    border: 1px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(225, 6, 0, 0.7);
    background-color: transparent;
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 15px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.4);
}

/* ==========================================================
   5. CATÁLOGO E CARDS (GRADE DE VEÍCULOS)
   ========================================================== */
.catalog {
    padding: 100px 5vw;
}

.category-section {
    margin-bottom: 90px;
}

.category-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.category-title-group {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.category-title-group h2 {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-range {
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 1.2rem;
}

.btn-see-more {
    color: #888;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 4px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.btn-see-more:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.3);
    background-color: rgba(225, 6, 0, 0.05);
}

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

.card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.4s ease, 
                box-shadow 0.3s ease,
                all 0.4s ease; /* Transições combinadas */
    display: flex;
    flex-direction: column;
    position: relative; 
}

.card:hover,
.card.animate-on-scroll.animated:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(225, 6, 0, 0.15);
    border-color: rgba(225, 6, 0, 0.4);
    z-index: 2; 
    transition: all 0.4s ease; 
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(30%) contrast(110%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.card:hover .card-img,
.card.animate-on-scroll.animated:hover .card-img {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.03);
}

.card-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
    background: var(--card-bg);
}

.card-info h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-info .price {
    font-size: 1rem;
    color: #888;
    flex-grow: 1;
}

/* ==========================================================
   6. MODAL DE INFORMAÇÕES (POPUP)
   ========================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--card-bg);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(225, 6, 0, 0.2);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

/* ==========================================================
   7. RODAPÉ (FOOTER)
   ========================================================== */
footer {
    background-color: #050505;
    padding: 60px 5vw;
    text-align: center;
    border-top: 1px solid rgba(225, 6, 0, 0.2);
}

footer p {
    color: #555;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ==========================================================
   8. RESPONSIVIDADE GLOBAL (MÍDIAS)
   ========================================================== */
@media (max-width: 992px) {
    .navbar-center { display: none; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .category-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px; 
    }
    .category-title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .btn-see-more {
        align-self: flex-start; 
    }
    .hero h1 { font-size: 2.2rem; }
    nav { padding: 0 20px; }
}

/* ==========================================================
   9. ANIMAÇÕES DE ROLAGEM (SCROLL ANIMATIONS)
   ========================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.animate-on-scroll {
    transition-duration: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================
   10. PÁGINA INTERNA: DETALHES DO CARRO (FULL-WIDTH)
   ========================================================== */
.car-details-page {
    width: 100%;
    padding-top: 90px; 
}

/* --- Galeria do Topo --- */
.gallery-fullwidth {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #050505;
}

.main-image-wrapper {
    width: 100%;
    height: 70vh; 
    min-height: 450px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
}

#main-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s ease-in-out;
}

.main-image-wrapper:hover #main-car-img {
    transform: scale(1.02);
}

/* --- Botões do Carrossel --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 11, 11, 0.5);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(225, 6, 0, 0.6);
}

.prev-btn { left: 3vw; }
.next-btn { right: 3vw; }

/* --- Miniaturas Centralizadas --- */
.gallery-thumbs {
    display: flex;
    gap: 15px;
    padding: 20px 5vw;
    justify-content: center;
    overflow-x: auto;
    background-color: #0B0B0B;
}

.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(225, 6, 0, 0.5); border-radius: 4px; }

.thumb-img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb-img:hover, 
.thumb-img.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
}

/* --- Informações Centrais do Veículo --- */
.car-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5vw 100px;
    display: flex;
    flex-direction: column;
    gap: 60px; 
}

.car-header-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.car-header-info h1 {
    font-family: var(--font-head);
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.car-price {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.car-short-desc {
    font-size: 1.15rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-action {
    width: auto;
    min-width: 250px;
    padding: 15px 40px;
}

/* --- Grade de Especificações Técnicas --- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-left: 3px solid var(--primary);
    transition: background 0.3s ease, transform 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.spec-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-value {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: bold;
}

/* --- Descrição Detalhada --- */
.car-long-desc {
    max-width: 900px;
    margin: 0 auto;
}

.car-long-desc h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    text-align: center;
}

.car-long-desc p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* --- Responsividade (Página de Detalhes) --- */
@media (max-width: 992px) {
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .car-header-info h1 { font-size: 2.5rem; }
    .main-image-wrapper { height: 50vh; }
}

@media (max-width: 768px) {
    .specs-grid { grid-template-columns: 1fr; }
    .car-header-info h1 { font-size: 2rem; }
    .main-image-wrapper { height: 40vh; }
    .thumb-img { width: 120px; height: 80px; }
}

/* ==========================================================
   11. SEÇÃO DO PILOTO PARCEIRO E VÍDEO (PÁGINA DE DETALHES)
   ========================================================== */
.driver-section {
    margin-top: 70px;
    padding-top: 10px;
}

.driver-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02); 
    padding: 50px;
    border-radius: 8px;
    border-left: 3px solid var(--primary); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.driver-text h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--text-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.driver-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: left; 
}

.driver-text strong {
    color: var(--primary);
}

.driver-achievements {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.driver-achievements li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: #F5F5F5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.driver-achievements li:last-child {
    margin-bottom: 0;
}

.driver-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;     
}

.driver-image img {
    max-width: 100%;         
    max-height: 550px;       
    width: auto;             
    height: auto;            
    object-fit: contain;     
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(225, 6, 0, 0.15);
    transition: transform 0.4s ease;
}

.driver-image img:hover {
    transform: scale(1.02);
}

/* --- Vídeo Showcase --- */
.video-showcase {
    margin-top: 80px;
    text-align: center;
}

.video-showcase h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Responsividade Piloto e Vídeo --- */
@media (max-width: 992px) {
    .driver-content {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .driver-image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .driver-text h3 {
        font-size: 1.5rem;
    }
    .video-showcase h3 {
        font-size: 1.6rem;
    }
    .driver-achievements li {
        font-size: 0.95rem;
    }
}

/* ==========================================================
   12. FEEDBACK VISUAL DE BUSCA (ANIMAÇÕES)
   ========================================================== */
#no-results-feedback {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================
   13. PÁGINA INTERNA: QUEM SOMOS
   ========================================================== */
.section-padding {
    padding: 100px 5vw;
}

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

.about-hero {
    height: 70vh;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .hero-overlay { /* Escopo ajustado para o contexto de quem somos */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #0B0B0B);
}

.hero-title {
    font-family: var(--font-head);
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--text-color);
}

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

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

.section-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.img-premium {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* --- Cards de Missão, Visão e Valores --- */
.grid-three-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: var(--card-bg);
    padding: 40px;
    border-top: 3px solid var(--primary);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-family: var(--font-head);
    margin-bottom: 15px;
    color: var(--text-color);
}

/* --- Seção de Diferenciais --- */
.grid-four-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.dif-number {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.dif-item h4 {
    font-family: var(--font-head);
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.dif-item p {
    font-size: 0.85rem;
    color: #888;
}

/* --- Responsividade da Página Quem Somos --- */
@media (max-width: 768px) {
    .grid-two-cols { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
}

/* ==========================================================
   14. MODAL GLOBAL DE SOLICITAÇÃO (INJETADO VIA JS)
   ========================================================== */
.form-modal-content {
    max-width: 450px !important;
    text-align: left !important;
}

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

.form-group label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 14px 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(225, 6, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleUp {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}