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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 100vh;
    padding: 0;
    color: #1565c0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(25, 118, 210, 0.1);
}

/* Header nav */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(25, 118, 210, 0.08);
}

.site-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0d47a1;
}

.site-nav a {
    color: #1565c0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 16px;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: #0d47a1;
}



/* Header com foto de fundo */
.header-bg {
    width: 100%;
    height: 280px;
    background: url('imagens/r7x3q.jpg') center center / cover no-repeat;
    position: relative;
}

.header-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: none;
}

/* Botões */
.services {
    padding: 15px 25px 25px;
}

.service-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 50%, #0d47a1 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
}

.service-btn:active { transform: translateY(0); }

/* Título de seção */
.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 18px;
}

/* Benefícios */
.benefits {
    padding: 25px 25px 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit-item {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(25, 118, 210, 0.06);
}

.benefit-icon {
    color: #1976d2;
    margin-bottom: 8px;
}

.benefit-item strong {
    display: block;
    font-size: 0.85rem;
    color: #0d47a1;
    margin-bottom: 4px;
}

.benefit-item span {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

/* FAQ */
.faq-section {
    padding: 25px 25px;
}

.faq-item {
    background: #f8fbff;
    border: 1px solid rgba(25, 118, 210, 0.08);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d47a1;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 700;
    color: #1976d2;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 18px 14px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* Urgency */
.urgency {
    text-align: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
    margin: 0 25px 25px;
    border-radius: 12px;
    border-left: 3px solid #0288d1;
}

.urgency .confidence {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d47a1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: #e3f2fd;
    padding: 25px 20px 20px;
    margin-top: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 18px;
}

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

.footer-col strong {
    font-size: 0.8rem;
    color: white;
    margin-bottom: 4px;
}

.footer-col a, .footer-col span {
    font-size: 0.72rem;
    color: #bbdefb;
    text-decoration: none;
    line-height: 1.4;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 14px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a237e;
    color: white;
    padding: 16px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
}

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

.cookie-buttons button {
    padding: 8px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    background: #1976d2;
    color: white;
    transition: background 0.2s;
}

.cookie-buttons button:hover { background: #1565c0; }

.cookie-buttons .cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

.cookie-buttons .cookie-reject:hover {
    border-color: rgba(255,255,255,0.6);
    color: white;
}

/* Modal para subpáginas */
.page-content {
    padding: 30px 25px;
    line-height: 1.7;
    font-size: 0.9rem;
    color: #333;
}
.page-content h1 { color: #0d47a1; font-size: 1.5rem; margin-bottom: 20px; }
.page-content h2 { color: #1565c0; font-size: 1.1rem; margin: 20px 0 10px; }
.page-content p, .page-content li { margin-bottom: 10px; }
.page-content ul { margin-left: 20px; }
.back-link { display: inline-block; margin: 20px 25px; color: #1565c0; text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.back-link:hover { text-decoration: underline; }
.contact-item { background: #f0f7ff; padding: 16px 20px; border-radius: 10px; margin-bottom: 12px; border-left: 3px solid #1565c0; }
.contact-item strong { color: #0d47a1; }

/* Acessibilidade */
a:focus-visible, button:focus-visible { outline: 2px solid #1976d2; outline-offset: 2px; }

/* Responsivo */
@media (max-width: 480px) {
    .header-bg { height: 220px; }
    .services { padding: 25px 20px; }
    .service-btn { font-size: 0.95rem; padding: 15px 18px; }
    .benefits { padding: 20px 20px 10px; }
    .benefits-grid { gap: 8px; }
    .benefit-item { padding: 12px 10px; }
    .faq-section { padding: 20px 20px; }
    .urgency { margin: 0 20px 20px; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 15px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    .footer-columns { grid-template-columns: 1fr; gap: 16px; text-align: center; }
}

@media (max-width: 360px) {
    .service-btn { font-size: 0.9rem; padding: 14px 16px; }
    .benefits-grid { grid-template-columns: 1fr; }
}
