/* Design moderno inspirado em templates do Framer */

/* Fontes otimizadas - removido @import que bloqueia renderização */
/* As fontes agora são carregadas via preload no HTML */

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --surface: #ffffff;
    --surface-dark: #0f172a;
    --border: #e2e8f0;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

/* Tipografia */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Remove espaços entre seções */
section {
    margin: 0 !important;
    padding: 0;
}

/* Container sem margens */
.container {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
}

/* Reset global para remover espaços */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove qualquer espaço entre seções */
.newsletter-section + .companies-section {
    margin-top: -3px !important;
}

/* Navegação moderna - CORRIGIDA */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

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

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  position: relative;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: var(--dark-gradient);
    color: white;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

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

/* Profile container */
.profile-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Content Section */
.content-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
}

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

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

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Features Section */
.features-section {
    background: var(--surface);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-intro {
    display: flex;
    align-items: center;
}

.features-content {
    display: grid;
    gap: 2rem;
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(102, 126, 234, 0.6);
    margin-bottom: 0.5rem;
}

.feature-link {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-link:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

/* Modern Cards */
.modern-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Card com formulário - fundo escuro transparente */
.modern-card:has(.newsletter-form),
.modern-card:has(.modern-form) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-card:has(.newsletter-form) .card-title,
.modern-card:has(.modern-form) .card-title {
    color: white;
}

.modern-card:has(.newsletter-form) .card-text,
.modern-card:has(.modern-form) .card-text {
    color: rgba(255, 255, 255, 0.8);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Section Elements */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Companies Section */
.companies-section {
    background: var(--surface-dark);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.companies-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
}

.company-logo {
    height: 32px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    padding: 0.25rem;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--dark-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Profile Section */
.profile-section {
    background: var(--surface);
    padding: 6rem 0;
    text-align: center;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.profile-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Freedom Section */
.freedom-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.freedom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.freedom-section .container {
    position: relative;
    z-index: 2;
}

.freedom-content {
    max-width: 800px;
    margin: 0 auto;
}

.freedom-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.freedom-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.freedom-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.freedom-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.freedom-item .freedom-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
    color: white;
}

.freedom-highlight {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Newsletter Card */
.newsletter-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    text-align: center;
}

.newsletter-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.newsletter-subtitle {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Newsletter Card - Formulário com fundo branco */
.newsletter-card .form-control-modern {
    background: var(--surface);
    border: 2px solid var(--border);
    color: var(--text-dark);
    backdrop-filter: none;
}

.newsletter-card .form-control-modern::placeholder {
    color: var(--text-light);
}

.newsletter-card .form-control-modern:focus {
    border-color: var(--accent-blue);
    background: var(--surface);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
}

/* Newsletter Card - Texto informativo */
.newsletter-card .modern-form p {
    color: var(--text-light);
}

/* Newsletter Card - Formulário layout */
.newsletter-card .newsletter-form {
    margin-top: 2rem;
}

.newsletter-card .form-group {
    text-align: left;
}

.newsletter-card .form-group input {
    margin-bottom: 1rem;
}

.newsletter-card .btn-modern {
    margin-top: 0.5rem;
}

/* Form Styles */
.form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    outline: none;
}

/* Modern Form Styles */
.modern-form {
    width: 100%;
}

.form-control-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-control-modern::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-control-modern::-moz-placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-control-modern:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

.form-control-modern:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
}

.btn-modern {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

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

/* Texto informativo do formulário */
.modern-form p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.4;
}

/* Blog Post Page Styles */
.blog-nav {
    margin-bottom: 2rem;
}

.nav-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-back-link:hover {
    color: white;
    transform: translateX(-5px);
}

.blog-post {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    text-align: left;
}

.post-meta {
    margin-bottom: 2rem;
}

.post-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.post-content {
    color: white;
    line-height: 1.7;
    text-align: left;
}

.post-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.post-content h2::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c084fc;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content h3::before {
    content: "→ ";
    color: #6366f1;
    font-weight: bold;
}

.post-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    text-align: left;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.post-content strong {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: left;
}

.post-content blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.post-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.post-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    text-align: left;
}

.post-content pre code {
    background: none;
    padding: 0;
}

/* Estilos específicos para elementos markdown */
.post-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem 0;
}

.post-content blockquote p {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.post-content blockquote ul {
    margin: 0;
    padding-left: 1.5rem;
}

.post-content blockquote ul li {
    margin-bottom: 0.25rem;
    list-style-type: disc;
}

.post-content blockquote em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.post-content > ul {
    list-style-type: none;
    padding-left: 0;
}

.post-content > ul > li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content > ul > li::before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}





.post-content em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* Estilos para elementos de destaque */
.post-content .highlight {
    background: rgba(99, 102, 241, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #6366f1;
}

/* Estilos para seções de aviso */
.post-content h2:contains("Erros Comuns") {
    color: #f59e0b;
}

.post-content h2:contains("Conclusão") {
    color: #10b981;
}

/* Melhorar espaçamento entre seções */
.post-content h2 + blockquote {
    margin-top: 0.5rem;
}

.post-content h3 + blockquote {
    margin-top: 0.5rem;
}

/* Estilos para símbolos especiais */
.post-content h2:contains("🧭"),
.post-content h2:contains("⚠️"),
.post-content h2:contains("🗺️") {
    color: #fbbf24;
}

/* Estilos para listas numeradas */
.post-content ol {
    counter-reset: item;
    padding-left: 0;
}

.post-content ol > li {
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}

.post-content ol > li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    color: #6366f1;
    font-weight: bold;
}

/* Melhorias de acessibilidade para links */
a {
    position: relative;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration-color: currentColor;
}

/* Links de navegação específicos */
.nav-link {
    text-decoration: none !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Links em botões mantêm comportamento sem sublinhado */
.btn, .btn-primary, .btn-secondary, .btn-cta {
    text-decoration: none !important;
}

/* Skip Link para acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
    color: #fff;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.post-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-blog {
    max-width: 400px;
    margin: 0 auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Privacy & Terms Page Styles */
.privacy-updated,
.terms-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
    text-align: left;
}

.privacy-section h2,
.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: left;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
    text-align: left;
}

