/* ============================================
   ESTILOS GLOBALES - SAID SAS
   Colores: #054221 (verde oscuro), #2dab66 (verde claro), #e1e1e1 (gris)
   ============================================ */

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

:root {
    --primary: #054221;
    --secondary: #2dab66;
    --accent: #e1e1e1;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --text: #333333;
    --success: #2dab66;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

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

/* ============================================
   HEADER FIJO
   ============================================ */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%), url('images/textura.png');
    background-blend-mode: overlay;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo img {
    height: 45px;
    width: 45px;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary);
}

.social-header {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.social-header a {
    color: white;
    transition: transform 0.3s ease;
}

.social-header a:hover {
    transform: scale(1.2);
    color: var(--secondary);
}

/* Espaciado top para contenido */
body > section:first-of-type,
body > main > section:first-of-type {
    margin-top: 80px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background-size: 1920px 600px;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 66, 33, 0.05);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 50px;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BOTONES CTA
   ============================================ */
.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    cursor: pointer;
    font-size: 15px;
}

.cta-button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 171, 102, 0.3);
}

.cta-button-large {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    cursor: pointer;
    font-size: 16px;
}

.cta-button-large:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 171, 102, 0.4);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.servicios-home,
.caracteristicas,
.page-header,
.about-section,
.team-section,
.fortalezas-section,
.proceso-section,
.beneficios-compost,
.aplicaciones-section,
.composicion-section,
.contacto-content,
.mapa-section,
.servicios-rapidos,
.casos-section,
.instagram-section,
.compost-hero {
    padding: 80px 20px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* TÍTULOS DE SECCIÓN */
.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 16px;
}

/* ============================================
   SERVICIOS HOME
   ============================================ */
.servicios-home {
    background: var(--light);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.servicio-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--secondary);
}

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

.servicio-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    color: var(--secondary);
}

.servicio-card h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.servicio-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   CARACTERÍSTICAS
   ============================================ */
.caracteristicas {
    background: white;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.caracteristica-card {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f7f0 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary);
    transition: all 0.3s ease;
}

.caracteristica-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(45, 171, 102, 0.15);
}

.caracteristica-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.caracteristica-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ============================================
   SERVICIOS DETALLE
   ============================================ */
.servicio-detalle {
    padding: 80px 20px;
}

.servicio-detalle.alt {
    background: var(--light);
}

.servicio-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.servicio-contenido.reverse {
    grid-template-columns: 1fr 1fr;
}

.servicio-contenido.reverse > :first-child {
    order: 2;
}

.servicio-contenido.reverse > :last-child {
    order: 1;
}

.servicio-texto h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.servicio-texto p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.beneficios {
    list-style: none;
    margin: 30px 0;
}

.beneficios li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.beneficios li:last-child {
    border-bottom: none;
}

