/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #212529;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4ECDC4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3DB5AC;
}

/* Color Classes */
.coral, .coral-text { color: #FF6B35; }
.turquoise, .turquoise-text { color: #4ECDC4; }
.red-text { color: #dc3545; }
.yellow-text { color: #ffc107; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #FF6B35;
    color: white;
}

.btn-primary:hover {
    background-color: #E65A29;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    border: 2px solid #4ECDC4;
    color: #4ECDC4;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #4ECDC4;
    color: white;
}

.btn-white {
    background-color: white;
    color: #FF6B35;
    font-weight: 700;
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.cta-button {
    background-color: #FF6B35;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E65A29;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: white;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.solution-icon.coral {
    background-color: #FF6B35;
    color: white;
}

.solution-icon.turquoise {
    background-color: #4ECDC4;
    color: white;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: #FF6B35;
}

.solution-content {
    margin-bottom: 1.5rem;
}

.solution-problem {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.solution-answer {
    color: #6c757d;
    font-size: 0.9rem;
}

.solution-link {
    display: flex;
    align-items: center;
    color: #FF6B35;
    font-weight: 500;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-link {
    color: #E65A29;
}

/* Value Proposition Section */
.value-proposition {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.value-icon.coral {
    background-color: #FF6B35;
    color: white;
}

.value-icon.turquoise {
    background-color: #4ECDC4;
    color: white;
}

.value-text h3 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: #6c757d;
    font-size: 0.9rem;
}

.value-metrics {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.metrics-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.metric-value.coral {
    color: #FF6B35;
}

.metric-value.turquoise {
    color: #4ECDC4;
}

/* Problem Section */
.problem {
    background-color: #f8f9fa;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.problem-content h2 {
    margin-bottom: 1.5rem;
}

.problem-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    font-size: 1.125rem;
}

.problem-chart {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.chart-color.red { background-color: #dc3545; }
.chart-color.yellow { background-color: #ffc107; }
.chart-color.coral { background-color: #FF6B35; }

.chart-label {
    flex: 1;
    color: #333;
}

.chart-value {
    font-weight: 700;
}

/* Problems Grid - FORZAR 2x2 ESTRICTO */
.problems-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 2rem !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.problem-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    width: 100% !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
}

.problem-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.problem-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    background-color: #fee;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    margin: 1rem 0;
}

.problem-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.problem-impact {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.problem-solution {
    color: #4ECDC4;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Problem Steps */
.problem-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-icon.problem {
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 16px;
}

.step-icon.consequence {
    background-color: #fff3cd;
    color: #856404;
}

.step-icon.solution {
    background-color: #d1ecf1;
    color: #4ECDC4;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.step-content p {
    color: #333;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon.turquoise {
    background-color: #4ECDC4;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Results Section */
.results {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.results-grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.result-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon.coral {
    background-color: #FF6B35;
    color: white;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.result-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.result-description {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Symptoms List */
.symptoms-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.symptom-item i {
    background-color: #fee;
    color: #dc3545;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Cost Metrics */
.cost-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cost-item {
    text-align: center;
}

.cost-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cost-label {
    color: #6c757d;
}

/* Technology Section */
.technology {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.technology-content h2 {
    margin-bottom: 1.5rem;
}

.technology-description {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    background-color: #4ECDC4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.technology-metrics {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Metric Bar */
.metric-bar {
    width: 80px;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    border-radius: 4px;
}

.metric-fill.coral {
    background-color: #FF6B35;
}

.metric-fill.turquoise {
    background-color: #4ECDC4;
}

/* Platform Stats */
.platform-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item-large {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.stat-item-large:nth-child(odd) {
    border-right: 1px solid #e9ecef;
}

/* Principle Section */
.principle {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

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

.principle-quote {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.principle-description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Blockages Section */
.blockages {
    padding: 80px 0;
    background-color: white;
}

.blockages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.blockage-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.blockage-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blockage-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.blockage-icon.coral {
    background-color: #FF6B35;
    color: white;
}

.blockage-icon.turquoise {
    background-color: #4ECDC4;
    color: white;
}

.blockage-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blockage-section {
    margin-bottom: 1.5rem;
}

.blockage-section h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blockage-impact {
    background-color: #fee;
    border-left: 4px solid #dc3545;
    padding: 1rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1rem;
}

.blockage-solution {
    padding: 1rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: 1rem;
}

.blockage-solution.coral {
    background-color: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #FF6B35;
    color: #FF6B35;
}

.blockage-solution.turquoise {
    background-color: rgba(78, 205, 196, 0.1);
    border-left: 4px solid #4ECDC4;
    color: #4ECDC4;
}

/* Diagnostic Section */
.diagnostic {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diagnostic-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.diagnostic-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.diagnostic-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.diagnostic-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.diagnostic-metrics h4 {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.diagnostic-metrics ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.diagnostic-metrics li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.diagnostic-metrics li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4ECDC4;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon.turquoise {
    background-color: #4ECDC4;
    color: white;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.benefit-metric {
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
    padding: 0.75rem;
}

.benefit-metric .metric-value {
    color: #FF6B35;
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #FF6B35 0%, #E65A29 100%);
    padding: 80px 0;
    color: white;
}

.cta-turquoise {
    background: linear-gradient(135deg, #4ECDC4 0%, #3DB5AC 100%);
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 24px;
    width: auto;
}

.footer-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.footer-bottom p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-credit {
    color: #adb5bd;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .value-grid,
    .problem-grid,
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .solutions,
    .services,
    .results {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .principle-quote {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .platform-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item-large:nth-child(odd) {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .cost-number {
        font-size: 2.5rem;
    }
    
    .principle-quote {
        font-size: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card,
    .service-card,
    .blockage-card {
        padding: 1.5rem;
    }
    
    .blockages-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CORRECCIONES DE CONTRASTE Y LEGIBILIDAD
   ========================================================================== */

/* Forzar color de texto oscuro en todos los elementos de tarjetas */
.solution-card,
.service-card,
.problem-card,
.result-card,
.benefit-card,
.diagnostic-card,
.blockage-card {
    color: #212529 !important;
}

/* Asegurar que todos los títulos en tarjetas sean oscuros */
.solution-card h1,
.solution-card h2,
.solution-card h3,
.solution-card h4,
.solution-card h5,
.solution-card h6,
.service-card h1,
.service-card h2,
.service-card h3,
.service-card h4,
.service-card h5,
.service-card h6,
.problem-card h1,
.problem-card h2,
.problem-card h3,
.problem-card h4,
.problem-card h5,
.problem-card h6,
.result-card h1,
.result-card h2,
.result-card h3,
.result-card h4,
.result-card h5,
.result-card h6,
.benefit-card h1,
.benefit-card h2,
.benefit-card h3,
.benefit-card h4,
.benefit-card h5,
.benefit-card h6,
.diagnostic-card h1,
.diagnostic-card h2,
.diagnostic-card h3,
.diagnostic-card h4,
.diagnostic-card h5,
.diagnostic-card h6,
.blockage-card h1,
.blockage-card h2,
.blockage-card h3,
.blockage-card h4,
.blockage-card h5,
.blockage-card h6 {
    color: #212529 !important;
}

/* Títulos específicos de soluciones */
.solution-title {
    color: #212529 !important;
}

.service-title {
    color: #212529 !important;
}

.problem-title {
    color: #212529 !important;
}

.result-title {
    color: #212529 !important;
}

.benefit-title {
    color: #212529 !important;
}

.diagnostic-title {
    color: #212529 !important;
}

.blockage-title {
    color: #212529 !important;
}

/* Párrafos en tarjetas */
.solution-card p,
.service-card p,
.problem-card p,
.result-card p,
.benefit-card p,
.diagnostic-card p,
.blockage-card p {
    color: #212529 !important;
}

/* Descripciones específicas */
.solution-problem,
.solution-answer,
.service-description,
.problem-impact,
.problem-solution,
.result-description,
.benefit-description,
.diagnostic-description {
    color: #212529 !important;
}

/* Botones - asegurar contraste correcto */
.btn-primary {
    background-color: #FF6B35 !important;
    color: #FFFFFF !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #E65A29 !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: transparent !important;
    color: #4ECDC4 !important;
    border: 2px solid #4ECDC4 !important;
}

.btn-secondary:hover {
    background-color: #4ECDC4 !important;
    color: #FFFFFF !important;
}

.btn-white {
    background-color: #FFFFFF !important;
    color: #FF6B35 !important;
}

.btn-white:hover {
    background-color: #f8f9fa !important;
    color: #FF6B35 !important;
}

/* Enlaces en soluciones */
.solution-link {
    color: #FF6B35 !important;
}

.solution-card:hover .solution-link {
    color: #E65A29 !important;
}

/* Asegurar que los iconos en tarjetas mantengan su color */
.solution-icon.coral,
.service-icon.coral,
.result-icon.coral,
.blockage-icon.coral {
    background-color: #FF6B35 !important;
    color: #FFFFFF !important;
}

.solution-icon.turquoise,
.service-icon.turquoise,
.benefit-icon.turquoise,
.blockage-icon.turquoise {
    background-color: #4ECDC4 !important;
    color: #FFFFFF !important;
}

/* Texto en métricas */
.result-number {
    color: #FF6B35 !important;
}

.metric-value.coral {
    color: #FF6B35 !important;
}

.metric-value.turquoise {
    color: #4ECDC4 !important;
}

/* Texto en estadísticas */
.stat-number {
    color: #FF6B35 !important;
}

/* Asegurar legibilidad en listas de beneficios */
.service-benefits,
.symptoms-list {
    color: #212529 !important;
}

.service-benefits li,
.symptoms-list li {
    color: #212529 !important;
}

/* Texto en pasos de problemas */
.step-content h4,
.step-content p {
    color: #212529 !important;
}

/* Asegurar contraste en elementos de valor */
.value-text h3,
.value-text p {
    color: #212529 !important;
}

/* Texto en características tecnológicas */
.feature-item span {
    color: #212529 !important;
}

/* Asegurar contraste en elementos de diagnóstico */
.diagnostic-metrics h4,
.diagnostic-metrics li {
    color: #212529 !important;
}

/* ==========================================================================
   FIN DE CORRECCIONES DE CONTRASTE
   ========================================================================== */

/* Icon Styles for Lucide */
[data-lucide] {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.solution-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.service-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.result-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.blockage-icon [data-lucide] {
    width: 32px;
    height: 32px;
}

.benefit-icon [data-lucide] {
    width: 24px;
    height: 24px;
}

button:focus,
a:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 24pt;
    }
    
    .section-title {
        font-size: 18pt;
    }
}