:root {
    /* Light Theme (Default) */
    --primary: #9B5DE5;
    --primary-dark: #5A189A;
    --primary-light: #C8A2FF;
    --secondary: #3A86FF;
    --accent: #FF2E8B;

    --bg-light: #F7F7FB;
    --bg-medium: #BEBEC4;
    --bg-dark: #2E2E37;
    --white: #FFFFFF;

    --text-main: #2E2E37;
    --text-light: #666666;
    --text-white: #FFFFFF;

    --card-bg: #FFFFFF;
    --border-color: #eeeeee;

    --gradient-hero-1: linear-gradient(135deg, #9B5DE5 0%, #3A86FF 100%);
    --gradient-hero-2: linear-gradient(125deg, #C8A2FF 0%, #9B5DE5 45%, #FF2E8B 100%);
    --gradient-btn: linear-gradient(90deg, #9B5DE5 0%, #FF2E8B 100%);

    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-btn: 0 4px 20px rgba(155, 93, 229, 0.5);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-highlight: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-highlight);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--text-white);
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(155, 93, 229, 0.7);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Special override for pricing cards outline buttons */
.pricing-card .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    width: 100%;
}

.pricing-card .btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: scale(1.05);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.btn-icon:hover {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    max-width: 200px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero-1);
    color: var(--text-white);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Mockup Container */
.mockup-container {
    perspective: 1000px;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    max-width: 100%;
}

.mockup-container:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-screen {
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-body-image {
    width: 100%;
    line-height: 0;
}

.mockup-body-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Product */
.about-product {
    background: var(--card-bg);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
}

/* Features */
.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(155, 93, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.feature-card ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* Advantages */
.advantages {
    background: var(--card-bg);
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.advantage-item:hover {
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
    transform: scale(1.02);
}

.advantage-item i {
    color: var(--secondary);
}

/* Target Audience */
.target-audience {
    background: var(--gradient-hero-2);
    color: var(--text-white);
}

.target-audience .section-header h2 {
    color: var(--text-white);
}

.target-audience .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.audience-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--text-white);
}

.audience-card:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.audience-card.highlight {
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 700;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
}

.pricing-category-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-family: var(--font-highlight);
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.setup-fee {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--secondary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-card .btn {
    width: 100%;
}

/* About Us */
.about-us {
    background: var(--card-bg);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

/* Partners Section - Marquee */
.partners-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-section h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.partners-marquee .partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
}

.partners-marquee .partner-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partners-marquee img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.partners-marquee span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Testimonials Section - Marquee */
.testimonials-section {
    margin-top: 80px;
    overflow: hidden;
}

.testimonials-section h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials-marquee {
    animation: scroll 40s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.client-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming content is duplicated once */
}

/* YouTube Section */
.youtube-section {
    background: var(--bg-light);
}

.video-player-container {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/9;
}

.video-player-container iframe {
    width: 100%;
    height: 100%;
}

.video-controls {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.search-bar i {
    color: var(--text-light);
    margin-right: 10px;
}

.search-bar input {
    border: none;
    background: none;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: var(--text-main);
    padding: 5px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-info {
    padding: 15px;
}

.video-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.load-more-container {
    text-align: center;
}

.loading-spinner {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    grid-column: 1 / -1;
    padding: 20px;
}

/* CTA Final */
.cta-final {
    background: var(--primary-dark);
    color: var(--text-white);
    text-align: center;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b5de5' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
    background: rgba(155, 93, 229, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Modals */
.modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    z-index: 2000;
    animation: fadeIn 0.4s ease;
}

.modal {
    background: var(--card-bg);
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    animation: popUp 0.35s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    color: var(--text-main);
}

.modal.small-modal {
    max-width: 400px;
    text-align: center;
}

.modal.large-modal {
    max-width: 1000px;
}

/* Modal Scroll Content */
.modal-scroll-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-scroll-content::-webkit-scrollbar {
    width: 8px;
}

.modal-scroll-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-scroll-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.modal-scroll-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary);
}

.modal h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d0c2ff;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: border 0.3s ease;
    font-family: var(--font-body);
    background: var(--card-bg);
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(124, 77, 255, 0.4);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--gradient-btn);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 93, 229, 0.4);
}

.send-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 10px;
}

.send-whatsapp:hover {
    transform: scale(1.02);
    background: #1ebc57;
}

.login-info-box {
    background: #f0f0f5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid #dcdce0;
}

.login-info-box p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.full-width {
    width: 100%;
    display: block;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary);
}

.modal h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 20px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #d0c2ff;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: border 0.3s ease;
    font-family: var(--font-body);
    background: var(--card-bg);
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(124, 77, 255, 0.4);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: var(--gradient-btn);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 93, 229, 0.4);
}

.send-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 10px;
}

.send-whatsapp:hover {
    transform: scale(1.02);
    background: #1ebc57;
}

.login-info-box {
    background: #f0f0f5;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid #dcdce0;
}

.login-info-box p {
    margin-bottom: 5px;
    font-size: 1rem;
}

.full-width {
    width: 100%;
    display: block;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: white;
        width: 100%;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ------------------ BOTÃO WHATSAPP ------------------ */
.cta-whatsapp-btn {
    display: block;
    margin: 40px auto;
    padding: 15px 35px;
    background: linear-gradient(135deg, #9B5DE5, #FF2E8B);
    color: white;
    font-size: 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(155, 93, 229, 0.4);
    font-family: var(--font-highlight);
    font-weight: 600;
}

.cta-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(155, 93, 229, 0.55);
}

/* Spacing adjustment */
.pricing {
    padding-bottom: 20px;
}

.testimonials-section {
    margin-top: 20px;
}