/* ============================================================
   ADMINISTRAÇÃO DE CONDOMÍNIOS — PALETA MELHORADA
   ============================================================ */

/* PALETA CORRIGIDA - Textos LEGÍVEIS no azul */
:root {
    --primary:      #1e3a5f;    /* Azul escuro suave */
    --primary-dark: #0f1e3a;    /* Azul mais escuro */
    --accent:       #f59e0b;    /* Laranja dourado claro */
    --success:      #10b981;    /* Verde sucesso */
    --danger:       #ef4444;    /* Vermelho */
    --white:        #ffffff;
    --light:        #f8fafc;
    --gray-light:   #f1f5f9;
    --gray:         #64748b;
    --gray-dark:    #334155;
    --shadow:       0 10px 25px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
}

/* ============================================================
   HERO - MELHORADO
   ============================================================ */
.administracao-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1e3a 100%);
    position: relative;
    color: var(--white);
    padding: 140px 0 100px;
}

.administracao-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner-administracao.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.administracao-hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.administracao-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões */
.btn-hero-primary, .btn-cta-whatsapp {
    background: var(--success);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.btn-hero-primary:hover, .btn-cta-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16,185,129,0.4);
}

.btn-hero-secondary {
    color: var(--white);
    padding: 16px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   PROBLEMA/SOLUÇÃO - SIMPLIFICADO
   ============================================================ */
.problem-solution-section {
    padding: 90px 20px;
    background: var(--light);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ps-grid { grid-template-columns: 1fr 1fr; }
}

.ps-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ps-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.problem-card::before { background: var(--danger); }
.solution-card::before { background: var(--success); }

.ps-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.problem-card .ps-icon { color: var(--danger); }
.solution-card .ps-icon { color: var(--success); }

.ps-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.ps-card p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.ps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.ps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.ps-list i {
    font-size: 1.1rem;
    width: 20px;
}

.problem-card .ps-list i { color: var(--danger); }
.solution-card .ps-list i { color: var(--success); }

.ps-warning {
    background: rgba(239,68,68,0.08);
    border-left: 5px solid var(--danger);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ============================================================
   PILARES - SIMPLIFICADO E LIMPO
   ============================================================ */
.pilares-section {
    padding: 90px 20px;
    background: var(--white);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pilares-grid { grid-template-columns: repeat(4, 1fr); }
}

.pilar-card {
    background: var(--white);
    border: 2px solid #f1f5f9;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pilar-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pilar-icon {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pilar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.pilar-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.98rem;
}

/* ============================================================
   VENDAS - SUPER SIMPLES
   ============================================================ */
.vendas-section {
    padding: 90px 20px;
    background: var(--gray-light);
}

.vendas-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vendas-benefits {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .vendas-benefits { grid-template-columns: 1fr 1fr; }
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-item i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item > div {
    flex: 1;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   CTA - LIMPO
   ============================================================ */
.sales-cta-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.sales-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .sales-grid { grid-template-columns: 1fr 380px; }
}

.cta-box-inner {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.cta-box-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.cta-box-inner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box-inner > p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-support-text {
    opacity: 0.7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* RESPONSIVO GERAL */
@media (max-width: 768px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; min-width: 280px; }
    
    .ps-card { padding: 40px 25px; }
    .pilares-grid { grid-template-columns: 1fr; }
}
