/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.highlight {
    color: #16a34a;
}

.green { color: #16a34a; }
.blue { color: #2563eb; }
.purple { color: #9333ea; }
.orange { color: #ea580c; }
.red { color: #dc2626; }
.indigo { color: #4f46e5; }

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.wpp-flutuante {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 80px;
    background-color: #0fb34b;
    border-radius: 50%;
    padding: 16px;
    height: 80px;
}
.wpp-flutuante img {
    max-width: 100%;
}
.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
}

.btn-outline {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.btn-outline:hover {
    background: #16a34a;
    color: white;
}

.btn-white {
    background: white;
    color: #16a34a;
}

.btn-white:hover {
    background: #f0f9ff;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #16a34a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}



.logo h1 {
    font-size: 24px;
    color: #333;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #16a34a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: #16a34a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image video {
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.mockup {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.julia-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
}

.julia-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.julia-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.julia-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.julia-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #16a34a;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}

/* Chat Preview */
.chat-preview {
    padding: 60px 0;
    background: #f8fafc;
}

.chat-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chat-message {
    margin-bottom: 16px;
    display: flex;
}

.chat-message.julia {
    justify-content: flex-start;
}

.chat-message.customer {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 16px;
}

.chat-message.julia .message-bubble {
    background: #16a34a;
    color: white;
}

.chat-message.customer .message-bubble {
    background: #e5e7eb;
    color: #333;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.section-header.white h2,
.section-header.white p {
    color: white;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.problem-number {
    font-size: 5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 16px;
}

.problem-text {
    font-size: 1.1rem;
    color: #6b7280;
}

.calculator-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.calculator-card h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #16a34a;
}

.calculator-result {
    text-align: center;
    font-size: 1.1rem;
    color: #dc2626;
    font-weight: 600;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-icon.green { background: #16a34a; }
.feature-icon.blue { background: #2563eb; }
.feature-icon.purple { background: #9333ea; }

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: #d1d5db;
}

.solution-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Comparison */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-card {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.comparison-card.negative {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.comparison-card.positive {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1f2937;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comparison-item {
    padding: 8px 0;
    color: #111827;
    font-weight: 500;
    text-align: left;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 6px;
    color: white;
}


.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Sectors Section */
.sectors {
    padding: 80px 0;
    background: #f8fafc;
}

.sector-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sector-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.sector-tab.active,
.sector-tab:hover {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
}

.sector-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sector-panel {
    display: none;
}

.sector-panel.active {
    display: block;
}

.sector-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sector-text h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #1f2937;
}

.sector-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-features li {
    font-size: 1.1rem;
    color: #374151;
}

.sector-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}
.sectors .btn-primary {
    max-width: fit-content;
    font-size: 1.75rem;
    display: block;
    margin: 40px auto 0;
}
/* Cases Section */
.cases {
    padding: 80px 0;
    background: white;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.case-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #16a34a;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.case-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.case-info h4 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 4px;
}

.case-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.case-quote {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-result {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    color: white;
}

.case-result.green { background: #16a34a; }
.case-result.blue { background: #2563eb; }
.case-result.purple { background: #9333ea; }

/* ROI Section */
.roi {
    padding: 80px 0;
    background: #f8fafc;
}

.roi-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.roi-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.roi-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #1f2937;
}

.roi-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roi-items p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.roi-result {
    font-size: 1.3rem;
    color: #16a34a;
    margin-top: 24px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 8px;
    text-align: center;
}

.roi-final {
    font-size: 1.5rem;
    color: #16a34a;
    margin-top: 16px;
    padding: 20px;
    background: #16a34a;
    color: white;
    border-radius: 8px;
    text-align: center;
}

.roi-image img {
    width: 100%;
    height: auto;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 16px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #16a34a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #16a34a;
    color: white;
    text-align: center;
}
.pricing-content {
    display: flex;
}
.pricing-content h2 {
    font-size: 2.5rem;
}
.pricing-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.pricing-titles p {
    font-size: 1.7rem;
}
.discount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.pricing-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.pricing-card .btn-primary {
    animation: pulse 1s ease infinite;
}
.pricing-text {
    font-size: 1.7rem;
    margin-bottom: 32px;
}

.pricing-value {
    text-decoration: line-through;
    font-size: 2rem;
    font-weight: 700;
    color: #16a34a;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

p.guarantee {
    color: #50cf19;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 150px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li {
    color: #d1d5db;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #16a34a;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1, h2, h3 {
        line-height: 1.2;
    }
    .sector-tab, .feature-content {
        width: 100%;
    }
    .logo-img {
        width: 100px;
    }
    .process {
        padding: 40px 0;
    }
    .pricing-content {
        gap: 20px;
        flex-direction: column;
    }
    .sector-features li {
        text-align: left;
    }
    .sectors .btn-primary {
        font-size: 1.2rem;
    }
    .process-steps {
        gap: 8px;
    }
    .feature-item {
        align-items: center;
        flex-direction: column;
    }
    .feature-content {
        text-align: center;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-stats {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .sector-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .roi-content {
        grid-template-columns: 1fr;
    }
    .process-step {
        padding: 16px;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sector-tabs {
        flex-direction: column;
        align-items: center;
    }
    section {
        padding: 30px 0 !important;
    }
    .hero {
        padding: 150px 0 !important;
    }
    h2 {
        font-size: 2rem !important;
    }
}

@keyframes pulse {
    0% {
    transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}