* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5530;
    --secondary-color: #4a7c59;
    --accent-color: #6ba86f;
    --text-color: #333;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: inherit;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover .nav-icon {
    color: var(--primary-color);
}

/* Bottom Nav (mobile - estilo app) */
.nav-bottom {
    display: none;
}

.nav-phone {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-trigger::after {
    content: "▾";
    font-size: 0.7rem;
    opacity: 0.8;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25rem;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
    margin: 0 4px;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Menu mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 3rem 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.7) 0%, rgba(74, 124, 89, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.hero-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form .form-group label,
.hero-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.phone-input select {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 0.65rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--white);
}

.phone-input input {
    flex: 1;
    min-width: 0;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: max-content;
}

.radio-option input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.form-group-radio .form-label {
    margin-bottom: 0.5rem;
}

.form-group-radio .radio-group {
    margin-top: 0.25rem;
}

.btn-hero-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-hero-submit:hover {
    background: var(--secondary-color);
}

.hero-form-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.hero-form-message.success {
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
}

.hero-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border-radius: 6px;
}

.hero-text-block {
    padding: 0 0.5rem;
}

.hero-text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-hero-saiba {
    text-decoration: none;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Sections */
section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-header .section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

section p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.section-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.section-text p {
    text-align: justify;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: justify;
}

.section-header-light h2,
.section-header-light .section-line {
    color: var(--white);
}

.section-line-light {
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Decoração de seção */
.section-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.06;
}

.section-deco-leaf {
    top: 2rem;
    right: 5%;
    width: 120px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%232c5530'%3E%3Cpath d='M32 4c-8 12-20 28-20 40 0 11 9 20 20 20s20-9 20-20c0-12-12-28-20-40z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.sobre {
    background: var(--white);
    position: relative;
}

.sobre .container {
    max-width: 900px;
}

/* Certificadora */
.certificadora {
    position: relative;
    background: var(--bg-light) url("banner2.png") center center no-repeat;
    background-size: cover;
    background-attachment: local;
}

.certificadora::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.certificadora .container {
    position: relative;
    z-index: 1;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.beneficio-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 3px solid var(--primary-color);
    text-align: justify;
    position: relative;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card-icon-servico {
    color: var(--secondary-color);
}

.card-icon-vantagem {
    color: var(--primary-color);
}

.card-icon-impacto {
    color: var(--accent-color);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.beneficio-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
    margin-top: 0;
}

.beneficio-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Serviços */
.servicos {
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servico-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: justify;
    position: relative;
}

.servico-card .card-icon-servico {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.servico-card h3 {
    margin-top: 0;
}

.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.servico-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.servico-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Vantagens */
.vantagens {
    background: var(--bg-light);
}

.vantagens .intro {
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vantagem-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.vantagem-card .card-icon-vantagem {
    margin: 0 auto 1rem;
}

.vantagem-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.vantagem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Consulta Pública */
.consulta-publica {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.consulta-publica-icon {
    position: absolute;
    top: 2rem;
    right: 8%;
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.consulta-publica-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.consulta-publica .section-header h2,
.consulta-publica h2 {
    color: var(--white);
}

.consulta-publica p {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    text-align: justify;
}

/* Impactos - fundo animado */
.impactos {
    position: relative;
    overflow: hidden;
    background: #e8f0e9;
}

.impactos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.impactos-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 85, 48, 0.12) 0%,
        rgba(107, 168, 111, 0.08) 25%,
        rgba(232, 240, 233, 0.95) 50%,
        rgba(74, 124, 89, 0.1) 75%,
        rgba(44, 85, 48, 0.15) 100%
    );
    background-size: 400% 400%;
    animation: impactosGradient 18s ease infinite;
}

@keyframes impactosGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.impactos-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.impactos-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 124, 89, 0.08);
    animation: impactosFloat 20s ease-in-out infinite;
}

.impactos-bg-shapes .shape-1 { width: 280px; height: 280px; top: -80px; right: -60px; animation-delay: 0s; }
.impactos-bg-shapes .shape-2 { width: 180px; height: 180px; bottom: 10%; left: -40px; animation-delay: -4s; animation-duration: 22s; }
.impactos-bg-shapes .shape-3 { width: 120px; height: 120px; top: 40%; right: 15%; animation-delay: -8s; animation-duration: 16s; }
.impactos-bg-shapes .shape-4 { width: 200px; height: 200px; bottom: -50px; right: 20%; animation-delay: -2s; animation-duration: 24s; }
.impactos-bg-shapes .shape-5 { width: 90px; height: 90px; top: 20%; left: 25%; animation-delay: -6s; animation-duration: 18s; }
.impactos-bg-shapes .shape-6 { width: 150px; height: 150px; top: 60%; left: 10%; animation-delay: -10s; animation-duration: 20s; }

@keyframes impactosFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(15px, -20px) scale(1.05); opacity: 0.8; }
    66% { transform: translate(-10px, 15px) scale(0.95); opacity: 0.5; }
}

