@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700;900&display=swap');

/* --- VARIÁVEIS DE CORES (NOVAS) --- */
:root {
    --primary-red: #f71612; /* Vermelho da logo RM - mais vibrante */
    --dark-red: #A82522;    /* Um vermelho mais escuro para hover */
    --light-gray: #f7f7f7;
    --dark-text: #333;
    --white: #fff;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ESTILOS GERAIS --- */
h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 30px;
    text-align: center;
}

h3 { 
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

p {
    margin-bottom: 15px; 
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

section {
    padding: 60px 0;
}


/* --- BOTÕES (CTA PRINCIPAL) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #25D366; 
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn i {
    margin-right: 10px;
    font-size: 1.4rem;
}


/* --- SEÇÃO HERO (Full Screen e Imagem de Fundo) --- */
.hero {
    background-image: url('images/banner.webp'); 
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed; 
    min-height: 100vh; 
    padding: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    text-align: center; 
}

.hero-content {
    max-width: 650px; 
    background-color: rgba(255, 255, 255, 0.85); 
    margin: 0 auto;
    padding: 30px; 
    border-radius: 15px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
}

/* Header flutuante */
.header-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10; 
}

/* Logo */
.header-overlay .logo img {
    height: 250px; 
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6)); 
}

/* Botão FALE CONOSCO */
.btn-header {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); 
}

.btn-header:hover {
    background-color: var(--dark-red);
}


/* --- SEÇÃO CONFIANÇA (SOLUÇÕES) --- */
.confidence-section {
    text-align: center;
    background-color: var(--white);
}

.solutions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0;
}

.solutions-list li {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.solutions-list li:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-red); 
}

.solutions-list i {
    color: var(--primary-red); 
    margin-bottom: 15px;
    font-size: 2.5rem;
    display: block;
}

.solutions-list h3 {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solutions-list p {
    font-size: 0.95rem;
    color: #555;
}

.micro-cta {
    font-style: italic;
    font-weight: 700;
    color: #777;
    margin-top: 30px;
}


/* --- SEÇÃO DEMONSTRAÇÃO VISUAL --- */
.demonstration-section {
    background-color: var(--light-gray);
    text-align: center;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.visual-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; 
}

.visual-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.visual-item img {
    width: 100%;
    height: 220px; 
    object-fit: cover; 
    border-bottom: 5px solid var(--primary-red); 
}

.visual-item h3 {
    color: var(--dark-text);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 20px 10px;
}

.visual-item p {
    font-size: 0.95rem;
    color: #555;
    padding: 0 20px 20px;
}


/* --- SEÇÃO CTA FINAL --- */
.final-cta-section {
    background-color: var(--primary-red); 
    color: var(--white);
    text-align: center;
    padding: 60px 0 80px;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.final-cta {
    font-size: 1.3rem;
}

.contact-info {
    font-size: 1rem !important;
    margin-top: 30px !important;
    opacity: 0.8;
}


/* --- SEÇÃO SOBRE NÓS (Banner de Fundo) --- */
.about-section {
    padding: 0; 
    background-image: url('images/banner.webp');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed; 
    min-height: 50vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content-box {
    max-width: 800px; 
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
    text-align: left;
    margin: 40px auto; 
}

.about-content-box h2 {
    text-align: center; 
    margin-bottom: 25px;
}

.about-content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}


/* --- FOOTER --- */
.footer {
    background-color: var(--dark-text); 
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer p {
    margin: 5px 0;
    color: #ccc;
}

.footer a {
    color: var(--primary-red);
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}


/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; 
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* --- RESPONSIVIDADE (Celulares e Tablets) --- */
@media (max-width: 768px) {

    /* 🔹 HERO - CONTEÚDO MAIS PARA O TOPO */
    .hero { 
        background-image: url('images/banner-mobile.webp');
        background-position: center top; 
        background-attachment: scroll;
        min-height: 85vh; 
        padding-top: 0; /* 🔺 Remove o espaço superior */
        padding-bottom: 20px; 
        display: flex;
        align-items: flex-start; /* 🔺 Força o conteúdo a subir */
    }

    /* 🔹 Caixa branca um pouco mais alta no topo */
    .hero-content {
        background-color: rgba(255, 255, 255, 0.7); 
        padding: 10px 15px; 
        margin: 130px 10px 0; /* 🔺 Move o conteúdo mais para cima (reduzido o espaçamento inferior) */
        border-radius: 6px; 
        max-width: 90%;
    }

    /* 🔹 Tipografia e espaçamentos */
    h1 { 
        font-size: 1.5rem; 
        margin-bottom: 5px; 
    }
    
    .subtitle { 
        font-size: 0.95rem; 
        margin-bottom: 10px; 
    }

    h3 {
        font-size: 1rem; 
        margin-bottom: 10px !important; 
        margin-top: 5px; 
    }
    
    /* 🔹 Botão de CTA menor */
    .btn-primary.btn-cta {
        font-size: 0.9rem; 
        padding: 8px 18px;
    }
    
    /* 🔹 Cabeçalho Compacto */


}
