:root {
    --color-primary: #43A047;
    --color-secondary: #2196F3;
    --color-accent: #FFA726;
    --color-text: #222;
    --color-text-light: #666;
    --color-background: #fff;
}
html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-text {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #eee;
    color: var(--color-text);
    font-weight: 600;
    cursor: pointer;
}

.btn-register {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.btn-language {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.btn-language:hover {
    background: #f5f5f5;
}

.current-lang {
    color: var(--color-primary);
}

.lang-separator {
    color: #ddd;
}

.alt-lang {
    opacity: 0.6;
}

main {
    margin-top: 80px; /* Altura de la navbar + padding extra */
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    gap: 2rem;
    background-color: #FEFEFE;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    
}

h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}


.highlight {
    color: var(--color-primary);
}

.hero-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-discover {
    padding: 0.8rem 2rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination {
    display: flex;
    gap: 0.1rem;
}

.dot {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0.6;
}

.dot.active {
    opacity: 1;
}

.users-count {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 1000px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0 0 20px 20px;
}

.floating-elements {
    position: absolute;
    right: 0;
    bottom: 20%;
    display: flex;
    gap: 1rem;
}



/* About Section */
.about {
    padding: 5rem 5%;
    background: #ffffff;
    text-align: center;
}

.search-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgb(222, 243, 255);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #34b2fab0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon span {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: rgb(32, 32, 32);
    font-size: 1rem;
    line-height: 1.5;
}


/* Product Video Section */
.product-video {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f5e9 100%);
    text-align: center;
}

.product-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.product-description h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.product-description p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .product-video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .product-description h2 {
        font-size: 2rem;
    }

    .product-description p {
        font-size: 1rem;
    }
}

/* Team Video Section */
.team-video {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #fff8f0 0%, #f3e5f5 100%);
}

.team-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.team-description {
    order: 1;
}

.team-description h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.team-description p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .team-video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-description {
        order: 2;
        text-align: center;
    }

    .team-video-container .video-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .team-description h2 {
        font-size: 2rem;
    }

    .team-description p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: var(--color-background);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: #FFA726;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-testimonials:hover {
    transform: translateY(-2px);
}

.arrow-icon {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f8f0 100%);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--color-secondary);
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(33, 150, 243, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 50px rgba(33, 150, 243, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--color-secondary), #1976D2);
    color: white;
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 2px 10px rgba(33, 150, 243, 0.3);
}

.pricing-card h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 1.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary), #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.plan-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.features-list .check {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: rgba(67, 160, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-plan {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-standard {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    color: var(--color-text);
    border: 2px solid transparent;
}

.btn-standard:hover {
    background: linear-gradient(135deg, #e0e0e0, #d5d5d5);
    transform: translateY(-2px);
}

.btn-basic {
    background: linear-gradient(135deg, var(--color-secondary), #1976D2);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.btn-basic:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-expert {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-expert:hover {
    background: linear-gradient(135deg, #f57c00, #ef6c00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .featured-badge {
        top: 15px;
        right: -25px;
        padding: 6px 35px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 3rem 3%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: var(--color-secondary);
    text-align: center;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.btn-impact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--color-secondary);
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-impact:hover {
    transform: translateY(-2px);
}

.arrow-right {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    padding-right: 2rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.rocket-icon {
    font-size: 1.2rem;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 1.1rem;
}

.check-icon {
    color: var(--color-primary);
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-register-now {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-learn-more {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--color-text);
    border: 1px solid #ddd;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-learn-more:hover {
    background: #ffffff;
}

.contact-form {
    background: #F5F5F5;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e9dfdf;
    border-radius: 7px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-submit:hover,
.btn-register-now:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        padding-right: 0;
        text-align: center;
    }

    .benefits-list {
        display: inline-block;
        text-align: left;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 4rem 5% 2rem;
    margin-top: 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.footer-brand {
    max-width: 400px;
}

.brand-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--color-background);
    text-align: center;
}

.services-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
}

.services-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.service-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ff9800;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.next-btn {
    right: 0;
}

.slider-nav:hover {
    background: #f57c00;
    transform: translateY(-50%) scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff9800;
    transform: scale(1.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #FFA726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon span {
    font-size: 2.5rem;
}

.service-card h3 {
    color: var(--color-text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-section {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .floating-elements {
        display: none;
    }
}