.impactos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
    z-index: 1;
}

.impactos .container {
    position: relative;
    z-index: 2;
}

.impactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impacto-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: var(--radius-lg);
    text-align: justify;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.impacto-card .card-icon-impacto {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.impacto-card h3 {
    margin-top: 0;
}

.impacto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.impacto-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.impacto-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Contato */
.contato {
    background: var(--bg-light);
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contato-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.info-icon {
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.info-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
    text-align: justify;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contato-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.footer-links {
    margin-bottom: 0.25rem;
}

.footer-sep {
    margin: 0 0.5rem;
    opacity: 0.8;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

.section-cta .btn-secondary {
    text-decoration: none;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition);
}

.card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.impacto-card .card-link {
    margin-top: 1.25rem;
}

/* Dúvidas */
.duvidas {
    background: var(--bg-light);
}

.duvidas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.duvidas-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.duvidas-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.duvidas-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.duvidas-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.duvidas-card .card-link {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .nav {
        display: none;
    }

    .nav-overlay {
        display: none !important;
    }

    .header .container {
        justify-content: center;
    }

    .logo {
        margin: 0;
    }

    body {
        padding-bottom: 72px;
    }

    .nav-bottom {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        padding-bottom: env(safe-area-inset-bottom, 0);
        background: var(--white);
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        align-items: center;
        justify-content: space-around;
    }

    .nav-bottom-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.5rem 0.25rem;
        text-decoration: none;
        color: var(--text-light);
        font-size: 0.7rem;
        font-weight: 500;
        transition: color var(--transition);
        min-width: 0;
    }

    .nav-bottom-item:hover,
    .nav-bottom-item:active {
        color: var(--primary-color);
    }

    .nav-bottom-item.nav-bottom-active {
        color: var(--primary-color);
    }

    .nav-bottom-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav-bottom-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

    .nav-bottom-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text-block {
        text-align: center;
    }

    .hero-text-block h2 {
        font-size: 1.9rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
    }

    .nav-overlay.is-visible {
        display: block;
    }

    .logo-img {
        height: 44px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-form-box {
        padding: 1.5rem;
    }

    .hero-form .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .hero-form .radio-option {
        min-width: 0;
    }

    .hero-text-block h2 {
        font-size: 1.65rem;
    }

    .hero-text-block p {
        font-size: 1rem;
    }

    .section-deco-leaf {
        width: 80px;
        height: 80px;
        right: 2%;
        opacity: 0.05;
    }

    .consulta-publica-icon {
        width: 48px;
        height: 48px;
        right: 5%;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .info-icon {
        width: 20px;
        height: 20px;
    }

    .info-item {
        padding-left: 2rem;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }

    .hero-text-block h2 {
        font-size: 1.65rem;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .hero-text-block p {
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
    }

    section {
        padding: 3rem 0;
    }

    .section-header h2,
    section h2 {
        font-size: 1.65rem;
    }

    .section-text {
        text-align: justify;
    }

    .section-text p {
        text-align: justify;
    }

    .beneficios-grid,
    .servicos-grid,
    .vantagens-grid,
    .impactos-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .beneficio-card,
    .servico-card,
    .vantagem-card,
    .impacto-card {
        padding: 1.5rem 1.5rem 1.75rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-width: 140px;
    }

    .hero-text-block h2 {
        font-size: 1.4rem;
    }
}

/* Página Consulta Pública */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.nav-active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-phone {
    color: var(--primary-color);
    font-weight: 600;
}

.consulta-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.consulta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.consulta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.consulta-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.consulta-conteudo {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.consulta-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: justify;
    font-size: 1.1rem;
    color: var(--text-light);
}

.pdf-wrapper {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 1rem;
}

.pdf-viewer {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pdf-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.btn-download {
    text-decoration: none;
}

.pdf-filename {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Seção Comentários - Consulta Pública */
.comentarios-consulta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.comentarios-titulo {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.comentarios-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 1.5rem;
}

.comentarios-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.comentarios-form .form-group {
    margin-bottom: 1rem;
}

.comentarios-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.comentarios-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .comentarios-form-grid {
        grid-template-columns: 1fr;
    }
}

.comentarios-form input,
.comentarios-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.comentarios-form textarea {
    min-height: 100px;
    resize: vertical;
}

.comentarios-msg {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.comentarios-msg.msg-ok {
    color: #155724;
}

.comentarios-msg.msg-erro {
    color: #721c24;
}

.comentarios-lista {
    margin-top: 1rem;
}

.comentarios-carregando,
.comentarios-vazio,
.comentarios-erro {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.comentario-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.comentario-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comentario-autor {
    font-size: 1rem;
    color: var(--primary-color);
}

.comentario-data {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comentario-texto {
    margin: 0 0 0.75rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.comentario-acoes {
    margin-top: 0.5rem;
}

.btn-curtir {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-light);
}

.btn-curtir:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-curtir.curtiu {
    border-color: #c82333;
    color: #c82333;
}

.btn-curtir .curtir-icone {
    font-size: 1rem;
}

/* Página Dúvidas / Perguntas Frequentes */
.duvidas-conteudo {
    padding: 3rem 0 4rem;
}

.duvidas-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: justify;
    font-size: 1.05rem;
    color: var(--text-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.faq-answer p {
    margin: 0 0 0.75rem;
    text-align: justify;
}

.faq-answer ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 0.35rem;
}

.faq-refs {
    list-style: none;
    margin-left: 0;
}

.faq-refs li {
    margin-bottom: 0.6rem;
}

.faq-refs a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-refs a:hover {
    text-decoration: underline;
}

.duvidas-cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.duvidas-cta p {
    margin: 0 0 1rem;
    color: var(--text-light);
}

.duvidas-cta .btn-primary {
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }
}

/* Página Vídeos Explicativos */
.videos-conteudo {
    padding: 3rem 0 4rem;
}

.video-block {
    margin-bottom: 2.5rem;
}

.video-block:last-of-type {
    margin-bottom: 0;
}

.video-block-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-weight: 700;
}

.video-wrapper {
    margin-bottom: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.video-player {
    width: 100%;
    display: block;
    max-height: 70vh;
}

.video-block-text {
    max-width: 900px;
    margin: 0;
}

.video-block-text p {
    margin-bottom: 1rem;
    text-align: justify;
}

.video-block-text p:last-child {
    margin-bottom: 0;
}

.video-block-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2.5rem 0;
}

.videos-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.videos-cta h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.videos-cta p {
    margin: 0 0 1.25rem;
    color: var(--text-light);
}

.videos-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.videos-cta-buttons .btn-primary,
.videos-cta-buttons .btn-secondary {
    text-decoration: none;
}

@media (max-width: 768px) {
    .consulta-banner h1 {
        font-size: 1.8rem;
    }

    .consulta-banner {
        min-height: 200px;
    }

    .pdf-viewer {
        min-height: 400px;
    }

    .nav-phone {
        display: none;
    }

    .video-block-title {
        font-size: 1.3rem;
    }

    .videos-cta-buttons {
        flex-direction: column;
    }

    .videos-cta-buttons .btn-primary,
    .videos-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
