/* ===== VARIABLES Y RESET ===== */
:root {
    --primary-color: #2e7d32;        /* Verde principal - oscuro, profesional */
    --primary-light: #4caf50;        /* Verde claro para acentos */
    --primary-dark: #1b5e20;          /* Verde más oscuro para hover */
    --secondary-color: #ff8f00;       /* Ámbar para acentos (combustible) */
    --secondary-light: #ffb74d;
    --dark-color: #1f2937;            /* Gris oscuro para textos */
    --gray-color: #6b7280;            /* Gris medio */
    --light-color: #f9fafb;           /* Gris muy claro para fondos */
    --white: #ffffff;
    --black: #111827;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== CONTENEDOR ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

/* ===== HEADER MEJORADO ===== */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary-light);
}

header.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), #0d3d13);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO CON IMAGEN ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text .slogan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text .slogan {
        font-size: 0.7rem;
    }
}

/* ===== NAVEGACIÓN MEJORADA ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

.nav-links a.active {
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

/* Dropdown mejorado */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    display: block;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.dropdown-content a:hover::before {
    left: 100%;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white);
    transform: translateX(5px);
    padding-left: 2rem;
}

.dropdown-content a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-content a:hover i {
    color: var(--white);
}

/* ===== MENÚ MÓVIL MEJORADO ===== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Muestra el botón hamburguesa en móviles */
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0; /* Muestra el menú deslizando desde la derecha */
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Animación escalonada para los items del menú */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    /* Overlay oscuro cuando el menú está abierto */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        max-width: none;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
    transform: translateY(0);
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.highlight-green {
    color: var(--primary-light);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== FEATURED BAR ===== */
.featured-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 2rem 0;
    color: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.featured-item i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.featured-item h4 {
    margin-bottom: 0.25rem;
    color: var(--white);
    font-size: 1.25rem;
}

.featured-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== CARDS ===== */
.intro {
    padding: 5rem 0;
    background: var(--light-color);
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.card-fuel::before {
    background: linear-gradient(90deg, var(--secondary-color), #ffb74d);
}

.card-green::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-fuel .card-icon {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.card p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
}

.card-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-card:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* ===== FEATURED SECTIONS ===== */
.featured-section {
    padding: 5rem 0;
}

.fuel-featured {
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.green-featured {
    background: linear-gradient(135deg, #f0f7f4, #fff);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-wrapper.reverse {
    direction: rtl;
}

.featured-wrapper.reverse .featured-content {
    direction: ltr;
}

.featured-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tag.green-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.featured-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-text {
    color: var(--dark-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-text:hover {
    gap: 1rem;
    color: var(--primary-color);
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.experience-badge,
.quality-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 150px;
}

.quality-badge {
    left: -20px;
    right: auto;
}

.experience-badge .years,
.quality-badge i {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.quality-badge i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.experience-badge .text,
.quality-badge span:last-child {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.product-preview {
    margin: 2rem 0;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.product-preview h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-color);
}

.preview-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 5rem 0;
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-item h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-item p {
    margin: 0;
    color: var(--gray-color);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.8s ease;
}

.testimonial-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--white);
}

.testimonial-author p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.stats-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== PARTNERS ===== */
.partners {
    padding: 4rem 0;
    background: var(--light-color);
}

.partners h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.partner-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0.7;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.6), rgba(46, 125, 50, 0.6));
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    background-size: 30px 30px;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.banner-content h2 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-divider {
    width: 80px;
    height: 4px;
    background: var(--white);
    margin: 1.5rem auto;
}

.banner-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-history {
    padding: 5rem 0;
}

.history-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text .section-subtitle {
    margin-bottom: 0.5rem;
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.history-content {
    margin-top: 2rem;
}

.history-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--gray-color);
}

.history-quote {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
}

.history-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.history-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
    padding-left: 2rem;
}

.quote-author {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.history-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.history-main-image,
.history-secondary-image {
    position: relative;
}

.history-main-image img,
.history-secondary-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.history-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 100px;
}

.history-secondary-image .history-badge {
    left: -10px;
    right: auto;
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Timeline */
.timeline-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: calc(50% - 3rem);
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.timeline-content p {
    margin: 0;
    color: var(--gray-color);
}

/* Mission Vision Values */
.mission-vision {
    padding: 5rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mvv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.mvv-item.mission-item::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.mvv-item.vision-item::before {
    background: linear-gradient(90deg, var(--secondary-color), #ffb74d);
}

.mvv-item.values-item::before {
    background: linear-gradient(90deg, #9c27b0, #ba68c8);
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-item .mvv-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.vision-item .mvv-icon {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
}

.values-item .mvv-icon {
    background: linear-gradient(135deg, #ba68c8, #9c27b0);
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mvv-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.mvv-item p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--gray-color);
}

.values-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.mvv-footer {
    margin-top: 1.5rem;
}

.mvv-tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--light-color);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Differentiators */
.differentiators {
    padding: 5rem 0;
    background: var(--light-color);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.diff-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.diff-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.diff-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.diff-content p {
    margin: 0;
    color: var(--gray-color);
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

/* Certifications */
.certifications {
    padding: 4rem 0;
    background: var(--light-color);
}

.certifications-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.certifications-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.certifications-text p {
    color: var(--gray-color);
}

.certifications-logos {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.cert-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cert-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cert-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.cert-logo:hover img {
    filter: grayscale(0);
}

/* ===== PRODUCTS PAGE ===== */
.categories-intro {
    padding: 4rem 0;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-stats {
    display: flex;
    gap: 2rem;
}

.intro-stat {
    text-align: center;
}

.intro-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.intro-stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Showcase */
.categories-showcase {
    padding: 2rem 0 4rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.showcase-card {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.showcase-card.fuel-card {
    background: linear-gradient(135deg, #fff5f5, var(--white));
}

.showcase-card.green-card {
    background: linear-gradient(135deg, #f0f7f4, var(--white));
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.fuel-card::before {
    background: linear-gradient(90deg, var(--secondary-color), #ffb74d);
}

.green-card::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.showcase-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.fuel-card .showcase-icon i {
    color: var(--secondary-color);
    font-size: 3rem;
}

.green-card .showcase-icon i {
    color: var(--primary-color);
    font-size: 3rem;
}

.showcase-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-card p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
}

.fuel-card .showcase-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.green-card .showcase-link:hover {
    color: var(--primary-color);
    gap: 1rem;
}

/* Category Detailed */
.category-detailed {
    padding: 5rem 0;
}

.fuel-detailed {
    background: linear-gradient(135deg, #fff5f5, var(--white));
}

.green-detailed {
    background: linear-gradient(135deg, #f0f7f4, var(--white));
}

.detailed-header {
    text-align: center;
    margin-bottom: 3rem;
}

.detailed-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detailed-tag.green-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.detailed-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.detailed-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-color);
}

.detailed-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detailed-wrapper.reverse {
    direction: rtl;
}

.detailed-wrapper.reverse .detailed-info {
    direction: ltr;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-color);
}

.feature-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.full-grid {
    grid-template-columns: repeat(2, 1fr);
}

.product-item {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--white), var(--light-color));
}

.product-name {
    display: block;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.product-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.info-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.detailed-image {
    position: relative;
}

.detailed-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-badge.green-badge {
    left: auto;
    right: -20px;
}

.image-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.green-badge i {
    color: var(--primary-color);
}

.image-badge span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Section Divider */
.section-divider {
    padding: 2rem 0;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    width: 100%;
}

/* Specs Section */
.specs-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.spec-card h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--light-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem 0;
    color: var(--gray-color);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.specs-table td:last-child {
    text-align: right;
}

/* Benefits Showcase */
.benefits-showcase {
    padding: 4rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
}

.benefits-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-col {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefit-col-header {
    padding: 2rem;
    text-align: center;
}

.fuel-col .benefit-col-header {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
}

.green-col .benefit-col-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.benefit-col-header i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-col-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.75rem;
}

.benefit-col-list {
    padding: 2rem;
    list-style: none;
}

.benefit-col-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-color);
}

.benefit-col-list i {
    color: var(--primary-color);
}

.fuel-col .benefit-col-list i {
    color: var(--secondary-color);
}

/* Product FAQ */
.product-faq {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--gray-color);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== CONTACT PAGE ===== */
.quick-contact {
    padding: 4rem 0;
    background: var(--light-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quick-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-icon i {
    font-size: 2rem;
    color: var(--white);
}

.quick-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.quick-card p {
    margin: 0.5rem 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.quick-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.25rem 0;
    transition: var(--transition);
}

.quick-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Main */
.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.info-header {
    margin-bottom: 2rem;
}

.info-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-description {
    color: var(--gray-color);
}

.info-details {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--gray-color);
}

.info-content a {
    color: var(--primary-color);
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.info-link:hover {
    gap: 1rem;
}

/* Social Media */
.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.social-icon.facebook { background: #3b5998; }
.social-icon.instagram { background: #e4405f; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.whatsapp { background: #25d366; }
.social-icon.youtube { background: #cd201f; }

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-header p {
    color: var(--gray-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-color);
    opacity: 0.7;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
}

.form-group.checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group.checkbox a:hover {
    color: var(--primary-dark);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Branches */
.branches {
    padding: 5rem 0;
    background: var(--light-color);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.branch-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.branch-city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.branch-city i {
    color: var(--primary-color);
}

.branch-city h4 {
    margin: 0;
    color: var(--dark-color);
}

.branch-card p {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-card i {
    color: var(--primary-color);
    width: 20px;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.map-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--light-color);
}

.map-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.map-buttons {
    display: flex;
    gap: 0.5rem;
}

.map-btn {
    padding: 0.5rem 1.5rem;
    background: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
}

.map-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.map-btn:hover {
    background: var(--primary-light);
    color: var(--white);
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER MEJORADO ===== */
footer {
    background: linear-gradient(135deg, #0f2b13, #1a3f1e);
    color: var(--white);
    padding: 4rem 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.footer-main {
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-main .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    width: 100%;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.9;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--secondary-color);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 143, 0, 0.4);
}

.footer-social a i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    margin-right: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.2);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
    color: var(--white);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 25px;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    width: 100%;
    margin: 0;
}

.footer-bottom .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-bottom i {
    color: #ff4d4d;
    animation: heartbeat 1.5s ease infinite;
    margin: 0 0.2rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Responsive para el footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
        margin: 0 auto;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}

/* ===== ESTILOS PARA PÁGINA DE COMBUSTIBLES ===== */
.fuel-banner {
    background: linear-gradient(135deg, #f57b0063, #ff990066);
}

.fuel-banner.page-banner::before {
    background: linear-gradient(135deg, rgba(245, 123, 0, 0.32), rgba(255, 153, 0, 0.327));
}

.fuel-intro {
    padding: 5rem 0;
}

.fuel-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.fuel-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.fuel-intro-text p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.fuel-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.fuel-stat {
    text-align: center;
}

.fuel-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}

.fuel-stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fuel-intro-image {
    position: relative;
}

.fuel-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.fuel-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fuel-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.fuel-badge span {
    font-weight: 600;
    color: var(--dark-color);
}

.fuel-types {
    padding: 5rem 0;
    background: var(--light-color);
}

.fuel-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-type-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fuel-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.fuel-type-header {
    background: linear-gradient(135deg, #f57c00, #ff9800);
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.fuel-type-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.fuel-type-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.fuel-type-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.fuel-type-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fuel-type-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.fuel-type-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.fuel-type-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.fuel-type-features i {
    color: var(--secondary-color);
}

.fuel-type-footer {
    margin-top: auto;
}

.fuel-type-presentation {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
}

.btn-fuel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-fuel:hover {
    gap: 1rem;
    color: #f57c00;
}

.fuel-specs {
    padding: 5rem 0;
}

.specs-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.fuel-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.fuel-specs-table thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.fuel-specs-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
}

.fuel-specs-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-color);
    color: var(--gray-color);
}

.fuel-specs-table tr:hover td {
    background: var(--light-color);
}

.fuel-specs-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.fuel-services {
    padding: 5rem 0;
    background: var(--light-color);
}

.fuel-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.fuel-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fuel-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f57c00, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.fuel-service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.fuel-service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.fuel-service-card p {
    color: var(--gray-color);
    margin: 0;
}

.fuel-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f57c10, #ff9800);
    color: var(--white);
}

.fuel-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fuel-benefits .benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fuel-benefits .benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.fuel-benefits .benefit-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.fuel-benefits .benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.fuel-logistics {
    padding: 5rem 0;
}

.logistics-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.logistics-content h2 {
    margin-bottom: 1.5rem;
}

.logistics-content p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.logistics-features {
    list-style: none;
    margin-bottom: 2rem;
}

.logistics-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-color);
}

.logistics-features i {
    color: var(--secondary-color);
}

.logistics-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.fuel-sectors {
    padding: 5rem 0;
    background: var(--light-color);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: var(--white);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sector-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.sector-card h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.sector-card p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin: 0;
}

.fuel-faq {
    padding: 5rem 0;
}

/* ===== RESPONSIVE PARA PÁGINA DE COMBUSTIBLES ===== */
@media (max-width: 768px) {
    /* Ajustes generales */
    .fuel-intro-wrapper,
    .logistics-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fuel-intro-image,
    .logistics-image {
        order: -1;
    }
    
    .fuel-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .fuel-stat {
        width: 100%;
        max-width: 250px;
    }
    
    /* Tipos de combustible */
    .fuel-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fuel-type-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Tabla de especificaciones */
    .specs-table-container {
        overflow-x: auto;
    }
    
    .fuel-specs-table {
        min-width: 600px;
    }
    
    .fuel-specs-table th,
    .fuel-specs-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Servicios */
    .fuel-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fuel-service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Beneficios */
    .fuel-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Sectores */
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sector-card {
        padding: 1.5rem 0.5rem;
    }
    
    .sector-card i {
        font-size: 2rem;
    }
    
    .sector-card h4 {
        font-size: 0.9rem;
    }
    
    .sector-card p {
        font-size: 0.75rem;
    }
    
    /* FAQ */
    .faq-grid {
        padding: 0 0.5rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    /* Header y navegación (ya deberían estar, pero por si acaso) */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .fuel-type-header h3 {
        font-size: 1.3rem;
    }
    
    .fuel-type-content p {
        font-size: 0.9rem;
    }
    
    .fuel-type-features li {
        font-size: 0.85rem;
    }
    
    .btn-fuel {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .fuel-badge {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .logistics-content h2 {
        font-size: 1.5rem;
    }
    
    .logistics-features li {
        font-size: 0.85rem;
    }
}

/* ===== ESTILOS PARA PÁGINA DE FERTILIZANTES ===== */
.green-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.green-banner.page-banner::before {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.8), rgba(46, 125, 50, 0.8));
}

.green-intro {
    padding: 5rem 0;
    background: var(--light-color);
}

.green-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.green-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.green-intro-text p {
    margin-bottom: 2rem;
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.green-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.green-stat {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    flex: 1;
}

.green-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.green-stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.green-intro-image {
    position: relative;
}

.green-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.green-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--primary-light);
}

.green-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.green-badge span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.green-products {
    padding: 5rem 0;
    background: var(--light-color);
}

.green-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.green-product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.green-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.green-product-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.green-product-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255,255,255,0.3);
}

.green-product-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.green-product-header h3 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.green-product-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.green-product-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.green-product-specs {
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: var(--gray-color);
    font-weight: 500;
}

.spec-value {
    color: var(--dark-color);
    font-weight: 600;
}

.green-product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.green-product-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.green-product-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.green-product-footer {
    margin-top: auto;
}

.btn-green-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.btn-green-small:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.green-specs {
    padding: 5rem 0;
    background: var(--white);
}

.specs-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.green-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.green-specs-table thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.green-specs-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.green-specs-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-color);
    color: var(--gray-color);
}

.green-specs-table tr:hover td {
    background: var(--light-color);
}

.green-specs-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.green-services {
    padding: 5rem 0;
    background: var(--light-color);
}

.green-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.green-service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.green-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.green-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

.green-service-icon i {
    font-size: 3rem;
    color: var(--white);
}

.green-service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.4rem;
}

.green-service-card p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.green-benefits {
    padding: 5rem 2rem; /* Espacio interno */
    background: linear-gradient(135deg, var(--primary-dark), #0f3a13);
    color: var(--white);
    position: relative;

    /* 👇 Esto hace que ocupe todo el ancho real */
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: 50%;
    margin-right: -50vw;
}

.green-benefits .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem; /* El padding solo aquí para centrar contenido */
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.green-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.benefits-list .benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list .benefit-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 0.1rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

.benefits-list .benefit-item h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.benefits-list .benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--secondary-color);
}

.green-crops {
    padding: 5rem 0;
    background: var(--white);
}

.crops-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.crop-item {
    background: var(--light-color);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.crop-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--white), var(--light-color));
    border-color: var(--primary-light);
}

.crop-item i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.crop-item span {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.green-faq {
    padding: 5rem 0;
    background: var(--light-color);
}

/* ===== TARJETAS GIRATORIAS ===== */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 500px;
    perspective: 1500px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flip-card:hover {
    transform: translateY(-8px);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
}

.flip-card:hover .flip-card-inner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

/* ===== CARA FRONTAL ===== */
.flip-card-front {
    background-color: var(--white);
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.flip-card-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.flip-card-front:hover::after {
    opacity: 1;
}

.flip-card-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.flip-card-front:hover::before {
    opacity: 0.3;
    transform: scale(1);
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.front-content {
    display: none;
}

/* ===== CARA POSTERIOR MEJORADA ===== */
.flip-card-back {
    background: linear-gradient(145deg, var(--primary-dark), #0f3a13);
    color: var(--white);
    transform: rotateY(180deg);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.flip-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(255,143,0,0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.flip-card-back-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(255,255,255,0.15);
}

.flip-card-back-content::-webkit-scrollbar {
    width: 6px;
}

.flip-card-back-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.flip-card-back-content::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.flip-card-back-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
    transform: scale(1.1);
}

.flip-card-back-content > * {
    position: relative;
    z-index: 3;
    width: 100%;
    flex-shrink: 0;
}

/* ===== TÍTULO PRINCIPAL ===== */
.flip-card-back-content h3 {
    color: #ffffff !important;
    margin: 0 0 1.2rem 0 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
    border-bottom: 3px solid var(--secondary-color) !important;
    padding-bottom: 0.7rem !important;
    width: 100% !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
    position: relative !important;
}

.product-detail-section {
    margin-bottom: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.product-detail-section:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-detail-section h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    border-left: 4px solid var(--secondary-color);
    padding-left: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.detail-description,
.detail-text {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.detail-presentation {
    font-size: 0.9rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
}

.detail-presentation strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.product-advantages {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
}

.product-advantages li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 3;
}

.product-advantages li:hover {
    background: var(--secondary-color);
    transform: translateX(3px);
    border-color: var(--white);
}

.product-advantages li:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.product-advantages li:hover span {
    color: var(--white);
}

.product-advantages i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.flip-card-back-content .btn-card {
    display: inline-block;
    margin: 1.5rem 0 0 0;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 3;
}

.flip-card-back-content .btn-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    opacity: 0.5;
}

.flip-card-back-content .btn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
    letter-spacing: 1.5px;
}

.flip-card-back-content .btn-card:hover::before {
    width: 400px;
    height: 400px;
}

.flip-card-back-content .btn-card:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.flip-card-back-content > *:last-child {
    margin-bottom: 0;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loader {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease;
}

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-light { background: var(--light-color); }
.bg-white { background: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== SPLASH SCREEN ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.splash-logo {
    width: 350px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.splash-loader {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.loader-circle {
    width: 15px;
    height: 15px;
    background: var(--white);
    border-radius: 50%;
    animation: loader 1.5s infinite ease-in-out;
}

.loader-circle:nth-child(1) {
    animation-delay: -0.3s;
}

.loader-circle:nth-child(2) {
    animation-delay: -0.15s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0;
}

.splash-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .splash-logo {
        width: 200px;
    }
    
    .loader-circle {
        width: 12px;
        height: 12px;
    }
    
    .splash-text {
        font-size: 1rem;
    }
}

/* ===== AJUSTES GENERALES PARA MÓVILES ===== */
@media (max-width: 768px) {
    /* Ajustes generales */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        width: 100%;
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header */
    header {
        padding: 0.5rem 0;
        width: 100%;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    /* Hero section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    /* Featured bar */
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .featured-item {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-item i {
        font-size: 2rem;
    }
    
    .featured-item h4 {
        font-size: 1rem;
    }
    
    .featured-item p {
        font-size: 0.8rem;
    }
    
    /* Cards */
    .cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    /* Featured sections */
    .featured-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }
    
    .featured-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .featured-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .featured-buttons .btn,
    .featured-buttons .btn-text {
        width: 100%;
        text-align: center;
    }
    
    .featured-image img {
        width: 100%;
        height: auto;
    }
    
    .experience-badge,
    .quality-badge {
        position: static;
        margin: 1rem auto 0;
        max-width: 200px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    /* Page banner */
    .page-banner {
        padding: 3rem 0;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    /* About page */
    .history-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-text h2 {
        font-size: 2rem;
    }
    
    .history-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .history-main-image img,
    .history-secondary-image img {
        width: 100%;
    }
    
    /* Mission vision values */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mvv-item {
        padding: 1.5rem;
    }
    
    /* Differentiators */
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .diff-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .diff-number {
        font-size: 2rem;
    }
    
    /* Team section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Certifications */
    .certifications-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .certifications-logos {
        justify-content: center;
    }
    
    .cert-logo {
        padding: 1rem;
    }
    
    /* Products page */
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-card {
        padding: 2rem 1rem;
    }
    
    .showcase-card h3 {
        font-size: 1.5rem;
    }
    
    .showcase-icon {
        width: 80px;
        height: 80px;
    }
    
    .showcase-icon i {
        font-size: 2rem;
    }
    
    /* Category detailed */
    .detailed-header h2 {
        font-size: 2rem;
    }
    
    .detailed-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-footer {
        flex-direction: column;
    }
    
    .info-footer .btn,
    .info-footer .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .image-badge {
        position: static;
        margin: 1rem auto 0;
    }
    
    /* Specs section */
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .spec-card {
        padding: 1.5rem;
        overflow-x: auto;
    }
    
    .specs-table {
        min-width: 100%;
    }
    
    /* Benefits showcase */
    .benefits-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-col-header {
        padding: 1.5rem;
    }
    
    .benefit-col-header i {
        font-size: 2.5rem;
    }
    
    .benefit-col-header h4 {
        font-size: 1.3rem;
    }
    
    .benefit-col-list {
        padding: 1.5rem;
    }
    
    /* Contact page */
    .quick-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .quick-card {
        padding: 1.2rem;
    }
    
    .quick-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-icon i {
        font-size: 1.5rem;
    }
    
    .quick-card h4 {
        font-size: 1rem;
    }
    
    .quick-card p {
        font-size: 0.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-link {
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Map */
    .map-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* FAQ */
    .faq-grid {
        padding: 0;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    /* CTA section */
    .cta-wrapper h3 {
        font-size: 1.8rem;
    }
    
    .cta-wrapper p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-buttons .btn,
    .cta-buttons .btn-outline-light {
        width: 100%;
        text-align: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
        margin: 0 auto;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    /* Flip cards (tarjetas giratorias) */
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .flip-card {
        height: 480px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .flip-card-back-content {
        padding: 1.2rem;
    }
    
    .flip-card-back-content h3 {
        font-size: 1.3rem;
    }
    
    .product-detail-section {
        padding: 0.6rem;
    }
    
    .product-detail-section h4 {
        font-size: 0.9rem;
    }
    
    .detail-description,
    .detail-text {
        font-size: 0.75rem;
    }
    
    .product-advantages {
        grid-template-columns: 1fr;
    }
    
    .product-advantages li {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}

/* ===== AJUSTES PARA MÓVILES MUY PEQUEÑOS ===== */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        flex-direction: row;
        text-align: left;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .green-stat-number {
        font-size: 1.8rem;
    }
    
    .green-stat-label {
        font-size: 0.8rem;
    }
    
    .stats-grid-cards {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .crops-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .crop-item {
        padding: 1rem;
    }
    
    .crop-item i {
        font-size: 2rem;
    }
    
    .crop-item span {
        font-size: 0.9rem;
    }
    
    .fuel-types-grid {
        grid-template-columns: 1fr;
    }
    
    .green-products-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .flip-card {
        height: 500px;
    }
}
