/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
a {
    text-decoration: none;
    transition: 0.3s;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img.logo-prime {
    height: 50px;
    transition: transform 0.3s ease;
}
.logo img.logo-prime:hover {
    transform: scale(1.1);
}
.menu ul {
    display: flex;
    list-style: none;
}
.menu ul li {
    margin: 0 15px;
}
.menu ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.menu ul li a:hover {
    color: #D32F2F;
}
.btn-whatsapp-top {
    background: #D32F2F;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.6);
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-whatsapp-top:hover {
    background: #fff;
    color: #D32F2F;
    box-shadow: 0 6px 15px rgba(211, 47, 47, 0.8);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7));
}
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.badge {
    background: #D32F2F;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.8);
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.8);
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #D32F2F;
    color: #fff;
    padding: 18px 35px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.7);
    transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.9);
}
.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-secondary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.9);
}

/* Sobre */
.sobre {
    padding: 100px 0;
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 60px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
}
.line {
    width: 60px;
    height: 4px;
    background: #D32F2F;
    margin: 15px auto;
}
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}
.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-left: 5px solid #D32F2F;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.feature-card:hover {
    transform: translateX(10px);
    background: #000;
    color: #fff;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.8);
}
.feature-card i {
    font-size: 2rem;
    color: #D32F2F;
    margin-bottom: 15px;
}
.feature-card h3 {
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Logo centralizada e arredondada dentro do texto Quem Somos */
.logo-center-container {
    text-align: center;
    margin: 20px 0;
}
.sobre-logo-centered {
    max-width: 180px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(211, 47, 47, 0.3);
    display: inline-block;
}

/* Como Funciona - Unificado com o padrÃ£o Pronto para Acelerar */
.como-funciona { 
    padding: 100px 0; 
    background: linear-gradient(45deg, #000, #1a1a1a); 
    text-align: center; 
    border-top: 1px solid #333; 
    border-bottom: 1px solid #333; 
    margin-bottom: 0;
}
.como-funciona .section-header h2 { 
    color: #fff; 
    font-size: 2.5rem; 
    text-transform: uppercase; 
    font-weight: 800;
    margin-bottom: 20px;
}
.como-funciona .line { 
    background: #D32F2F; 
    margin: 0 auto 40px; 
    width: 60px; 
    height: 4px; 
}
.steps { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
}
.step { 
    background: rgba(255, 255, 255, 0.03); 
    padding: 40px 30px; 
    border-radius: 4px; 
    flex: 0 1 350px; 
    text-align: center; 
    transition: all 0.3s ease; 
    border: 1px solid #333;
}
.step i { 
    font-size: 2.5rem; 
    color: #D32F2F; 
    margin-bottom: 20px; 
}
.step h3 { 
    color: #fff; 
    font-weight: 700; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    font-size: 1.2rem;
}
.step p { 
    color: #ccc; 
    font-size: 1rem; 
    line-height: 1.6; 
}
.step:hover { 
    background: rgba(211, 47, 47, 0.05);
    border-color: #D32F2F;
    transform: translateY(-5px);
}

/* CTA Middle */
.cta-middle {
    padding: 80px 0;
    background: linear-gradient(45deg, #000, #1a1a1a);
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.cta-middle h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cta-middle p {
    margin-bottom: 40px;
    color: #ccc;
}

/* Testemunhos */
.testemunhos {
    padding: 100px 0;
    background: #f9f9f9;
    color: #000;
}
.testemunhos .section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.testemunhos .line {
    width: 60px;
    height: 4px;
    background: #D32F2F;
    margin: 0 auto 40px;
}
.depoimentos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.depoimento {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 10px;
    font-style: italic;
    transition: box-shadow 0.3s ease;
}
.depoimento:hover {
    box-shadow: 0 0 25px rgba(211, 47, 47, 0.8);
}
.depoimento span {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    text-align: right;
    color: #D32F2F;
}

/* FAQ Premium */
.faq { padding: 100px 0; background: #fff; color: #000; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.faq-card { background: #fdfdfd; padding: 30px; border-radius: 8px; border: 1px solid #eee; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.faq-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(211,47,47,0.1); border-color: #D32F2F; }
.faq-question { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.faq-question i { color: #D32F2F; font-size: 1.2rem; }
.faq-question h3 { font-size: 1.1rem; font-weight: 700; text-transform: none; color: #000; }
.faq-answer p { font-size: 0.95rem; color: #555; line-height: 1.6; }
.faq-card.highlight { border-left: 4px solid #D32F2F; background: #fffafa; }
.faq-card.highlight a { color: #D32F2F; font-weight: 800; text-decoration: none; }
.faq-card.highlight a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* Contactos */
.contactos {
    padding: 100px 0;
    background: #000;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 1.5rem;
    color: #D32F2F;
    margin-right: 20px;
    width: 30px;
}
.contact-form-container {
    background: #111;
    padding: 40px;
    border-radius: 8px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}
.contact-form textarea {
    height: 120px;
}

/* Footer - Corre«®«ªo de Alinhamento */
.footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
}
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Cria 3 colunas exatamente iguais */
    gap: 30px;
    align-items: start;
}

.footer-logo {
    text-align: left;
}
.footer-logo h3 {
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer-logo span { color: #D32F2F; }
.footer-logo p { color: #ccc; font-size: 0.95rem; margin-bottom: 8px; }
.footer-logo a { color: #D32F2F; font-weight: 600; text-decoration: none; }

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Centraliza a coluna do meio (Links R«¡pidos) */
.footer-column.center {
    text-align: center;
    align-items: center;
}

/* Alinha a «âltima coluna «¢ direita (Informa«®«Øes) */
.footer-column.right {
    text-align: right;
    align-items: flex-end;
}

.footer-column h4 {
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1rem;
}
.footer-column a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}
.footer-column a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
    margin-top: 50px;
}

/* Ajuste Mobile para o Footer */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr; /* No mobile, fica uma coluna por baixo da outra */
        text-align: center;
        gap: 40px;
    }
    .footer-logo, .footer-column.center, .footer-column.right {
        text-align: center;
        align-items: center;
    }
}

/* Ajustes Globais de Texto para Mobile + hero menos agressivo */
@media (max-width: 768px) {
    html {
        font-size: 14px; /* Reduz a base para todo o site */
    }

    /* Hero mais responsivo em mobile */
    .hero {
        height: calc(var(--vh, 1vh) * 100);
        min-height: 70vh;
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2rem !important;
    }
    .hero p {
        font-size: 0.95rem !important;
    }

    .section-header h2 {
        font-size: 1.6rem !important;
    }
    .sobre-text p {
        font-size: 0.95rem !important;
    }
    .feature-card h3 {
        font-size: 1.05rem !important;
    }
    .feature-card p {
        font-size: 0.9rem !important;
    }
    .como-funciona .section-header h2 {
        font-size: 1.8rem !important;
    }
    .step h3 {
        font-size: 1.05rem !important;
    }
    .step p {
        font-size: 0.9rem !important;
    }
    .cta-middle h2 {
        font-size: 1.8rem !important;
    }
    .cta-middle p {
        font-size: 0.9rem !important;
    }
    .depoimento p {
        font-size: 0.9rem !important;
    }
    .faq-question h3 {
        font-size: 1rem !important;
    }
    .faq-answer p {
        font-size: 0.85rem !important;
    }
    .contact-info h2 {
        font-size: 1.6rem !important;
    }
    .info-item span {
        font-size: 0.9rem !important;
    }
    .footer-logo h3 {
        font-size: 1.4rem !important;
    }
    .footer-column h4 {
        font-size: 0.9rem !important;
    }
    .footer-column a {
        font-size: 0.85rem !important;
    }
    .menu {
        display: none;
    }
    .sobre-grid,
    .contact-grid,
    .depoimentos {
        grid-template-columns: 1fr;
    }
    .cta-buttons,
    .footer-content {
        flex-direction: column;
    }
}
/* Estilos do Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none; /* Controlado pelo JS */
    justify-content: center;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(20,20,20,0.6);
    transition: opacity 0.3s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

#accept-cookies-btn { background: #D32F2F; color: white; }
#decline-cookies-btn { background: #1F1F1F; color: white; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
}
.cookie-content a {
    color: #D32F2F;
    text-decoration: underline;
}
a[href^="tel:"],
a[href^="mailto:"] {
  color: #D32F2F !important;
  text-decoration: none; /* ou underline, se preferir */
  -webkit-text-fill-color: #FFFFFF !important; /* para Safari */
  -webkit-tap-highlight-color: transparent; /* remove destaque ao tocar */
}
/* Safari Phone/Email Color Fix */
a[href^="tel:"],
a[href^="mailto:"] {
    color: #D32F2F !important;
    text-decoration: none;
    -webkit-text-fill-color: #D32F2F !important;
    -webkit-tap-highlight-color: transparent;
}
