:root {
    --primary-color: #2a4b8d;
    --secondary-color: #4CAF50;
    --accent-color: #FFC107;
    --text-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #333;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1a3a7c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
}

/* Menu Toggle (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: space-around;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary-color);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97') no-repeat center center/cover;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
}

/* Desabilitar background-attachment fixed em mobile para melhor performance */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.sobre p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #666;
    padding: 0 20px;
}

.analise-acoes .section-description {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 40px !important;
    font-size: 18px;
    color: #666;
    padding: 0 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Especialistas */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.dev-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p {
    margin-bottom: 20px;
    color: #666;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.skills span {
    background: var(--light-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
}

/* Tecnologias */
.tech-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.category {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.category ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category ul li:last-child {
    border-bottom: none;
}

/* Contato */
.contato {
    background-color: var(--light-color);
}

.contato p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

form .btn {
    width: 100%;
}

/* ==================== ESTILOS PARA ANÁLISE DE AÇÕES ==================== */

.analise-acoes {
    background-color: var(--light-color);
}

.analysis-container {
    max-width: 900px;
    margin: 0 auto;
}

.analysis-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.analysis-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.analysis-form .form-group label i {
    color: var(--primary-color);
}

.analysis-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.analysis-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

.portfolio-fields {
    background: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.btn-analyze {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
}

.btn-analyze:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spinner {
    border: 4px solid var(--light-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Resultado */
.analysis-result {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.result-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Recommendation Box */
.recommendation-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.recommendation-box.buy {
    background: #d4edda;
    border: 2px solid var(--secondary-color);
    color: #155724;
}

.recommendation-box.sell {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.recommendation-box.hold {
    background: #fff3cd;
    border: 2px solid var(--accent-color);
    color: #856404;
}

.recommendation-box.wait {
    background: #d1ecf1;
    border: 2px solid #17a2b8;
    color: #0c5460;
}

.recommendation-box.neutral {
    background: #e2e3e5;
    border: 2px solid #6c757d;
    color: #383d41;
}

.recommendation-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.confidence {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

/* Portfolio Info */
.portfolio-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portfolio-info h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.portfolio-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.portfolio-item.highlight {
    border-left-width: 6px;
    font-weight: 600;
}

.portfolio-item.positive {
    border-left-color: var(--secondary-color);
    background: #d4edda;
}

.portfolio-item.negative {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.portfolio-item .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.portfolio-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

/* Justification */
.justification {
    margin-bottom: 30px;
}

.justification h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.justification ul {
    list-style: none;
    padding-left: 0;
}

.justification li {
    padding: 15px;
    margin-bottom: 10px;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    transition: transform 0.2s ease;
}

.justification li:hover {
    transform: translateX(5px);
}

.justification li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* Signals */
.signals {
    margin-bottom: 30px;
}

.signals h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.signal-item {
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.signal-item .label {
    font-weight: 600;
    color: #666;
}

.signal-item .value {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.signal-item .value.signal-comprar,
.signal-item .value.signal-buy {
    background: var(--secondary-color);
    color: #fff;
}

.signal-item .value.signal-vender,
.signal-item .value.signal-sell {
    background: #dc3545;
    color: #fff;
}

.signal-item .value.signal-manter,
.signal-item .value.signal-hold {
    background: var(--accent-color);
    color: var(--text-color);
}

/* Suggested Levels */
.suggested-levels {
    margin-bottom: 30px;
}

.suggested-levels h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.level-item {
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.level-item.profit {
    border-left-color: var(--secondary-color);
    background: #d4edda;
}

.level-item.loss {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.level-item .label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.level-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

/* Fair Value */
.fair-value {
    margin-bottom: 30px;
}

.fair-value h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.fair-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.fair-value-item {
    padding: 15px;
    background: var(--light-color);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.fair-value-item.positive {
    border-left-color: var(--secondary-color);
    background: #d4edda;
}

.fair-value-item.negative {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.fair-value-item .label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.fair-value-item .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

/* Time Horizon */
.time-horizon {
    padding: 15px;
    background: #e7f3ff;
    border-left: 4px solid #17a2b8;
    border-radius: 5px;
    margin-top: 20px;
}

/* Error Message */
.error-message {
    margin-top: 30px;
}

.error-box {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-box i {
    font-size: 24px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 20px 0;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== RESPONSIVIDADE ==================== */

/* Tablets grandes e Desktop pequeno (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .tech-categories {
        gap: 20px;
    }
}

/* Tablets (481px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    header .container {
        flex-direction: row;
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
        margin: 0;
        gap: 0;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    /* Overlay quando menu está aberto */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 70vh;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    /* Cards */
    .cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .card {
        max-width: 100%;
        min-width: auto;
    }
    
    /* Tech Categories */
    .tech-categories {
        flex-direction: column;
        gap: 20px;
    }
    
    .category {
        min-width: auto;
    }
    
    /* Análise de Ações */
    .analysis-form {
        padding: 20px;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .result-header h3 {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .recommendation-header h2 {
        font-size: 22px;
    }
    
    .portfolio-grid,
    .signals-grid,
    .levels-grid,
    .fair-value-grid {
        grid-template-columns: 1fr;
    }
    
    /* Formulário de Contato */
    form {
        max-width: 100%;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    header .container {
        padding: 12px 15px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    nav {
        width: 100%;
        right: -100%;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        padding: 70px 15px 20px;
    }
    
    nav ul li a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 40px;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .sobre p {
        font-size: 16px;
    }
    
    /* Cards */
    .card {
        padding: 20px;
    }
    
    .dev-photo {
        width: 120px;
        height: 120px;
    }
    
    .profile-img {
        width: 100%;
        height: 100%;
    }
    
    .skills {
        gap: 8px;
    }
    
    .skills span {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    /* Tech Categories */
    .category {
        padding: 20px;
    }
    
    .category h3 {
        font-size: 18px;
    }
    
    /* Análise de Ações */
    .analysis-container {
        max-width: 100%;
    }
    
    .analysis-form {
        padding: 15px;
    }
    
    .analysis-form .form-group label {
        font-size: 14px;
    }
    
    .analysis-form input,
    .analysis-form select {
        padding: 8px;
        font-size: 14px;
    }
    
    .btn-analyze {
        padding: 12px;
        font-size: 16px;
    }
    
    .loading {
        padding: 30px 15px;
    }
    
    .loading p {
        font-size: 14px;
    }
    
    .analysis-result {
        padding: 20px 15px;
    }
    
    .result-header h3 {
        font-size: 18px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .recommendation-box {
        padding: 20px 15px;
    }
    
    .recommendation-header h2 {
        font-size: 18px;
    }
    
    .confidence {
        font-size: 14px;
    }
    
    .portfolio-info,
    .justification,
    .signals,
    .suggested-levels,
    .fair-value {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .portfolio-info h3,
    .justification h3,
    .signals h3,
    .suggested-levels h3,
    .fair-value h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .portfolio-item,
    .signal-item,
    .level-item,
    .fair-value-item {
        padding: 12px;
    }
    
    .portfolio-item .value,
    .level-item .value,
    .fair-value-item .value {
        font-size: 16px;
    }
    
    .justification li {
        padding: 12px;
        font-size: 14px;
    }
    
    .time-horizon {
        padding: 12px;
        font-size: 14px;
    }
    
    .error-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .error-box i {
        font-size: 32px;
    }
    
    .error-box p {
        font-size: 14px;
    }
    
/* Formulário de Contato */
.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    margin-bottom: 4px;
}

input,
textarea,
select {
    padding: 10px;
    font-size: 14px;
}

textarea {
    min-height: 100px;
}

/* Mensagens de contato */
#contact-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: 500;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
    
    /* Footer */
    footer {
        padding: 15px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .copyright {
        padding-top: 15px;
        font-size: 14px;
    }
}

/* Mobile muito pequeno (até 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    section h2 {
        font-size: 22px;
    }
    
    .analysis-form {
        padding: 12px;
    }
    
    .analysis-result {
        padding: 15px 12px;
    }
}

/* Landscape orientation para mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
}

/* Impressão */
@media print {
    header,
    footer,
    .btn,
    .analysis-form,
    .loading {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}