.privacy-section p,
.terms-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.privacy-list,
.terms-list {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.privacy-list li,
.terms-list li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: left;
}

/* Correção específica para o card das páginas legais */
.modern-card:has(.privacy-section),
.modern-card:has(.terms-section) {
    text-align: left;
}

.modern-card:has(.privacy-section) .privacy-updated,
.modern-card:has(.terms-section) .terms-updated {
    text-align: center;
}

/* Melhorias visuais para seções */
.privacy-section:not(:last-child),
.terms-section:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
}

.privacy-section:last-child,
.terms-section:last-child {
    margin-bottom: 0;
}

/* Destaque para títulos das seções */
.privacy-section h2:before,
.terms-section h2:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary-gradient);
    margin-right: 10px;
    border-radius: 2px;
    vertical-align: middle;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--secondary-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

/* Footer */
.footer {
    background: var(--surface-dark);
    color: white;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

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

/* Remover espaços em branco desnecessários */
section {
    margin: 0;
    padding: 0;
}

section + section {
    margin-top: 0;
}

/* Video Styles for Carreira Page */
.videos-grid {
    display: grid;
    gap: 4rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 400px;
}

.video-card-reverse .video-content {
    grid-template-columns: 1fr 1fr;
}

.video-card-reverse .video-container {
    order: 2;
}

.video-card-reverse .video-info {
    order: 1;
}

.video-container {
    position: relative;
    height: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-light);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.video-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.video-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.video-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-actions {
    margin-top: 1.5rem;
}

.video-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-actions .btn i {
    font-size: 0.9rem;
}

/* Cursos Page Styles */
.rating-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.rating-avatars {
    display: flex;
    gap: -0.5rem;
}

.rating-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

.rating-avatar:first-child {
    margin-left: 0;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-score {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
}

.mvp-badge {
    background: #fbbf24;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

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

.path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.path-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.path-features li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-header {
    padding: 2rem;
    color: white;
    position: relative;
}

.product-header-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-header-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.product-header-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.product-header-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.product-badge {
    background: #fbbf24;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.product-rating {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.product-content {
    padding: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.features-list li::before {
    content: '';
    flex-shrink: 0;
}

.product-btn {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

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

.comparison-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.comparison-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-green {
    color: #10b981;
}

.comparison-blue {
    color: #3b82f6;
}

.comparison-orange {
    color: #f59e0b;
}

.comparison-purple {
    color: #8b5cf6;
}

.comparison-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.comparison-features {
    list-style: none;
    padding: 0;
}

.comparison-features li {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.profile-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-image-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-details {
    text-align: left;
}

.profile-badge {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.skill-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.skill-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.skill-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.skill-yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
}

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

.testimonial-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-quote {
    color: var(--accent-blue);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-content {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #fbbf24;
}

.star {
    font-size: 1.1rem;
}

.cta-section {
    background: var(--primary-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-help {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

.cta-link {
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: white;
    opacity: 1;
}

.accent-text {
    color: var(--accent-blue);
}

/* Blog Page Styles */
.blog-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stats-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image-placeholder {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-category {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-actions {
    margin-top: auto;
}

.blog-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-section {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.pagination-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.pagination-btn {
    background: var(--surface);
    color: var(--text-dark);
    border: 2px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.pagination-info {
    text-align: center;
    flex: 1;
}

.pagination-current {
    color: var(--text-light);
    font-weight: 500;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-section:last-child {
    border-bottom: none;
}

.contact-header {
    position: sticky;
    top: 2rem;
}

.contact-content {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-content p:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.info-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.info-content {
    flex: 1;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

.social-section {
    background: var(--surface);
    padding: 6rem 0;
}

.social-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.social-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-card:nth-child(1) .social-icon {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.social-card:nth-child(2) .social-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.social-card:nth-child(3) .social-icon {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.social-card:nth-child(4) .social-icon {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    color: white;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.social-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Desbloqueio Page Styles */
.free-badge {
    background: #fbbf24;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.problem-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-text {
    color: var(--text-light);
    line-height: 1.6;
}

.solution-section {
    background: var(--surface);
    padding: 6rem 0;
    text-align: center;
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.solution-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    text-align: center;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-check {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

.form-section {
    background: var(--primary-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-container {
    background: var(--surface);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.desbloqueio-form {
    display: grid;
    gap: 2rem;
}

.honeypot-fields {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-group {
    display: grid;
    gap: 0.5rem;
    text-align: left;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--surface);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.15);
    outline: none;
}

.form-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.btn-cta {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.btn-cta:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.author-section {
    background: var(--surface);
    padding: 6rem 0;
}

.author-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.author-image {
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.author-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.author-description:last-child {
    margin-bottom: 0;
}

.author-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.final-cta-section {
    background: var(--dark-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-cta-content .btn-cta {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 6rem 0 5rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .profile-title {
        font-size: 2rem;
    }
    
    .freedom-title {
        font-size: 2rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .companies-section {
        padding: 1rem 0;
    }
    
    .companies-section .container {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .company-logo {
        height: 28px;
        padding: 0.15rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .features-section {
        padding: 4rem 0;
    }
    
    .newsletter-section {
        padding: 4rem 0;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Modern Form Responsividade */
    .modern-card {
        padding: 1.5rem;
    }
    
    .form-control-modern {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 6rem 0 4rem 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    /* Blog Post Responsividade */
    .blog-post {
        padding: 2rem;
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .post-content h1 {
        font-size: 2rem;
        text-align: left;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
        text-align: left;
    }
    
    /* Responsividade para elementos markdown */
    .post-content h2::before {
        display: none;
    }
    
    .post-content h3::before {
        display: none;
    }
    
    .post-content > ul > li {
        padding-left: 1rem;
    }
    
    .post-content blockquote {
        padding-left: 1rem;
    }
    
    /* Freedom Section Responsividade */
    .freedom-section {
        padding: 4rem 0;
    }
    
    .freedom-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .freedom-item .freedom-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .freedom-highlight {
        font-size: 2rem;
    }
    
    /* Newsletter Section Responsividade */
    .newsletter-section {
        padding: 4rem 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-card {
        padding: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.3rem;
    }
    
    /* Privacy & Terms Responsividade */
    .privacy-section,
    .terms-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .privacy-list,
    .terms-list {
        padding-left: 1.5rem;
    }
    
    /* Video responsividade */
    .videos-grid {
        gap: 2rem;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .video-card-reverse .video-container {
        order: 1;
    }
    
    .video-card-reverse .video-info {
        order: 2;
    }
    
    .video-info {
        padding: 2rem;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    /* Sobre Page */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .story-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-item {
        padding: 1.5rem;
    }
    
    /* Cursos Page */
    .learning-paths {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .product-header {
        padding: 1.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-card {
        padding: 1rem;
    }
    
    .profile-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .profile-image-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-skills {
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* Blog Page */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .pagination-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Contact Page */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-header {
        position: static;
    }
    
    .contact-content {
        padding: 1.5rem;
    }
    
    .info-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-card {
        padding: 1.5rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Desbloqueio Page */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .solution-card {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .final-cta-title {
        font-size: 1.7rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    /* General Mobile Adjustments */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .modern-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        flex: none;
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
}

/* Animações e melhorias para mensagens */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: slideIn 0.3s ease-out;
}

/* Estilização para buttons em loading */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}