/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fffae5;
    color: #1e2c4c;
    line-height: 1.6;
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(233, 206, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(155, 177, 193, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(30, 44, 76, 0.02) 50%, transparent 51%);
    background-size: 800px 800px, 600px 600px, 50px 50px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1e2c4c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 250, 229, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(30, 44, 76, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.nav-logo .logo-link:hover .logo-img {
    transform: scale(1.05);
}

.nav-logo h2 {
    margin: 0;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1e2c4c;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #9bb1c1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #9bb1c1;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1e2c4c;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(233, 206, 138, 0.1) 0%, rgba(155, 177, 193, 0.1) 100%);
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e2c4c 0%, #9bb1c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #1e2c4c;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-manifesto {
    font-size: 1.6rem;
    font-style: italic;
    margin: 2rem auto;
    max-width: 700px;
    background-color: rgba(30, 44, 76, 0.75);
    color: #fffae5;
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #9bb1c1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-download {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #1e2c4c 0%, #9bb1c1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 44, 76, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 44, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e2c4c;
    border: 2px solid #9bb1c1;
}

.btn-secondary:hover {
    background: #9bb1c1;
    color: #1e2c4c;
    transform: translateY(-2px);
}

.btn-download {
    background: #9bb1c1;
    color: #1e2c4c;
    border: 2px solid transparent;
}

.btn-download:hover {
    background: transparent;
    border-color: #9bb1c1;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(155, 177, 193, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e2c4c;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #9bb1c1 0%, #9bb1c1 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1e2c4c;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Founder Section */
.founder-section {
    background: rgba(233, 206, 138, 0.1);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #9bb1c1;
}

.founder-section h3 {
    color: #1e2c4c;
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #1e2c4c;
}

.founder-bio {
    color: #1e2c4c;
    opacity: 0.8;
}

/* Company Info */
.company-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 44, 76, 0.1);
    border-top: 4px solid #9bb1c1;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h4 {
    color: #1e2c4c;
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    background: rgba(233, 206, 138, 0.05);
}

/* Planos Section */
.plans-section {
    background: rgba(155, 177, 193, 0.05);
}
.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.plan-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(30, 44, 76, 0.15);
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    position: relative;
}
.plan-card.popular {
    border: 2px solid #9bb1c1;
}
.plan-card.recommended {
    border: 2px solid #1e2c4c;
}
.plan-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #9bb1c1;
    color: #1e2c4c;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 4px;
}
.plan-price {
    font-size: 1.5rem;
    margin: 1rem 0;
}
.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}
.plan-features li {
    margin-bottom: 0.5rem;
}
.plan-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}
.mentoria-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 44, 76, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}
.highlight-text {
    color: #1e2c4c;
    font-weight: 600;
    background-color: #9bb1c1;
    padding: 0 0.2em;
    border-radius: 4px;
}

/* Biblioteca Gratuita */
.library-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(233, 206, 138, 0.2) 0%, rgba(155, 177, 193, 0.2) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 24px rgba(30, 44, 76, 0.12);
    margin: 2.5rem 0;
}

.library-highlight h3 {
    margin-bottom: 0.75rem;
}

.library-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: #1e2c4c;
    color: #fffae5;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.library-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.library-note {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.library-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(30, 44, 76, 0.1);
    text-align: left;
}

.library-card h3 {
    margin-bottom: 1rem;
}

.library-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.library-links a {
    color: #1e2c4c;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.library-links a:hover {
    color: #9bb1c1;
    border-color: #9bb1c1;
}

/* Toggle List */
.toggle-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.toggle-item {
    background: #f8f6f0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(30, 44, 76, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.toggle-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.toggle-item summary::-webkit-details-marker {
    display: none;
}

.toggle-item summary::after {
    content: '+';
    float: right;
    transition: transform 0.3s ease;
}

.toggle-item[open] summary::after {
    content: '–';
}

.toggle-item > *:not(summary) {
    padding: 0 1.5rem 1rem;
}
.plan-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.plan-table th,
.plan-table td {
    border: 1px solid #9bb1c1;
    padding: 0.75rem;
    text-align: center;
}
.plan-table th {
    background: #f8f6f0;
    font-weight: 600;
}
.plan-table td:first-child {
    text-align: left;
    font-weight: 500;
}
.plan-table tbody tr:nth-child(even) {
    background: #faf8f2;
}
.plan-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}
/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(30, 44, 76, 0.15);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: #9bb1c1;

}

.testimonial-card::after {
    content: '”';
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 3rem;
    color: #9bb1c1;

}

.testimonial-card p {
    color: #1e2c4c;
    opacity: 0.9;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 44, 76, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #9bb1c1;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(30, 44, 76, 0.15);
    border-left-color: #9bb1c1;
}

.value-card h4 {
    color: #1e2c4c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #1e2c4c;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background: rgba(155, 177, 193, 0.08);
}

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

.contact-info, .contact-cta {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(30, 44, 76, 0.15);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    margin-bottom: 1rem;
    color: #1e2c4c;
}

