/* ============================================
   CAPTA - Sales Page Styles
   Design System: Gold/Champagne + Dark Theme
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    /* Colors */
    --gold-primary: #C9A954;
    --gold-light: #E8D5A3;
    --gold-dark: #A68B3D;
    --gold-gradient: linear-gradient(135deg, #C9A954 0%, #E8D5A3 50%, #C9A954 100%);

    --dark-bg: #0A1628;
    --dark-secondary: #0D1B30;
    --dark-tertiary: #132240;
    --dark-card: #152847;

    --text-light: #FFFFFF;
    --text-muted: #9A9A9A;
    --text-dark: #0A0A0A;

    --success: #4CAF50;
    --error: #E53935;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(201, 169, 84, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ========== Utility Classes ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 84, 0.1);
    border: 1px solid rgba(201, 169, 84, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--text-dark);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-nav {
    padding: 12px 24px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 84, 0.1);
    transition: var(--transition-medium);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-list a:hover {
    color: var(--gold-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 169, 84, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 169, 84, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: url('C símbolo.png') no-repeat center;
    background-size: contain;
    opacity: 0.03;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 169, 84, 0.1);
    border: 1px solid rgba(201, 169, 84, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-primary);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-subtitle strong {
    color: var(--gold-primary);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 0.6s ease 0.5s backwards;
}

.hero-scroll span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(201, 169, 84, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

/* ========== Problems Section ========== */
.problems {
    padding: var(--section-padding) 0;
    background: var(--dark-secondary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: var(--transition-medium);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 84, 0.3);
    box-shadow: var(--shadow-gold);
}

.problem-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 84, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.problem-icon svg {
    stroke: var(--gold-primary);
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.problems-cta {
    text-align: center;
    padding: 40px;
    background: rgba(201, 169, 84, 0.05);
    border: 1px solid rgba(201, 169, 84, 0.2);
    border-radius: var(--radius-md);
}

.problems-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.problems-cta strong {
    color: var(--gold-primary);
}

/* ========== Solution Section ========== */
.solution {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text .section-title {
    text-align: left;
}

.solution-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.solution-text p strong {
    color: var(--gold-primary);
}

.solution-benefits {
    margin-top: 30px;
}

.solution-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solution-benefits li:last-child {
    border-bottom: none;
}

.solution-benefits svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.solution-benefits span {
    font-size: 1rem;
    color: var(--text-light);
}

.solution-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 169, 84, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.solution-card.main-card {
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card p {
    color: var(--text-muted);
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-card svg {
    stroke: var(--gold-primary);
}

.floating-card:nth-child(1) {
    top: -20px;
    left: -80px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 25%;
    right: -100px;
    animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
    bottom: 25%;
    left: -100px;
    animation-delay: 1s;
}

.floating-card:nth-child(4) {
    bottom: -20px;
    right: -80px;
    animation-delay: 1.5s;
}

/* ========== Methodology Section ========== */
.methodology {
    padding: var(--section-padding) 0;
    background: var(--dark-secondary);
}

.methodology-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(201, 169, 84, 0.2) 100%);
}

.timeline-item {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-top: 15px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== Services Section ========== */
.services {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 84, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 84, 0.1);
    border-radius: 50%;
    margin: 0 auto 24px;
}

.service-icon svg {
    stroke: var(--gold-primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-differentials {
    background: rgba(201, 169, 84, 0.05);
    border: 1px solid rgba(201, 169, 84, 0.2);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
}

.services-differentials h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.differential {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.differential svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

/* ========== About Section ========== */
.about {
    padding: var(--section-padding) 0;
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge span:first-child {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.about-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p strong {
    color: var(--gold-primary);
}

.about-values {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-tag {
    padding: 8px 20px;
    background: rgba(201, 169, 84, 0.1);
    border: 1px solid rgba(201, 169, 84, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-primary);
}

/* ========== Target Audience Section ========== */
.target {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
}

.target-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.target-for,
.target-not {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.target-for {
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.target-not {
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.target-for h3,
.target-not h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.target-for h3 svg {
    stroke: var(--success);
}

.target-not h3 svg {
    stroke: var(--error);
}

.target-for ul li,
.target-not ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.target-for ul li:last-child,
.target-not ul li:last-child {
    border-bottom: none;
}

.target-for ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.target-not ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========== Pricing Section ========== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--dark-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 84, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(201, 169, 84, 0.1) 0%, var(--dark-card) 100%);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-range {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-value {
    margin-bottom: 15px;
}

.pricing-value .currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-primary);
    vertical-align: top;
}

.pricing-value .amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-value .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    padding: 30px;
    background: rgba(201, 169, 84, 0.05);
    border-radius: var(--radius-md);
}

.pricing-note strong {
    color: var(--gold-primary);
}

/* ========== FAQ Section ========== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.cta {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(ellipse at center, rgba(201, 169, 84, 0.15) 0%, transparent 60%),
        var(--dark-secondary);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-links a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-links a:hover {
    color: var(--gold-primary);
}

.social-link-labeled {
    padding: 10px 15px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.social-link-labeled:hover {
    border-color: var(--gold-primary);
    background: rgba(201, 169, 84, 0.1);
}

.social-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========== Animations ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

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

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-secondary);
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-medium);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .solution-visual {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 500px;
    }

    .about-badge {
        right: 20px;
    }

    .target-content {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-scroll {
        display: none;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .methodology-timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-image img {
        height: 400px;
    }

    .about-badge {
        position: relative;
        right: 0;
        margin-top: -40px;
        margin-left: auto;
        margin-right: 20px;
        width: fit-content;
    }

    .floating-cards {
        display: none;
    }
}