/* Importação de fonte, se necessário */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* Variáveis CSS (Design System) */
:root {
    --primary: hsl(239, 84%, 67%);
    --primary-glow: hsl(220, 100%, 75%);
    --accent: hsl(280, 100%, 70%);
    --destructive: hsl(0, 84%, 60%);
    --background: hsl(0, 0%, 100%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(210, 40%, 96.1%);

    --gradient-hero: linear-gradient(135deg, var(--primary), var(--primary-glow));
    --gradient-impact: linear-gradient(135deg, var(--accent), var(--primary));

    --shadow-impact: 0 4px 14px hsla(239, 84%, 67%, 0.25);
    --shadow-glow: 0 0 20px hsla(220, 100%, 75%, 0.4);
}

/* Base e Utilitários */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--background);
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.card-elevated {
    background-color: var(--card);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-cta {
    background: var(--gradient-impact);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Header */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--muted);
}

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

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    color: #222;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a.active {
    background-color: var(--primary);
    color: white;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    padding: 6rem 1rem;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.highlight-text {
    font-weight: 900;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Impact Facts Section */
.impact-facts-section {
    padding: 4rem 1rem;
}

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

.fact-card {
    text-align: center;
}

.icon-circle {
    background-color: var(--muted);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.icon-emoji {
    font-size: 2.5rem;
}

.fact-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 1rem;
    background: var(--gradient-impact);
    text-align: center;
    color: white;
}

.cta-title {
    color: white;
    font-size: 2.2rem;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.feature-list {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2.5;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.list-icon {
    font-size: 1.5rem;
}

.card-highlighted {
    background: var(--gradient-hero);
    color: white;
    padding: 3rem;
}

.feature-card-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--muted);
    padding: 3rem 1rem 1rem;
}

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

.footer-logo {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.9rem;
    color: #666;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Estilos para a Calculadora --- */
.calculator-section {
    padding: 4rem 1rem;
}

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

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.calculator-form .input-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #444;
}

.calculator-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.calculator-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsla(239, 84%, 67%, 0.2);
}

.calculator-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Card de Resultado */
.result-card {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, hsl(239, 84%, 95%), hsl(220, 100%, 95%));
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.result-icon-emoji {
    font-size: 2.5rem;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.result-item {
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ddd;
}

.result-label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 900;
}

.result-hours {
    color: var(--primary);
}

.result-days {
    color: var(--accent);
}

.result-rate {
    color: #333;
}

/* Seção de Comparação */
.comparison-section {
    padding: 2rem 1rem;
}

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

.comparison-card {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--card);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.profession-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.badge-basic {
    background-color: hsl(0, 84%, 60%);
    color: white;
}
.badge-services {
    background-color: hsl(45, 100%, 60%);
    color: white;
}
.badge-expert {
    background-color: hsl(120, 80%, 40%);
    color: white;
}

.hours-needed {
    font-size: 1rem;
    color: #666;
}
/* --- Estilos para a página de Produtos --- */
.products-section {
    padding: 4rem 1rem;
}

.emoji-icon {
    font-size: 2rem;
}

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

.tab-btn {
    background-color: var(--muted);
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.product-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.product-price {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-badge {
    display: inline-block;
    background-color: hsl(45, 100%, 80%);
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-card {
    background: var(--gradient-impact);
    color: white;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.cta-card .btn-primary {
    background-color: white;
    color: var(--primary);
}

/* --- Estilos para a página de Profissões --- */
.stats-section {
    padding: 4rem 1rem 2rem;
}

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

.stat-card {
    text-align: center;
    border-radius: 12px;
}

.stat-badge {
    background-color: var(--muted);
    color: #444;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 0.5rem;
    color: var(--primary);
}

.stat-note {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

.professions-list-section {
    padding: 2rem 1rem;
}

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

.profession-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    text-align: left;
}

.profession-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profession-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.profession-salary {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: var(--muted);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Impact Section */
.impact-section {
    padding: 4rem 1rem;
}

.impact-title {
    color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.impact-text-intro {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
}

.impact-list {
    list-style: none;
}

.impact-list li {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impact-list .list-icon {
    font-size: 1.2rem;
}

.impact-compare-box {
    background-color: white;
    padding: 2rem;
    text-align: left;
}

.compare-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding: 0.5rem 0;
}

.compare-label {
    font-weight: 600;
}

.compare-value {
    font-size: 1.1rem;
    font-weight: 900;
}

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

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Estilos para a página Sobre --- */
.mission-section {
    padding: 4rem 1rem;
}

.mission-card {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.objective-card {
    text-align: center;
}

.objective-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.objective-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Seção de Vídeo */
.video-section {
    padding: 4rem 1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.video-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
}

.video-description {
    color: #000000;
    line-height: 1.6;
}

.video-player-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    border: 2px dashed #444;
}

.video-emoji {
    font-size: 3rem;
}

/* Seção de Metodologia */
.methodology-section {
    padding: 4rem 1rem;
}

.methodology-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

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

.methodology-card {
    text-align: left;
}

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

/* CTA Final da página Sobre */
.accent-section {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.accent-section .cta-title {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilo para a imagem do produto */
.product-image {
    max-width: 100px; /* Ajuste o tamanho conforme desejar */
    height: auto;
    margin-bottom: 0.5rem; /* Espaçamento abaixo da imagem */
    display: block; /* Para centralizar a imagem */
    margin-left: auto;
    margin-right: auto;
}
.profession-image {
    max-width: 150px; /* Ajuste o tamanho conforme desejar */
    height: auto;
    margin-bottom: 0.5rem; /* Espaçamento abaixo da imagem */
    display: block; /* Para centralizar a imagem */
    margin-left: auto;
    margin-right: auto;
}


/* Estilo específico para o botão "Saiba Mais" na seção inicial */
.hero-section .btn-secondary {
    color: white;
    border-color: white;
}
