/* ============================================================
   1. RESET E CONFIGURAÇÕES GERAIS
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    padding-top: 90px;
    background-color: #000;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Responsividade Geral de Títulos */
@media (max-width: 768px) {
    body { padding-top: 70px; }
    .container { width: 90%; margin: 0 auto; }
    h2, h1 { font-size: 28px !important; }
}

/* ============================================================
   2. CABEÇALHO (HEADER FIXO)
   ============================================================ */
.header-fixo {
    background-color: #000000;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
}

/* Estrutura Flex do Header */
.header-logo { flex: 1; display: flex; justify-content: flex-start; }
.header-logo img { height: 75px; width: auto; }
.header-nav  { flex: 2; display: flex; justify-content: center; }
.header-botao { flex: 1; display: flex; justify-content: flex-end; }

/* Navegação */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-nav ul li a:hover { color: #e31d2d; }

/* Botão Localização */
.btn-loc {
    background-color: #e31d2d;
    color: white !important;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    font-size: 14px;
}

.btn-loc:hover { background-color: #b01521; }

/* Responsividade Header */
@media (max-width: 992px) {
    .header-nav { display: none; }
    .header-logo img { height: 55px !important; }
}

/* ============================================================
   3. HERO (BANNER PRINCIPAL)
   ============================================================ */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url("Shineray_geral.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Botões do Hero */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-filled, .btn-filled:visited {
    background-color: #e31d2d !important;
    color: #ffffff !important;
    border: 2px solid #e31d2d !important;
    padding: 12px 28px;
}

.btn-filled:hover {
    background-color: #b01521 !important;
    border-color: #b01521 !important;
}

.btn-outline, .btn-outline:visited {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

/* Responsividade Hero */
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; gap: 15px; }
}

/* ============================================================
   4. SEÇÃO MODELOS
   ============================================================ */
.modelos {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.titulo-destaque {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitulo-modelos {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.grid-modelos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

/* Cards de Modelos */
.card-quadrado {
    background-color: #111d2b;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #1c2a3a;
    display: flex;
    flex-direction: column;
}

.card-topo {
    width: 100%;
    height: 250px;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-topo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-corpo {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-corpo h3 { color: #ffffff; font-size: 1.5rem; margin-bottom: 15px; }
.card-corpo p { color: #cccccc; font-size: 1rem; line-height: 1.6; margin-bottom: 20px; }

.card-quadrado:hover {
    transform: translateY(-10px);
    border-color: #e31d2d;
}

/* Botão WhatsApp Card */
.btn-whatsapp-center {
    display: inline-block;
    background-color: #e31d2d;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    transition: background 0.3s;
}

/* Responsividade Modelos */
@media (max-width: 768px) {
    .grid-modelos { flex-direction: column; align-items: center; gap: 25px; }
    .card-quadrado { width: 350px; min-height: 500px; }
}

/* ============================================================
   5. SEÇÃO EMPRESA (SOBRE)
   ============================================================ */
.empresa {
    padding: 80px 0;
    background-color: #0a0f1a;
}

.titulo-secao {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 50px;
}

.empresa-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.empresa-texto { flex: 1; color: #ffffff; font-size: 18px; line-height: 1.8; }
.empresa-texto p { margin-bottom: 20px; }
.empresa-texto strong { color: #e31d2d; }
.aviso { font-size: 14px; color: #b3b3b3; margin-top: 15px; }

.empresa-imagem { flex: 1; }
.empresa-imagem img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

/* Responsividade Empresa */
@media (max-width: 768px) {
    .empresa-conteudo { flex-direction: column !important; padding: 0 10px; }
    .empresa-texto { width: 100% !important; flex: none !important; }
    .empresa-imagem { width: 100% !important; order: 2; }
}

/* ============================================================
   6. SEÇÃO VANTAGENS
   ============================================================ */
.secao-vantagens {
    background-color: #0a0f1a;
    padding: 60px 0;
}

.container-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   flex-wrap: wrap;
}

.card-vantagem {
    background-color: #111d2b;
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-vantagem:hover { border-color: #e31d2d; transform: translateY(-5px); }
.card-vantagem i { color: #e31d2d; font-size: 2.5rem; margin-bottom: 20px; display: block; }
.card-vantagem h3 { color: #ffffff; font-size: 1.4rem; margin-bottom: 12px; font-weight: bold; }
.card-vantagem p { color: #b3b3b3; font-size: 1rem; line-height: 1.5; }

/* Responsividade Vantagens */
@media (max-width: 768px) {
    .container-cards { flex-direction: column; align-items: center; gap: 20px; }
    .card-vantagem { width: 100% !important; max-width: 400px; padding: 25px; }
}

/* ============================================================
   7. SEÇÃO CONTATO E MAPA
   ============================================================ */
.contato { background: white; padding: 80px 0; }
.titulo-contato { text-align: center; font-size: 40px; margin-bottom: 10px; }
.subtitulo-contato { text-align: center; color: #666; margin-bottom: 50px; }

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Caixas de Texto Contato */
.box-contato {
    background: #0b1f3a;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.box-contato div h3 { margin-bottom: 5px; font-size: 18px; font-weight: bold; }
.box-contato div p { font-size: 14px; color: #ccc; line-height: 1.5; }
.box-contato a { color: white; text-decoration: none; }

/* Coluna do Mapa */
.mapa-coluna { display: flex; flex-direction: column; gap: 15px; }
.mapa-box iframe { width: 100%; border-radius: 10px; }

/* Botão Avaliações */
.btn-avaliacoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #e31d2d;
    color: white !important;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 100%;
    font-size: 16px;
}

.btn-avaliacoes i { color: #ffc107; }

/* Responsividade Contato */
@media (max-width: 768px) {
    .contato-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   8. RODAPÉ (FOOTER)
   ============================================================ */
.footer-site {
    background-color: #0b1f3a;
    color: #ffffff;
    padding: 70px 0 30px 0;
    width: 100%;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col { flex: 1; padding: 0 15px; }

.footer-logo {
    width: 100%;
    max-width: 300px; 
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.footer-desc { color: #b3b3b3; font-size: 0.9rem; line-height: 1.5; }
.footer-col h3.footer-titulo { font-size: 1.2rem; margin-bottom: 30px; color: #ffffff; font-weight: bold; text-transform: uppercase; }

/* Links Footer */
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col a { color: #b3b3b3; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: #e31d2d; }

/* Contato Footer */
.contact-info p {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b3b3b3;
    font-size: 0.95rem;
}

.contact-info i { color: #e31d2d; font-size: 1.1rem; margin-top: 3px; }

/* Redes Sociais Footer */
.social-icons { display: flex; gap: 15px; }
.social-icons a {
    background: #1a1a1a;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover { background: #e31d2d; transform: translateY(-3px); }

/* Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { color: #777; font-size: 0.85rem; }

/* Responsividade Footer */
@media (max-width: 768px) {
    .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
    .footer-col { width: 100%; padding: 0; }
    .social-icons, .contact-info p { justify-content: center; }
   .footer-logo {margin: 0 auto 25px auto !important; /}
}

/* ============================================================
   9. ELEMENTOS ADICIONAIS E AUXILIARES
   ============================================================ */
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    background: #e60023;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover { background: #1ebe5d; }

input, textarea { margin-bottom: 10px; padding: 10px; border: 1px solid #ccc; }
button { background: #e60023; color: white; border: none; padding: 12px; cursor: pointer; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP (FIXO)
   ============================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000; /* Número alto para ficar na frente de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite; /* Faz o botão pulsar */
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Animação de Pulso */
@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 30px;
    }
}
