/* ============================================================================
   CRISTIAN NAZÁRIO - CONTABILIDADE & ESTRATÉGIA
   Design Movement: Modernismo Corporativo com Profundidade Técnica
   
   Paleta de Cores:
   - Primário: Azul Profundo (#1E3A8A) - Confiança, Estabilidade
   - Secundário: Verde-Azulado (#0F766E) - Crescimento, Segurança
   - Acentos: Âmbar (#D97706) - Atenção, Importância
   - Neutros: Cinzas profundos e brancos - Clareza
   
   Tipografia:
   - Display: Serif moderno (autoridade)
   - Body: Sans-serif limpo (legibilidade)
   - Monospace: Dados e números
   ========================================================================== */

/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1E3A8A;
    --primary-light: #3B82F6;
    --primary-dark: #0F172A;
    --secondary: #0F766E;
    --secondary-light: #14B8A6;
    --accent: #D97706;
    --accent-light: #F59E0B;
    --neutral-50: #F9FAFB;
    --neutral-100: #F3F4F6;
    --neutral-200: #E5E7EB;
    --neutral-300: #D1D5DB;
    --neutral-400: #9CA3AF;
    --neutral-500: #6B7280;
    --neutral-600: #4B5563;
    --neutral-700: #374151;
    --neutral-800: #1F2937;
    --neutral-900: #111827;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    line-height: 1.6;
}

/* ============================================================================
   HEADER / NAVEGAÇÃO
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--primary);
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(15, 118, 110, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-lg);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.8;
}

/* ============================================================================
   BOTÕES
   ========================================================================== */

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* ============================================================================
   SEÇÕES
   ========================================================================== */

.section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: white;
}

.section-alt {
    background: var(--neutral-50);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    font-weight: 400;
}

/* ============================================================================
   GRIDS E LAYOUTS
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.content-card {
    background: var(--neutral-50);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.content-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--neutral-600);
    font-size: 0.95rem;
}

/* ============================================================================
   COMPARAÇÃO
   ========================================================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.comparison-card {
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05), rgba(20, 184, 166, 0.05));
    box-shadow: var(--shadow-lg);
}

.comparison-title {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.comparison-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--neutral-700);
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================================================
   PILARES
   ========================================================================== */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.pillar-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.pillar-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.pillar-card p {
    color: var(--neutral-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.pillar-highlight {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(245, 158, 11, 0.1));
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    color: var(--neutral-800);
    font-style: italic;
}

.pillar-formula {
    background: var(--neutral-100);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

/* ============================================================================
   INDICADORES
   ========================================================================== */

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.indicator-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
}

.indicator-card h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.indicator-card p {
    color: var(--neutral-700);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.indicator-card strong {
    color: var(--secondary);
}

/* ============================================================================
   TABELAS
   ========================================================================== */

.tax-table-container {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
}

.tax-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tax-table thead {
    background: var(--primary);
    color: white;
}

.tax-table th {
    padding: var(--spacing-md);
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-dark);
}

.tax-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--neutral-200);
}

.tax-table tbody tr:hover {
    background: var(--neutral-50);
}

.tax-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================================================
   CONTEÚDO TRIBUTÁRIO
   ========================================================================== */

.tax-content h3 {
    color: var(--primary);
    margin: var(--spacing-xl) 0 var(--spacing-lg) 0;
    font-size: 1.4rem;
}

.tax-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.tax-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--neutral-700);
    line-height: 1.7;
}

.tax-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================================================
   CONSULTORIA
   ========================================================================== */

.consultancy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.consultancy-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.consultancy-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.consultancy-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.consultancy-card p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* ============================================================================
   GESTÃO DE PESSOAS
   ========================================================================== */

.hr-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.hr-section {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.hr-section h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.hr-section p {
    color: var(--neutral-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.hr-example {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
    color: var(--neutral-800);
    margin: var(--spacing-md) 0;
}

.risk-list,
.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.risk-list li,
.compliance-list li {
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--neutral-700);
}

.risk-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.compliance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================================================
   SOBRE NÓS
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.about-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.about-card p {
    color: var(--neutral-700);
    line-height: 1.7;
}

.company-info {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.company-info h3 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.info-item strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

/* ============================================================================
   FAQ
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--neutral-50);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: white;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: var(--spacing-lg);
    color: var(--neutral-700);
    line-height: 1.7;
    background: var(--neutral-50);
}

/* ============================================================================
   CONTATO
   ========================================================================== */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-md);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--neutral-800);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-message {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.form-message.error {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    color: #DC2626;
    border: 1px solid #DC2626;
}

.contact-info {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
}

.info-block {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block h4 {
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* ============================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: var(--spacing-2xl) var(--spacing-lg);
}

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

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

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-text:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--neutral-200);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .content-grid,
    .benefits-grid,
    .comparison-grid,
    .pillars-grid,
    .indicators-grid,
    .consultancy-grid,
    .about-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .header-container {
        padding: var(--spacing-md);
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .tax-table {
        font-size: 0.85rem;
    }
    
    .tax-table th,
    .tax-table td {
        padding: var(--spacing-sm);
    }
}

/* ============================================================================
   ANIMAÇÕES
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-item {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.btn:active {
    animation: pulse 0.3s ease-out;
}
