/* ===============================================
   MINERALIZACIÓN CATALÍTICA - REDESIGN 2024
   =============================================== */

/* ================= VARIABLES ================= */
:root {
    --color-primary: #00897B;
    --color-primary-light: #00695C;
    --color-accent: #f07e26;
    --color-accent-bright: #f07e26;
    --color-text: #212529;
    --color-text-light: #495057;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #004D40 0%, #00897B 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-main: 'Maiandra GD', 'Century Gothic', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ================= UTILITIES ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* ================= HERO SECTION ================= */
.hero-mineralizacion {
    position: relative;
    min-height: 500px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
    margin-top: 80px;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-mineralizacion h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-mineralizacion p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--color-accent-bright);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 126, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 126, 38, 0.6);
    background: #e67e22;
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ================= SERVICE DESCRIPTION ================= */
.service-description {
    padding: 100px 0;
    background: var(--color-white);
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.description-text h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.features-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.feature-item h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.description-image {
    position: sticky;
    top: 100px;
}

.video-card {
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    padding-top: 1rem;
    font-weight: 500;
    color: var(--color-primary-light);
}

/* ================= SYSTEM COMPONENTS ================= */
.system-components {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.system-components h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.component-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.component-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.component-card h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.component-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.component-card ul {
    list-style: none;
    padding: 0;
}

.component-card li {
    padding: 0.5rem 0;
    color: var(--color-text);
    position: relative;
    padding-left: 1.5rem;
}

.component-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* ================= TECHNICAL SPECS ================= */
.technical-specs {
    padding: 80px 0;
    background: var(--color-white);
}

.technical-specs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.spec-card:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.spec-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.spec-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.spec-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ================= IMPLEMENTATION PROCESS ================= */
.implementation-process {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.implementation-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.process-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.process-item {
    display: flex;
    gap: 2rem;
    align-items: start;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.process-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.process-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ================= RESULTS SECTION ================= */
.results-section {
    padding: 80px 0;
    background: var(--color-white);
    color: var(--color-text);
}

.results-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
}

.result-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-description p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* ================= BENEFITS ================= */
.benefits {
    padding: 80px 0;
    background: var(--color-white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ================= APPLICATIONS ================= */
.applications {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.applications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.application-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.application-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.application-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.application-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
    padding: 2rem;
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.testimonial-content footer {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
}

/* ================= CTA ================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-primary);
    text-align: center;
    color: white;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.9), rgba(0, 137, 123, 0.95));
}

.container.relative {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.btn-white {
    background: white;
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: 0.3s;
}

.btn-white:hover {
    background: var(--color-accent-bright);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-mineralizacion h1 {
        font-size: 2.5rem;
    }

    .description-content {
        grid-template-columns: 1fr;
    }

    .description-image {
        position: static;
        margin-top: 2rem;
    }

    .components-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-mineralizacion {
        padding: 60px 0;
    }

    .hero-mineralizacion h1 {
        font-size: 2rem;
    }

    .hero-mineralizacion p {
        font-size: 1.1rem;
    }

    .description-text h2 {
        font-size: 2rem;
    }

    .components-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        flex-direction: column;
    }

    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
}