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

:root {
    --azul-alltora: #1d2d44;
    --vermelho-alltora: #c41b1b;
    /* Vermelho mais escuro para o hover, para dar efeito de profundidade */
    --vermelho-hover: #a01515;
    --cinza-texto: #475569;
    --bg-light: #f8fafc;
    --branco: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--azul-alltora);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* NAVBAR */
.navbar {
    padding: 15px 0;
    background: var(--branco);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.main-logo {
    height: 160px;
    width: auto;
    display: block;
    transition: 0.3s;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--azul-alltora);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.menu a:hover { color: var(--vermelho-alltora); }

/* Botão da Navbar - Outline Vermelho */
.btn-condomino {
    border: 2px solid var(--vermelho-alltora); /* Borda Vermelha */
    padding: 10px 20px;
    border-radius: 12px;
    color: var(--vermelho-alltora) !important; /* Texto Vermelho */
}

.btn-condomino:hover {
    background: var(--vermelho-alltora); /* Fundo Vermelho no hover */
    color: var(--branco) !important; /* Texto Branco no hover */
}

/* SEÇÕES GENÉRICAS */
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cinza-texto);
    margin-bottom: 15px;
}

.section-h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 700px;
}

/* HERO E PILL DE DESTAQUE */
.hero { padding: 80px 0; background: linear-gradient(to bottom right, #f8fafc, #ffffff); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.hero-text h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero-text p { font-size: 1.2rem; color: var(--cinza-texto); margin-bottom: 40px; }

.pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: rgba(196, 27, 27, 0.08); 
    border: 1px solid rgba(196, 27, 27, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    color: var(--vermelho-alltora);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ESTILOS DE BOTÕES ATUALIZADOS */
.btn { 
    padding: 16px 32px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s ease; 
    display: inline-block; 
    font-size: 15px;
}

/* Novo Botão Principal Vermelho */
.btn-red { 
    background: var(--vermelho-alltora); 
    color: var(--branco); 
    box-shadow: 0 4px 14px rgba(196, 27, 27, 0.3); /* Sombra vermelha sutil */
}
.btn-red:hover { 
    background: var(--vermelho-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(196, 27, 27, 0.4);
}

/* Botão Outline Vermelho sutil */
.btn-outline-red { 
    border: 2px solid rgba(196, 27, 27, 0.3); 
    color: var(--vermelho-alltora); 
}
.btn-outline-red:hover { 
    border-color: var(--vermelho-alltora); 
    background: rgba(196, 27, 27, 0.05);
}

.foco-card { background: var(--branco); padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid #f1f5f9; }

/* SERVIÇOS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 50px; }
.card { background: var(--branco); padding: 35px; border-radius: 24px; border: 1px solid #e2e8f0; transition: 0.3s; }
.card:hover { transform: translateY(-5px); border-color: var(--vermelho-alltora); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* DIFERENCIAIS */
.dark-section { background: #0f172a; color: var(--branco); }
.white-text { color: var(--branco); }
.diferenciais-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin-top: 50px; }
.diff-item { background: #1e293b; padding: 25px; border-radius: 20px; border: 1px solid #334155; font-weight: 500; }

/* FOOTER */
.footer { background: #0f172a; color: var(--branco); padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-card { background: #1e293b; padding: 40px; border-radius: 24px; }
.info-item { margin-bottom: 20px; }
.info-item label { display: block; font-size: 12px; color: #94a3b8; }
.info-item span { font-size: 18px; font-weight: 600; }

/* Ajuste específico para o botão do footer */
.btn-footer {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .main-logo { height: 120px; }
    .hero-text h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .header-flex { justify-content: center; flex-direction: column; gap: 15px; }
    .main-logo { height: 100px; }
    .menu { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero-grid, .grid-2, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .section-h2 { font-size: 1.8rem; margin: 0 auto 20px; }
    .hero-buttons { justify-content: center; }
}

@media (max-width: 480px) {
    .main-logo { height: 80px; }
    .hero-text h1 { font-size: 1.8rem; }
    .btn { width: 100%; text-align: center; }
}
