/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #26ae60;
    --dark-green: #1e8449;
    --light-green: #eaf7f0;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 20px;
    --border-radius-pill: 50px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Novas variáveis para animações */
    --anim-fade: 0.6s ease-out;
    --anim-slide: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --anim-scale: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --anim-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Definições básicas para animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    color: var(--gray-900);
    overflow-x: hidden;
    background-color: #ffffff;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

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

/* Header moderno e minimalista */
#header-container {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    height: 70px;
    animation: slideUp 0.6s ease-out;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#header-container:hover {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 1);
}

#logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#logo-container div p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1b689e;
}

#logo {
    height: 90px;
    transition: transform 0.3s ease;
}

#logo:hover {
    transform: scale(1.05);
}

.button-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.access-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: -0.01em;
}

.access-btn:first-child {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 2px 8px rgba(38, 174, 96, 0.25);
}

.access-btn:first-child:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 12px rgba(38, 174, 96, 0.3);
}

#new-account-btn {
    border: 1px solid var(--gray-300);
    color: var(--gray-900);
    transition: var(--transition-normal);
}

#new-account-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background-color: var(--light-green);
    transform: translateY(-2px);
}

#my-account-btn {
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

#my-account-btn:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-500);
    transform: translateY(-2px);
}

/* Hero Section - Design moderno e limpo */
.hero-section {
    padding: 7rem 5% 6rem;
    background: white;
    color: var(--gray-900);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.7;
    z-index: 0;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    flex: 1;
    text-align: left;
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    background: rgba(38, 174, 96, 0.1);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-pill);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(38, 174, 96, 0.2);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--gray-900);
    opacity: 0;
    animation: slideUp 0.7s ease-out 0.3s forwards;
}

.text-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary-green);
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(38, 174, 96, 0.15);
    z-index: -1;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.6s ease-out 1s;
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 90%;
    opacity: 0;
    animation: slideUp 0.7s ease-out 0.5s forwards;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 0.7s ease-out 0.7s forwards;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-green);
    color: white;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 15px rgba(38, 174, 96, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(38, 174, 96, 0.35);
    background-color: var(--dark-green);
}

.cta-button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.secondary-button:hover {
    color: var(--primary-green);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.play-icon i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.secondary-button:hover .play-icon {
    background-color: var(--primary-green);
    transform: scale(1.05);
}

.secondary-button:hover .play-icon i {
    color: white;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.7s ease-out 0.9s forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.trust-item i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Highlight Section - Nova seção de benefícios */
.highlight-section {
    padding: 6rem 5%;
    background-color: var(--gray-100);
    color: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(38, 174, 96, 0.03) 0%, rgba(38, 174, 96, 0) 20%),
        radial-gradient(circle at 80% 70%, rgba(38, 174, 96, 0.03) 0%, rgba(38, 174, 96, 0) 20%);
    opacity: 0.8;
    z-index: 0;
}

.highlight-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-text {
    max-width: 100%;
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 600;
    text-align: center;
}

.highlight-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray-700);
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-feature {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 0));
}

.highlight-feature:nth-child(1) { --animation-order: 1; }
.highlight-feature:nth-child(2) { --animation-order: 2; }
.highlight-feature:nth-child(3) { --animation-order: 3; }
.highlight-feature:nth-child(4) { --animation-order: 4; }

.highlight-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-feature:hover .feature-icon-circle {
    background-color: var(--primary-green);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-circle i {
    font-size: 1.25rem;
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.highlight-feature:hover .feature-icon-circle i {
    color: white;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.highlight-cta-button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-green);
    color: white;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    text-align: center;
    box-shadow: 0 3px 15px rgba(38, 174, 96, 0.25);
}

.highlight-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(38, 174, 96, 0.35);
    background-color: var(--dark-green);
}

/* Nova seção de documentação médica */
.docs-section {
    padding: 6rem 5%;
    background-color: white;
    color: var(--gray-900);
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

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

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

.docs-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.docs-header p {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.docs-card {
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: calc(0.15s * var(--animation-order, 0));
}

.docs-card:nth-child(1) { --animation-order: 1; }
.docs-card:nth-child(2) { --animation-order: 2; }
.docs-card:nth-child(3) { --animation-order: 3; }

.docs-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background-color: white;
    border-color: var(--primary-green);
}

.docs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-green);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.docs-card:hover::before {
    opacity: 1;
}

.docs-icon {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-green);
}

.docs-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.docs-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.docs-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.docs-link i {
    transition: var(--transition-normal);
}

.docs-link:hover {
    color: var(--dark-green);
}

.docs-link:hover i {
    transform: translateX(3px);
}

/* Features Section - Cards refinados */
.features-section {
    padding: 6rem 5%;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-200);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 0));
}