.servicio-imagen {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.servicio-imagen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   CASOS DE ÉXITO
   ============================================ */
.casos-section {
    padding: 80px 20px;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.caso-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.caso-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.caso-imagen {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.caso-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.caso-card:hover .caso-imagen img {
    transform: scale(1.05);
}

.caso-contenido {
    padding: 25px;
}

.caso-contenido h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.caso-contenido p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.caso-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat strong {
    display: block;
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 5px;
}

.stat span {
    display: block;
    color: #999;
    font-size: 13px;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    background: var(--light);
    padding: 80px 20px;
}

.instagram-card {
    background: white;
    border-radius: 12px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.instagram-content h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.instagram-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.instagram-icon {
    font-size: 120px;
    opacity: 1;
}

/* ============================================
   QUIÉNES SOMOS
   ============================================ */
.about-section {
    padding: 80px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-imagen {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-imagen img {
    width: 100%;
    height: auto;
    display: block;
}

.about-texto h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-texto h3 {
    color: var(--secondary);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-texto p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.valores-list {
    list-style: none;
    margin-top: 20px;
}

.valores-list li {
    padding: 12px 0 12px 25px;
    border-bottom: 1px solid #eee;
    position: relative;
    color: #555;
}

.valores-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.valores-list li:last-child {
    border-bottom: none;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    background: var(--light);
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.team-member {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-icon {
    font-size: 64px;
    margin-bottom: 10px;
    display: block;
}

.team-member h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    font-size: 15px;
    line-height: 1;
}

/* ============================================
   FORTALEZAS
   ============================================ */
.fortalezas-section {
    padding: 80px 20px;
}

.fortalezas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.fortaleza-card {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f7f0 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary);
    transition: all 0.3s ease;
}

.fortaleza-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(45, 171, 102, 0.2);
}

.fortaleza-card h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.fortaleza-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   COMPOSTAJE
   ============================================ */
.compost-hero {
    padding: 80px 20px;
    display: flex;
    align-items: center;
}

.hero-compost-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compost-imagen {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.compost-imagen img {
    width: 100%;
    height: auto;
    display: block;
}

.compost-texto h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 10px;
}

.marca-text {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.compost-texto p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.producto-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

.feature strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.feature span {
    display: block;
    color: #999;
    font-size: 13px;
}

/* PROCESO */
.proceso-section {
    background: var(--light);
    padding: 80px 20px;
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* BENEFICIOS COMPOST */
.beneficios-compost {
    padding: 80px 20px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.beneficio-card {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f7f0 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(45, 171, 102, 0.2);
}

.beneficio-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.beneficio-card h4 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.beneficio-card ul {
    list-style: none;
    text-align: left;
}

.beneficio-card li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid rgba(45, 171, 102, 0.1);
}

.beneficio-card li:last-child {
    border-bottom: none;
}

/* APLICACIONES */
.aplicaciones-section {
    background: var(--light);
    padding: 80px 20px;
}

.aplicaciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.aplicacion-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.aplicacion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.aplicacion-imagen {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.aplicacion-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aplicacion-item:hover .aplicacion-imagen img {
    transform: scale(1.08);
}

.aplicacion-item h3 {
    color: var(--primary);
    padding: 25px 25px 10px;
    font-size: 22px;
}

.aplicacion-item p {
    color: #666;
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.7;
}

/* COMPOSICIÓN */
.composicion-section {
    padding: 80px 20px;
}

.composicion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.composicion-texto h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 20px;
}

.composicion-texto p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.composicion-list {
    list-style: none;
}

.composicion-list li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.composicion-list li:last-child {
    border-bottom: none;
}

.nutrientes-chart {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nutriente-bar {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nutriente-bar span {
    width: 40px;
    font-weight: bold;
    color: var(--primary);
}

.nutriente-bar .bar {
    height: 30px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 8px;
    flex: 1;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto-content {
    padding: 80px 20px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contacto-info h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 35px;
}

.info-card {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f7f0 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.info-card p,
.info-card a {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.social-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%);
    color: white;
}

.social-card h4 {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 6px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* FORMULARIO */
.contacto-form h2 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 35px;
}

.form-contacto {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45, 171, 102, 0.1);
}

.form-group button {
    width: 100%;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 15px;
}

/* MAPA */
.mapa-section {
    padding: 80px 20px;
    background: var(--light);
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 60px;
}

/* SERVICIOS RÁPIDOS */
.servicios-rapidos {
    padding: 80px 20px;
}

.servicios-rapidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.servicio-rapido {
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.servicio-rapido:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(5, 66, 33, 0.3);
    background: linear-gradient(135deg, #0d5a2f 0%, var(--primary) 100%);
}

.servicio-rapido span {
    font-size: 48px;
}

.servicio-rapido p {
    color: white;
    font-weight: 600;
}

/* ============================================
   FOOTER FIJO
   ============================================ */
.footer-fixed {
    background: var(--primary) url('images/textura.png');
    background-blend-mode: overlay;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 80px;
    border-top: 3px solid var(--secondary);
}

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

.footer-section h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 24px;
}

.footer-social a {
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}
/* ============================================
   HERO SERVICIOS (Para páginas internas)
   ============================================ */
.hero-servicios {
    background: linear-gradient(135deg, var(--primary) 0%, #0d5a2f 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-servicios h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-servicios p {
    font-size: 16px;
    opacity: 0.9;
}
/* ============================================
   MENÚ HAMBURGUESA
   ============================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2dab66;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-menu.active {
    display: block !important;
}

.nav-menu {
    position: static;
    background: transparent;
    padding: 0;
    display: flex;
}

.nav-menu ul {
    display: flex;
    flex-direction: row;
    gap: 5px;
    list-style: none;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: block !important;
    }

    .nav-menu ul {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active ul {
        display: flex;
    }

    .logo span {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .servicios-grid,
    .caracteristicas-grid,
    .casos-grid,
    .servicio-contenido,
    .about-content,
    .team-grid,
    .fortalezas-grid,
    .hero-compost-content,
    .proceso-steps,
    .beneficios-grid,
    .aplicaciones-grid,
    .composicion-content,
    .contacto-grid {
        grid-template-columns: 1fr !important;
    }

    .servicio-contenido.reverse {
        grid-template-columns: 1fr !important;
    }

    .servicio-contenido.reverse > :first-child {
        order: 0;
    }

    .servicio-contenido.reverse > :last-child {
        order: 0;
    }

    .instagram-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .instagram-icon {
        display: none;
    }

    .social-header {
        gap: 10px;
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body > section:first-of-type,
    body > main > section:first-of-type {
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .about-texto h2,
    .servicio-texto h2,
    .compost-texto h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .servicios-grid,
    .caracteristicas-grid,
    .casos-grid {
        gap: 20px;
    }

    .servicio-card,
    .caracteristica-card,
    .caso-card {
        padding: 25px 15px;
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 25px;
        font-size: 14px;
    }

    .navbar {
        gap: 15px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 35px;
        width: 35px;
    }

    .header-fixed {
        padding: 12px 0;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}