.contact-method strong {
    color: #1e2c4c;
    font-weight: 600;
}

.contact-method a {
    color: #1e2c4c;
    text-decoration: underline;
    text-decoration-color: #9bb1c1;
    transition: color 0.3s ease;
}
.contact-method a:hover {
    color: #9bb1c1;
}


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

/* Footer */
.footer {
    background: #1e2c4c;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #9bb1c1;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9bb1c1;
}

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


/* === ESTILOS PARA O MODAL E NOVOS ELEMENTOS === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 44, 76, 0.85); /* Tom azulado do site */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.modal-container {
    background-color: #fffae5; /* Cor de fundo principal do site */
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    border-top: 5px solid #9bb1c1; /* Destaque dourado */
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
     padding: 20px 40px;
     position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #9bb1c1; /* Tom de azul claro */
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover {
    color: #1e2c4c;
    transform: scale(1.1);
}

.modal-body {
    overflow-y: auto;
    padding: 0 40px 40px 40px;
}

.curso-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.curso-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1e2c4c;
    margin: 0;
}
.curso-header .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #1e2c4c;
    font-style: italic;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.product-section {
    margin-bottom: 30px;
}
.product-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1e2c4c;
    border-bottom: 2px solid #9bb1c1;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 1.8rem;
}

.intro-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    text-align: center;
    color: #1e2c4c;
    line-height: 1.7;
}
.intro-text p strong {
     display: block;
     margin-top: 1rem;
     font-weight: 600;
}

.topics-list { list-style: none; padding: 0; margin: 0; }
.topics-list li { padding: 12px 0 12px 35px; position: relative; font-size: 1.1rem; border-bottom: 1px solid rgba(30, 44, 76, 0.1); line-height: 1.6; }
.topics-list li:last-child { border-bottom: none; }
.topics-list li::before { content: '✔'; position: absolute; left: 0; top: 12px; color: #9bb1c1; font-weight: bold; font-size: 1.2rem; }

.feature-list li { padding-left: 40px; }
.feature-list li::before { content: '🔹'; color: #9bb1c1; font-size: 1.5rem; top: 10px; }
.feature-list p { margin: 0; font-size: 1.05rem; color: #1e2c4c; opacity: 0.9; line-height: 1.6; }
.feature-list h4 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.2rem; color: #1e2c4c; margin: 0 0 5px 0; }

.cta-section { text-align: center; padding: 30px; background-color: rgba(233, 206, 138, 0.1); border-radius: 12px; border-top: 1px solid rgba(30, 44, 76, 0.1);}
.cta-section h2 { font-family: 'Playfair Display', serif; color: #1e2c4c; border: none; margin-bottom: 15px; font-size: 1.6rem; }
.price { font-size: 1.8rem; font-weight: 500; margin-bottom: 5px; color: #1e2c4c; opacity: 0.8; }

.price-installment {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e2c4c;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
    border: 2px solid #9bb1c1;
    box-shadow: 0 2px 10px rgba(30, 44, 76, 0.1);
}

.price-details { font-size: 1rem; margin-bottom: 25px; color: #1e2c4c; opacity: 0.8; }

.final-points { margin-top: 30px; padding: 0; list-style: none; text-align: center; }
.final-points li { color: #1e2c4c; font-weight: 500; font-size: 1.1rem; padding: 8px 0 8px 30px; position: relative; display: inline-block; text-align: left; }
.final-points li::before { content: '📌'; position: absolute; left: 0; top: 8px; }

.btn-buy { font-family: 'Cormorant Garamond', serif; background: linear-gradient(135deg, #1e2c4c 0%, #9bb1c1 100%); color: #fff; text-decoration: none; padding: 15px 40px; border-radius: 50px; font-size: 1.2rem; font-weight: 600; transition: all 0.3s ease; display: inline-block; border: none; cursor: pointer; }
.btn-buy:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(30, 44, 76, 0.4); }

.btn-buy.highlight {
    background: linear-gradient(135deg, #9bb1c1 0%, #9bb1c1 100%);

    color: #1e2c4c;
}


.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}
.feature-list li {
    margin-bottom: 0.3rem;

}

.product-card.clickable { cursor: pointer; }

/* Estilo para o botão da comunidade na navegação */
.nav-community a {
    background-color: #25D366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.nav-community a:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}
.nav-community a::after {
    display: none; /* Remove a linha de baixo do botão */
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Ajuste conforme a altura do navbar */
        flex-direction: column;
        background-color: rgba(255, 250, 229, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-container {
        padding: 0;
        width: 95%;
    }

    .modal-header, .modal-body {
        padding: 20px;
    }

    .library-highlight {
        flex-direction: column;
        text-align: center;
    }

    .library-cta {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .founder-section,
    .info-card,
    .contact-info,
    .contact-cta {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.section-subtitle {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.btn-primary:active,
.btn-secondary:active,
.btn-download:active {
    transform: translateY(0);
}
