/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A378F;
    --primary-dark: #3CB44B;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --success-color: #059669;
    --warning-color: #d97706;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-accent: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2A378F 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,.05)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,.03)"/><circle cx="600" cy="700" r="120" fill="rgba(255,255,255,.04)"/></svg>') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-hero {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.vagas-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Problema Section */
.problema {
    padding: 5rem 0;
    background: var(--bg-light);
}

.problema-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problema-destaque {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.problema-detalhes {
    margin: 3rem 0;
    display: grid;
    gap: 2rem;
}

.problema-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.problema-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.problema-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.problema-impacto {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

/* Oportunidade Section */
.oportunidade {
    padding: 5rem 0;
    background: white;
}

.oportunidade-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.oportunidade-destaque {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.oportunidade-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.diferencial {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.diferencial:hover {
    transform: translateY(-2px);
}

.diferencial-icon {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.diferencial-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.oportunidade-resultado {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.oportunidade-resultado h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.oportunidade-resultado ul {
    list-style: none;
    padding: 0;
}

.oportunidade-resultado li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.oportunidade-resultado li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.oportunidade-urgencia {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent-color);
}

/* Publico Alvo Section */
.publico-alvo {
    padding: 5rem 0;
    background: var(--bg-light);
}

.publico-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.publico-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.publico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.publico-icon {
    background: var(--gradient-secondary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.publico-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Beneficios Section */
.beneficios {
    padding: 5rem 0;
    background: white;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.beneficio-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-2px);
}

.beneficio-icon {
    background: var(--gradient-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.beneficio-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Depoimentos Section */
.depoimentos {
    padding: 5rem 0;
    background: var(--bg-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.depoimento-texto {
    margin-bottom: 1.5rem;
    position: relative;
}

.depoimento-texto i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.depoimento-autor strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.depoimento-autor span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.clientes-logos {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.clientes-logos h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Historia Section */
.historia {
    padding: 5rem 0;
    background: white;
}

.historia-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.historia-timeline {
    display: grid;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-ano {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.historia-resultado {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.resultado-stats {
    display: grid;
    gap: 1.5rem;
}

.resultado-stat {
    text-align: center;
}

.resultado-numero {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.resultado-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Calculadora Section */
.calculadora {
    padding: 5rem 0;
    background: var(--bg-light);
}

.calculadora-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.calculadora-inputs {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.calculadora-inputs label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.calculadora-inputs input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.calculadora-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculadora-resultado {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.resultado-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.resultado-item.destacado {
    background: var(--gradient-secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

/* Comparacao Section */
.comparacao {
    padding: 5rem 0;
    background: white;
}

.comparacao-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparacao-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
}

.comparacao-col {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.comparacao-col.certificado {
    background: var(--gradient-secondary);
}

.comparacao-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparacao-row:last-child {
    border-bottom: none;
}

.comparacao-row .comparacao-col {
    padding: 1.5rem;
    text-align: center;
}

.comparacao-row .comparacao-col:first-child {
    background: var(--bg-light);
    color: var(--text-light);
}

.comparacao-row .comparacao-col.certificado {
    background: rgba(245, 158, 11, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-pergunta {
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-pergunta:hover {
    background-color: var(--bg-light);
}

.faq-pergunta h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-pergunta i {
    color: var(--primary-color);
}

.faq-resposta {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-resposta strong {
    color: var(--primary-color);
}

/* Futuro Section */
.futuro {
    padding: 5rem 0;
    background: white;
}

.futuro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.futuro-antes,
.futuro-depois {
    padding: 2rem;
    border-radius: 1rem;
}

.futuro-antes {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.futuro-depois {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-left: 4px solid var(--success-color);
}

.futuro-antes h3,
.futuro-depois h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.futuro-antes ul,
.futuro-depois ul {
    list-style: none;
    padding: 0;
}

.futuro-antes li,
.futuro-depois li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.futuro-antes li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.futuro-depois li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.urgencia-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.urgencia-box h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.urgencia-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.urgencia-box strong {
    color: var(--accent-color);
}

/* CTA Final Section */
.cta-final {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-header {
    margin-bottom: 3rem;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.cta-form-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-form {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.vagas-restantes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-garantia {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.form-garantia i {
    color: var(--success-color);
}

.cta-garantias {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.garantia-item i {
    color: var(--secondary-color);
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}
/* Footer */
.footer {
    background: #f0f0f0;
    color: rgb(51, 51, 51);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: #3CB44B;
    margin-bottom: 1rem;
}

.footer-info p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contato h4,
.footer-certificacoes h4 {
    margin-bottom: 1rem;
    color: #3CB44B;
}

.footer-contato p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.cert-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cert-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(175, 175, 175, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cert-logos a:hover {
    background: rgba(144, 144, 144, 0.2);
    transform: translateY(-2px);
}

.cert-logos span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #9d9d9d;
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .historia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculadora-content {
        grid-template-columns: 1fr;
    }
    
    .futuro-content {
        grid-template-columns: 1fr;
    }
    
    .comparacao-header,
    .comparacao-row {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-garantias {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .problema-item {
        flex-direction: column;
        text-align: center;
    }
    
    .diferencial {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error states */
.success {
    color: var(--success-color);
}

.error {
    color: var(--accent-color);
}