/* ===== VARIÁVEIS ===== */
:root {
    --primary-color: #6a11cb;
    --primary-gradient: linear-gradient(to right, #6a11cb, #2575fc);
    --secondary-color: #2575fc;
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-color: #f8fafc;
    --grey-color: #94a3b8;
    --light-grey: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-radius: 12px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Space Grotesk', sans-serif;
}

/* ===== RESET E BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--darker-color);
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* ===== CURSOR PERSONALIZADO ===== */
.cursor-dot, 
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-visible .cursor-dot, 
.cursor-visible .cursor-outline {
    opacity: 1;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(106, 17, 203, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--light-color);
}

h1 {
    font-size: 5.6rem;
}

h2 {
    font-size: 4.2rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
    color: var(--grey-color);
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-header p {
    font-size: 1.8rem;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.6rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 17, 203, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-grey);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

.btn-full {
    width: 100%;
}

.btn i {
    margin-left: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 1.5rem 0;
    background-color: rgba(2, 6, 23, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--light-color);
}

.nav ul {
    display: flex;
    gap: 3rem;
}

.nav a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--light-color);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
    background-color: var(--darker-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(106, 17, 203, 0.15), transparent 40%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content .title {
    margin-bottom: 2rem;
}

.hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.4rem;
    color: var(--grey-color);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.automation-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.1);
    border: 2px solid rgba(37, 117, 252, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--secondary-color);
    transition: var(--transition);
    animation: pulse 3s infinite;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.node-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.node-connection {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 500 500"><path d="M150,150 Q250,100 350,250 T150,350" stroke="%232575fc" stroke-width="2" fill="none" stroke-dasharray="5,5" /></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(106, 17, 203, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(37, 117, 252, 0.1);
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.05);
    animation: float 10s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 117, 252, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 117, 252, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 117, 252, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.05);
    filter: blur(50px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.about-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(106, 17, 203, 0.3);
}

.about-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.about-item h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* ===== MODULES SECTION ===== */
.modules {
    background-color: var(--darker-color);
    position: relative;
}

.modules::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="1" cy="1" r="0.5" fill="%23ffffff" opacity="0.05"/></svg>');
    background-repeat: repeat;
    z-index: 1;
    pointer-events: none;
}

.tabs {
    position: relative;
    z-index: 2;
}

.tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.tab-btn {
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    background-color: transparent;
    color: var(--grey-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--light-color);
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: var(--light-color);
    border-color: transparent;
}

.tab-content {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 4rem;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.module-list {
    margin-top: 2rem;
}

.module-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: var(--grey-color);
}

.module-list i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(37, 117, 252, 0.05);
    filter: blur(50px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(106, 17, 203, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    transform: rotate(-5deg);
}

.benefit-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* ===== EVOLUTION SECTION ===== */
.evolution {
    background-color: var(--darker-color);
    position: relative;
}

.evolution::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(37, 117, 252, 0.1), transparent 40%);
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(106, 17, 203, 0), rgba(106, 17, 203, 0.5), rgba(37, 117, 252, 0.5), rgba(37, 117, 252, 0));
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 5rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.4rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(106, 17, 203, 0.2);
}

.timeline-content {
    width: calc(50% - 50px);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    transform: rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
    border-right: none;
    border-top: none;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
    border-left: none;
    border-bottom: none;
}

.timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* ===== BONUS SECTION ===== */
.bonus {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(106, 17, 203, 0.1), transparent 40%);
    z-index: 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(106, 17, 203, 0.3);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.bonus-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(37, 117, 252, 0.1), transparent 40%);
    z-index: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 17, 203, 0.3);
    z-index: 3;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 4;
}

.pricing-header {
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 2.4rem;
    color: var(--grey-color);
    margin-right: 0.5rem;
}

.amount {
    font-size: 6rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.period {
    font-size: 1.6rem;
    color: var(--grey-color);
    margin-left: 0.5rem;
}

.custom-price {
    font-size: 3.2rem;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-features {
    padding: 3rem;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--grey-color);
}

.pricing-features ul li i {
    margin-right: 1rem;
    font-size: 1.6rem;
}

.pricing-features ul li i.fa-check {
    color: var(--success-color);
}

.pricing-features ul li i.fa-times {
    color: var(--danger-color);
}

.pricing-cta {
    padding: 0 3rem 3rem;
}

.guarantee {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    flex: 0 0 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--light-color);
    margin-right: 2rem;
}

.guarantee-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--primary-gradient);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="1" cy="1" r="0.5" fill="%23ffffff" opacity="0.1"/></svg>');
    background-repeat: repeat;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.cta-content p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-content .btn-primary {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: var(--dark-color);
    position: relative;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    flex: 1;
}

.accordion-icon {
    flex: 0 0 auto;
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--darker-color);
    padding: 8rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(106, 17, 203, 0.5), 
        rgba(37, 117, 252, 0.5), 
        transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-brand p {
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    color: var(--grey-color);
    font-size: 1.8rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary-gradient);
    color: var(--light-color);
}

.footer-links h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--grey-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--light-color);
    padding: 1.2rem 1.5rem;
    outline: none;
    font-size: 1.4rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--grey-color);
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 4rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .timeline-content {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--darker-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .nav ul li {
        margin-bottom: 1.5rem;
    }

    .nav ul li:last-child {
        margin-bottom: 0;
    }

    .menu-toggle {
        display: block;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-marker {
        left: 40px;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        border-right: none;
        border-top: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-header {
        padding: 2rem;
    }

    .pricing-features,
    .pricing-cta {
        padding: 2rem;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .tab-btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }

    .newsletter-form button {
        border-radius: var(--border-radius);
    }
} 