/* =========================================================================
   Brasilecopet - Estilos Globais e Landing Page
   Estilo: Moderno, Sustentável, Premium, Responsivo (Mobile-first)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #1b4332;          /* Verde Floresta Escuro */
    --primary-light: #2d6a4f;    /* Verde Folha Médio */
    --accent: #52b788;           /* Verde Esmeralda Vibrante */
    --accent-hover: #74c69d;     /* Verde Claro Hover */
    --dark: #081c15;             /* Preto Esverdeado */
    --light: #f4f9f6;            /* Branco Ecológico (Fundo) */
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --text-main: #1e293b;        /* Cinza Escuro Texto */
    --text-muted: #64748b;       /* Cinza Secundário */
    --success: #2ec4b6;          /* Verde Sucesso */
    --danger: #e63946;           /* Vermelho Erro */
    --shadow-sm: 0 2px 4px rgba(8, 28, 21, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(8, 28, 21, 0.08), 0 8px 10px -6px rgba(8, 28, 21, 0.08);
    --shadow-lg: 0 20px 45px -10px rgba(8, 28, 21, 0.12), 0 10px 18px -8px rgba(8, 28, 21, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Cabeçalho / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(244, 249, 246, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Seções Gerais */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-white {
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-badge {
    background-color: rgba(82, 183, 136, 0.15);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(82, 183, 136, 0.15) 0%, rgba(244, 249, 246, 0) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 183, 136, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid rgba(27, 67, 50, 0.2);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: rgba(27, 67, 50, 0.05);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.hero-badge-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent) 0%, rgba(82, 183, 136, 0.1) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.3;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(8, 28, 21, 0.15));
    border-radius: var(--border-radius-md);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.03);
}

/* Seção do Eco Calculadora */
.calc-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.calc-container h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.calc-input-box p {
    color: var(--gray-300);
    margin-bottom: 24px;
}

.calc-slider-wrapper {
    margin-bottom: 20px;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
}

.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.calc-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.calc-result-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* Seção de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(82, 183, 136, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(82, 183, 136, 0.15);
    color: var(--primary-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-text {
    color: var(--text-muted);
}

/* Linha do tempo: Como é feito */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--gray-200);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-badge {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 0 0 8px var(--white);
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-icon-toggle {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: rgba(82, 183, 136, 0.4);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 500px; /* Suficiente para a resposta */
}

/* Seção de Contato e Formulário */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.contact-info-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(82, 183, 136, 0.15);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: var(--text-muted);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
    background-color: var(--gray-100);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: flex-start;
}

.form-response {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    display: none;
}

.form-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Botão do WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Rodapé */
.footer {
    background-color: var(--dark);
    color: var(--gray-300);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-copy {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copy a {
    color: var(--accent);
}

.footer-copy a:hover {
    text-decoration: underline;
}

/* =========================================================================
   Área Administrativa (Estilos Específicos)
   ========================================================================= */

/* Tela de Login */
.login-body {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.login-title {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Dashboard Geral */
.admin-navbar {
    background-color: var(--primary);
    color: var(--white);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: var(--shadow-sm);
}

.admin-logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.admin-logo span {
    color: var(--accent);
}

.admin-nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

.admin-nav-link {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
}

.admin-nav-link.active, .admin-nav-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-logout {
    background-color: rgba(230, 57, 70, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(230, 57, 70, 0.4);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.btn-logout:hover {
    background-color: var(--danger);
    color: var(--white);
}

.admin-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Stats Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info h3 {
    font-size: 2.25rem;
    margin-bottom: 4px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.primary {
    background-color: rgba(45, 106, 79, 0.1);
    color: var(--primary);
}

.stat-icon.accent {
    background-color: rgba(82, 183, 136, 0.15);
    color: var(--accent);
}

.stat-icon.danger {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--danger);
}

/* Tabela de Leads */
.table-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th {
    background-color: var(--gray-100);
    color: var(--dark);
    padding: 16px 24px;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background-color: var(--gray-100);
}

.badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.badge-unread {
    background-color: rgba(82, 183, 136, 0.2);
    color: #1b4332;
}

.badge-read {
    background-color: var(--gray-200);
    color: var(--text-muted);
}

/* Modal Detalhes do Lead */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(8, 28, 21, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 650px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modal-enter 0.3s ease-out;
}

@keyframes modal-enter {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-grid-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
}

.info-block label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.info-block p {
    font-weight: 500;
    color: var(--dark);
}

.info-block-full {
    grid-column: span 2;
}

.msg-box {
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    white-space: pre-wrap;
    color: var(--text-main);
    margin-top: 8px;
}

.modal-footer {
    padding: 16px 24px;
    background-color: var(--gray-100);
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-danger {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--danger);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.btn-danger:hover {
    background-color: var(--danger);
    color: var(--white);
}

/* Configurações Form */
.admin-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-card-title {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

/* =========================================================================
   Responsividade (Media Queries)
   ========================================================================= */

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        margin: 0 auto 32px auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Em landing page simples, simplificaremos a navegação mobile */
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .calc-container {
        padding: 30px 20px;
    }
    
    .calc-number {
        font-size: 3rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .modal-grid-info {
        grid-template-columns: 1fr;
    }
    
    .info-block-full {
        grid-column: span 1;
    }
    
    .admin-navbar {
        padding: 0 16px;
    }
    
    .admin-nav-link {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}
