/*
Theme Name: Turin Motorsport
Theme URI: https://turinmotorsport.com.br
Author: Turin Motorsport
Author URI: https://turinmotorsport.com.br
Description: Tema premium editável com Elementor
Version: 4.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turin-motorsport
*/

/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-vermelho: #E31E24;
    --cor-verde: #00A859;
    --cor-preto: #0a0a0a;
    --cor-cinza-escuro: #1a1a1a;
    --cor-branco: #ffffff;
    --cor-azul-waze: #00d8ff;
}

body {
    font-family: 'Rajdhani', 'Arial', sans-serif;
    background-color: var(--cor-preto);
    color: var(--cor-branco);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   HEADER FIXO
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 15px 0;
    border-bottom: 2px solid var(--cor-vermelho);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-header {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--cor-branco);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 5px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-vermelho);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ========================================
   CONTEÚDO PRINCIPAL
======================================== */
.site-main {
    margin-top: 90px;
}

.content-section {
    padding: 0;
    margin: 0;
}

.content-section img {
    width: 100%;
    display: block;
}

/* Seção de contato - IMAGEM + BOTÕES ABAIXO */
.contact-section {
    background: var(--cor-preto);
    padding: 0;
}

.contact-image {
    width: 100%;
    display: block;
    margin: 0;
}

.contact-buttons-container {
    background: var(--cor-preto);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 60px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    min-width: 250px;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.whatsapp-btn {
    background: var(--cor-verde);
    color: var(--cor-branco);
}

.whatsapp-btn:hover {
    background: #009648;
}

.waze-btn {
    background: var(--cor-azul-waze);
    color: #000;
}

.waze-btn:hover {
    background: #00c4e6;
}

/* Mapa após os botões */
.map-container {
    padding: 60px 20px;
    background: var(--cor-preto);
}

.map-title {
    color: var(--cor-branco);
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: bold;
}

.map-container iframe {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: var(--cor-preto);
    border-top: 2px solid var(--cor-vermelho);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 20px;
}

.footer-text {
    color: var(--cor-branco);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-credits {
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .logo-header {
        height: 50px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
    }

    .main-nav a {
        font-size: 14px;
    }

    .contact-buttons-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .contact-btn {
        width: 100%;
        max-width: 350px;
        padding: 20px 40px;
        font-size: 18px;
    }
}
