:root {
    --primary-color: #27ae60;
    --primary-hover: #219a52;
    --secondary-color: #ff9a8b;
    --accent-color: #e67e22;
    --text-primary: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient-1: linear-gradient(90deg, #ff9a8b 0%, #f093fb 100%);
    --bg-gradient-2: linear-gradient(135deg, #ffecd1 0%, #fcb69f 100%);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Georgia', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    font-size: 16px;
    overflow-x: hidden;
    background: var(--bg-gradient-1);
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Navigation */
.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 10px 0;
    transform: translateY(-100%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-sticky.visible {
    transform: translateY(0);
}

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

.nav-logo {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 16px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: var(--transition);
}

.nav-cta:hover,
.nav-cta:focus {
    background: var(--primary-hover);
    transform: translateY(-1px);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 101;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
}

/* General section styling - Mobile First */
.section {
    padding: 15px 10px;
    margin: 0 0 10px 0;
    position: relative;
}

.section:last-child {
    margin-bottom: 0;
}

/* Hero section - Mobile First */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 20px 10px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* Video fallback styles */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
}

.video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: system-ui, -apple-system, sans-serif;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.chat-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: #f0f0f0;
}

.user-message .message-avatar {
    background: #4CAF50;
    color: white;
}

.message-content {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.user-message .message-content {
    background: #4CAF50;
    color: white;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-reply {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.quick-reply:hover {
    background: #f5f5f5;
    border-color: #4CAF50;
}

.chat-input-container {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: #4CAF50;
}

.chat-send {
    width: 44px;
    height: 44px;
    background: #4CAF50;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-send:hover {
    background: #45a049;
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: white;
}

.typing-indicator {
    position: absolute;
    bottom: 80px;
    left: 60px;
    background: white;
    padding: 12px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-box {
        width: calc(100vw - 30px);
        height: 450px;
        bottom: 70px;
        right: -15px;
    }

    .typing-indicator {
        left: 20px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
    opacity: 0.7; /* Overlay to enhance content readability */
    z-index: 0;
}



.logo {
    position: relative;
    display: inline-block;
    z-index: 1;
    max-width: 120px;
    margin: 0 auto 10px;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(1);
    animation: logoLightPulse 5s ease-in-out infinite;
    z-index: -1;
    filter: blur(30px);
}

@keyframes logoLightPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 120px;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.credibility-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 25px;
    margin: 10px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    max-width: 500px;
}

/* CTA Button - Mobile First */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    margin: 10px;
    position: relative;
    overflow: hidden;
    border: none;
}

.cta-button:hover,
.cta-button:focus {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-medium);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section animations */
.section.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* Problem section */
.problem {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.problem h2,
.solution h2,
.program-details h2,
.process h2,
.pricing h2,
.cta-final h2,
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.solution h2 {
    color: var(--primary-color);
}

.contact-info h3 {
    font-size: 1.3rem;
}

.problem h2::after,
.solution h2::after,
.program-details h2::after,
.process h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.solution h2::after {
    background: var(--primary-color);
}

.problem p,
.solution p,
.cta-final p,
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding: 0 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.cta-final p {
    opacity: 0.95;
}

.problem-list,
.solution-features,
.program-grid,
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.problem-item,
.feature,
.program-card,
.process-card {
    background: white;
    padding: 12px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    margin: 0 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.problem-item p,
.feature p,
.program-card p,
.process-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.5;
    max-width: 100%;
}

.problem-item:hover,
.program-card:hover,
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.problem-item h3,
.feature h3,
.program-card h3,
.process-card h3 {
    color: var(--accent-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.problem-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-item h3::before {
    content: '⚠️';
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.2rem;
}

.program-card ul,
.process-card ul {
    list-style: none;
    text-align: left;
}

.program-card li,
.process-card li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.program-card li:hover,
.process-card li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.program-card li::before,
.process-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Solution section */
.solution {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

/* Program details */
.program-details {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
    width: 100%;
}

/* Testimonials section */
.testimonials {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
}

.testimonials-intro {
    margin-bottom: 15px;
    color: var(--text-primary);
    opacity: 0.8;
    font-size: 1.1rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    padding: 0 25px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.testimonial-slide:nth-child(2) {
    border-left-color: var(--accent-color);
}

.testimonial-slide:nth-child(3),
.testimonial-slide:nth-child(6) {
    border-left-color: var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar.accent {
    background: var(--accent-color);
}

.avatar.secondary {
    background: var(--secondary-color);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: bold;
    margin: 0;
    color: var(--text-primary);
}

.author-details {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-primary);
    opacity: 0.7;
}



.testimonials-footer {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.7;
    font-style: italic;
}

/* Pricing section */
.pricing {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.price-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 25px;
    margin: 0 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.price-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.financing-box {
    background: rgba(255, 255, 255, 0.25);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.financing-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.financing-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.pilot-notice {
    background: white;
    border: 2px solid var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin: 15px 0;
    text-align: center;
}

.pilot-notice h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.toggle-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-button.active {
    background: #e74c3c;
    border-color: #e74c3c;
}

/* Price breakdown styles */
.price-breakdown {
    text-align: left;
    max-width: 100%;
}

.price-breakdown h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.3rem;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-check {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-details {
    flex: 1;
}

.price-details strong {
    color: var(--text-light);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.price-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.price-value {
    color: #FFD700;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-total {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.price-total p {
    margin: 5px 0;
}

.price-note {
    color: #FFD700;
    font-size: 0.9rem;
    font-style: italic;
}

/* Urgency counter styles */
.urgency-counter {
    margin-top: 15px;
    padding: 15px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
}

.counter-display {
    text-align: center;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.counter-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #ff6b6b);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 50%; /* 5/10 lugares */
}

.counter-note {
    font-size: 0.8rem;
    color: var(--text-primary);
    text-align: center;
    margin: 5px 0 0 0;
    opacity: 0.8;
}

/* Lead Magnet Styles */
.lead-magnet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 15px;
    margin: 0 0 10px 0;
}

.lead-magnet-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.lead-magnet-content {
    text-align: center;
}

.lead-magnet h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.lead-magnet p {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.lead-magnet-benefits {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.benefit-item {
    color: var(--text-primary);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.benefit-item:last-child {
    border-bottom: none;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.lead-magnet-form input {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.lead-magnet-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.2);
}

.lead-cta {
    background: linear-gradient(45deg, #28a745, #20c997);
    font-size: 1.1rem;
    padding: 15px 25px;
    border: none;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.lead-cta:hover {
    background: linear-gradient(45deg, #218838, #1ba085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 0.7;
    margin-top: 10px;
}

/* Success Cases Styles */
.success-cases {
    background: var(--bg-gradient-2);
    padding: 30px 15px;
    margin: 0 0 10px 0;
}

.success-cases h2 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.success-intro {
    text-align: center;
    color: var(--text-primary);
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.success-case {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.success-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.success-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.success-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-avatar-2 {
    background: var(--accent-color);
}

.success-avatar-3 {
    background: var(--secondary-color);
}

.success-info h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.success-location,
.success-date {
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 2px 0;
}

.success-problem {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.success-problem h4 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 8px;
}

.success-problem p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.4;
}

.success-metrics {
    margin-bottom: 20px;
}

.metric {
    margin-bottom: 15px;
}

.metric-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.metric-bar {
    display: flex;
    gap: 10px;
    align-items: center;
}

.metric-before,
.metric-after {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    flex: 1;
    text-align: center;
}

.metric-before {
    background: #ffebee;
    color: #c62828;
    position: relative;
}

.metric-before::before {
    content: '😰';
    margin-right: 5px;
}

.metric-after {
    background: #e8f5e8;
    color: #2e7d32;
    position: relative;
}

.metric-after::before {
    content: '😊';
    margin-right: 5px;
}

.success-result {
    padding: 20px;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.success-result p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.success-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
}

.success-cta h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Responsive design for success cases */
@media (min-width: 768px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-case:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .success-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .success-case:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

/* CTA final */
.cta-final {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
}

/* Contact section */
.contact-info {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-method {
    padding: 10px;
    background: white;
    border-radius: 10px;
    margin: 0 10px;
}

.contact-method h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-method a {
    color: black;
    text-decoration: none;
    font-size: 1rem;
}

.contact-method a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

/* Contact Form Alternative Styles */
.contact-form-section {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-toggle {
    text-align: center;
    margin-bottom: 20px;
}

.form-toggle h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.toggle-form-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.toggle-form-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.form-header h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-primary);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.2);
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), #20c997);
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: linear-gradient(45deg, var(--primary-hover), #1ba085);
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-primary);
    opacity: 0.7;
    margin-top: 15px;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Process section */
.process {
    background: var(--bg-gradient-1);
    text-align: center;
    padding: 20px 15px;
    margin: 0 0 10px 0;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background: #121212;
        color: #e0e0e0;
    }
    .section,
    .hero,
    .problem,
    .solution,
    .program-details,
    .process,
    .testimonials,
    .pricing,
    .cta-final,
    .contact-info {
        background: var(--bg-gradient-1);
    }
    .logo::before {
        opacity: 0.4;
    }
    .problem-item,
    .program-card,
    .feature,
    .process-card,
    .testimonial-slide,
    .pilot-notice {
        background: #2d2d2d;
        color: #e0e0e0;
    }
    .testimonial-text,
    .author-name,
    .author-details {
        color: #e0e0e0;
    }
    .cta-button {
        background: var(--primary-hover);
    }
}

/* Mobile Navigation */
.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
}

.nav-links.active {
    display: flex;
}

/* Mobile swipe-enabled carousel */
.testimonials-carousel {
    max-width: 100%;
    margin: 0 5px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    transition: none;
    gap: 15px;
    padding: 0 15px;
}

.testimonial-slide {
    min-width: calc(100% - 30px);
    flex-shrink: 0;
    padding: 12px;
    position: relative;
}

/* Subtle swipe indicator for mobile */
.testimonials-carousel::after {
    content: '← Desliza →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-primary);
    opacity: 0.6;
    pointer-events: none;
}

.price-card {
    padding: 15px;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .section {
        padding: 18px 15px;
    }
    
    .hero {
        padding: 25px 15px;
        min-height: 80vh;
    }
    
    
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
    }
    
    
    /* Restore traditional carousel behavior for tablet+ */
    .testimonials-carousel {
        max-width: 700px;
        margin: 0 auto;
        padding: 0 25px;
        overflow: hidden;
    }
    
    /* Hide swipe indicator on tablet+ */
    .testimonials-carousel::after {
        display: none;
    }
    
    .testimonials-track {
        gap: 0;
        padding: 0;
        transition: transform 0.5s ease-in-out;
    }
    
    .testimonial-slide {
        min-width: 100%;
        padding: 18px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .logo::before {
        width: 350px;
        height: 350px;
    }
    
    .logo img {
        max-height: 180px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 1.1rem;
    }
    
    .problem h2,
    .solution h2,
    .program-details h2,
    .process h2,
    .pricing h2 {
        font-size: 2.1rem;
    }
    
    .problem-list,
    .solution-features,
    .program-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    
    .problem-item,
    .feature,
    .program-card,
    .process-card {
        padding: 15px;
        margin: 0;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-carousel {
        max-width: 700px;
    }
    
    .testimonial-slide {
        padding: 18px;
    }
    
    .price-card {
        padding: 25px;
    }
    
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .section {
        padding: 25px 15px;
    }
    
    .hero {
        padding: 30px 15px;
        min-height: 85vh;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .logo::before {
        width: 400px;
        height: 400px;
        filter: blur(50px);
    }
    
    .logo img {
        max-height: 220px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 1.2rem;
    }
    
    .problem h2,
    .solution h2,
    .program-details h2,
    .process h2,
    .pricing h2 {
        font-size: 2.4rem;
    }
    
    .problem-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .solution-features,
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .problem-item,
    .feature,
    .program-card,
    .process-card {
        padding: 18px;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .testimonials-carousel {
        max-width: 900px;
    }
    
    .testimonial-slide {
        padding: 25px;
    }
    
    
    .price-card {
        padding: 30px 40px;
        max-width: 550px;
        margin: 0 auto;
    }
}

/* Large Desktop - 1440px and up */
@media (min-width: 1440px) {
    .section {
        padding: 30px 15px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .logo img {
        max-height: 280px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.3rem;
    }
    
    .problem h2,
    .solution h2,
    .program-details h2,
    .process h2,
    .pricing h2 {
        font-size: 2.8rem;
    }
    
    .solution-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .testimonials-carousel {
        max-width: 1000px;
    }
    
    .testimonial-slide {
        padding: 30px;
    }
    
    .price-card {
        padding: 40px 50px;
        max-width: 600px;
    }
}