.feature-card:nth-child(1) { --animation-order: 1; }
.feature-card:nth-child(2) { --animation-order: 2; }
.feature-card:nth-child(3) { --animation-order: 3; }
.feature-card:nth-child(4) { --animation-order: 4; }
.feature-card:nth-child(5) { --animation-order: 5; }
.feature-card:nth-child(6) { --animation-order: 6; }
.feature-card:nth-child(7) { --animation-order: 7; }
.feature-card:nth-child(8) { --animation-order: 8; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-green);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-normal);
    margin-top: auto;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--dark-green);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Stats Section - Estatísticas modernas */
.stats-section {
    padding: 6rem 5%;
    background-color: var(--gray-100);
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.stats-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    opacity: 0;
    animation: scaleUp 0.6s ease-out forwards;
    animation-delay: calc(0.15s * var(--animation-order, 0));
}

.stat-card:nth-child(1) { --animation-order: 1; }
.stat-card:nth-child(2) { --animation-order: 2; }
.stat-card:nth-child(3) { --animation-order: 3; }
.stat-card:nth-child(4) { --animation-order: 4; }

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.stat-icon {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: var(--light-green);
    font-size: 1.75rem;
    color: var(--primary-green);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.stat-bar {
    height: 5px;
    background-color: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: var(--primary-green);
    border-radius: 3px;
    width: 0 !important;
    transition: width 1.5s ease-out;
}

/* Correção para animação das barras de progresso nas estatísticas */
.stats-section.in-view .stat-progress {
    width: var(--progress-width) !important;
}

/* CTA Section - Call to action moderno */
.cta-section {
    padding: 6rem 5%;
    background-color: var(--gray-900);
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 174, 96, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: slideLeft 0.5s ease-out forwards;
    animation-delay: calc(0.15s * var(--animation-order, 0));
}

.cta-benefit:nth-child(1) { --animation-order: 1; }
.cta-benefit:nth-child(2) { --animation-order: 2; }
.cta-benefit:nth-child(3) { --animation-order: 3; }

.cta-benefit i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.cta-button-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-green);
    color: white;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(38, 174, 96, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-button-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(38, 174, 96, 0.4);
    background-color: var(--dark-green);
    animation: none;
}

.cta-button-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button-primary:hover:after {
    animation: ripple 1s ease-out;
}

/* Trust Footer */
.trust-footer {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid var(--gray-200);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.mp-logo {
    height: 40px;
    object-fit: contain;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2rem;
}

.trust-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 2rem 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(0.15s * var(--animation-order, 0));
}

.trust-badge:nth-child(1) { --animation-order: 1; }
.trust-badge:nth-child(2) { --animation-order: 2; }
.trust-badge:nth-child(3) { --animation-order: 3; }

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.badge-text h4 {
    color: var(--gray-900);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.badge-text p {
    color: var(--gray-700);
    margin: 0.2rem 0 0 0;
    font-size: 0.85rem;
}

/* Cores específicas dos ícones de pagamento */
.fa-cc-visa {
    color: #1A1F71;
}

.fa-cc-mastercard {
    color: #EB001B;
}

.fa-pix {
    color: #32BCAD;
}

/* Footer redesenhado */
footer {
    background-color: var(--gray-900);
    color: white;
    padding: 3rem 5%;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-info p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    font-size: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-cnpj, .footer-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a i {
    font-size: 18px;
    color: white;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background-color: var(--primary-green);
    transform: translateY(-5px) scale(1.1);
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .highlight-features,
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .highlight-features,
    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #header-container {
        padding: 0.75rem 1.5rem;
        flex-direction: column;
        gap: 0.1rem;
        height: auto;
    }

    #logo-container div p {
        font-size: 0.8rem; /* Reduz o tamanho da fonte no mobile */
    }
    
    #logo-container {
        margin-bottom: 0;
    }
    
    .hero-section {
        padding: 12rem 1.5rem 4rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-graphic {
        margin: 0 auto;
    }
    
    .hero-graphic-element {
        position: relative;
        transform: none;
    }
    
    .circle-1 {
        left: 50%;
        margin-left: -100px;
    }
    
    .circle-2 {
        left: 50%;
        margin-left: -60px;
    }
    
    .circle-3 {
        left: 50%;
        margin-left: -40px;
    }
    
    .shape-1 {
        left: 50%;
        margin-left: -80px;
    }
    
    .shape-2 {
        left: 50%;
        margin-left: 10px;
    }
    
    .highlight-features,
    .features-grid,
    .stats-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-section,
    .features-section,
    .docs-section,
    .stats-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title,
    .highlight-text h2,
    .docs-header h2,
    .stats-title,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-button, 
    .secondary-button,
    .highlight-cta-button,
    .cta-button-primary {
        width: 100%;
        justify-content: center;
    }
    
    .button-container {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .access-btn {
        flex: 1;
        text-align: center;
        padding: 0.6rem 1rem;
        min-width: 100px;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-payment {
        flex-direction: column;
    }
    
    .payment-icons {
        gap: 1.5rem;
    }
}

