:root {
    --primary-green: #93C01F;
    --dark-green: #7ba01a;
    --light-green: #b8d64a;
    --economia-green: #A5BD69;
    --plant-green: #759918;
    --dark-bg: #1F221B;
    --light-bg: #F2F2F2;
    --text-dark: #070A02;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    text-align: left;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background: #1F221B !important;
    padding: 0.25rem 0;
    min-height: 60px;
}

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

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 60px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 400 !important;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.1px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #93C01F !important;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-text {
    color: white;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.1px;
}

.lang-btn {
    background: #93C01F;
    border: none;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-btn:hover {
    background: #4a8a4a;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white;
    text-align: left;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.habilitaciones-hero::before {
    background: transparent;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.02);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 0;
    color: white;
    line-height: 1.2;
}

/* Hero indicators */
.hero-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(147, 192, 31, 0.09);
    border: 1px solid #93C01F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(147, 192, 31, 0.09);
    border: 1px solid #93C01F;
    color: white;
}

/* About section styling */
.about-section {
    background: #F2F2F2;
    padding: 112px 0;
}

.about-badge {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.about-title {
    color: #070A02;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Economía Circular section styling */
.economia-circular-section {
    background: white;
    padding: 71px 0;
}

.economia-badge {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.economia-title {
    color: #A5BD69;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.economia-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.economia-graphic {
    text-align: center;
}

/* Services Header Section */
.services-header-section {
    background: #1F221B;
    padding: 35px 0 52px 0;
}

.services-icon-placeholder {
    width: 177px;
    height: 177px;
    background: #D9D9D9;
    border-radius: 30px;
}

.services-badge {
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.services-title {
    color: white;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-subtitle {
    color: white;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Services Cards Section */
.services-cards-section {
    background: #1F221B;
    padding: 46px 0 112px 0;
}

.services-cards-section .row {
    display: flex;
    align-items: stretch;
}

.service-card {
    background: #070A02;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.service-image img {
    width: 100%;
    height: 303px;
    object-fit: cover;
}

.service-content {
    padding: 17px 40px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.service-content > * {
    margin-bottom: 24px;
}

.service-content .btn-custom {
    margin-top: auto;
}

.service-content > *:last-child {
    margin-bottom: 0;
}

/* Custom button class */
.btn-custom {
    background: #759918;
    color: #070A02;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    width: auto;
    max-width: none;
}

.btn-custom:hover {
    background: #5a7a14;
    color: #070A02;
    text-decoration: none;
}


.service-icon {
    width: 20%;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-title {
    color: #759918;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.service-description {
    color: #F2F2F2;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.service-btn {
    background: #759918;
    color: #070A02;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    text-align: center;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #5a7a14;
    color: #070A02;
    text-decoration: none;
}

/* Plant Header Section */
.plant-header-section {
    background: #759918;
    padding: 43px 0 38px 0;
}

.plant-icon-placeholder {
    width: 217px;
    height: 217px;
    background: #D9D9D9;
    border-radius: 30px;
}

.plant-badge {
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.plant-title {
    color: white;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.plant-subtitle {
    color: #F2F2F2;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Plant Details Section */
.plant-details-section {
    background: #759918;
    padding: 44px 0 92px 0;
}

.plant-info-card {
    background: rgba(44, 57, 9, 0.7);
    border-radius: 16px;
    padding: 31px 48px 48px 48px;
    margin-bottom: 2rem;
}

.plant-info-title {
    color: white;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.plant-info-text {
    color: white;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.plant-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plant-benefits-list li {
    color: white;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    padding: 24px 0;
    border-bottom: 1px solid white;
}

.plant-btn {
    background: #759918;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    transition: all 0.3s ease;
}

.plant-btn:hover {
    background: #5a7a14;
    color: white;
    text-decoration: none;
}

.plant-main-image {
    border-radius: 16px;
}

/* Imágenes de ancho completo */
.text-center > .img-fluid,
.bg-dark > .img-fluid {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: cover;
}

/* Navegación móvil en castellano */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Alinear menú móvil a la izquierda */
@media (max-width: 991px) {
    .navbar-nav {
        align-items: flex-start;
    }
    
    .navbar-nav .nav-link {
        text-align: left;
        padding-left: 0;
    }
}

/* Botones en contacto alineados a la izquierda y ancho del texto */
.contacto-service-card .btn-custom,
.contacto-service-card .contacto-service-btn {
    width: fit-content;
    text-align: left;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.hero-carousel-top .hero-carousel-slide {
    background-position: center top;
}

.hero-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-carousel .container {
    position: relative;
    z-index: 3;
}

.hero-carousel .indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel .indicator:hover {
    transform: scale(1.1);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
    left: 20px;
}

.carousel-arrow-next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-arrow-prev {
        left: 10px;
    }
    
    .carousel-arrow-next {
        right: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: #F2F2F2;
    padding: 40px 0 79px 0;
}

.why-choose-badge {
    color: #1F221B;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.why-choose-title {
    color: #1F221B;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-choose-subtitle {
    color: #1F221B;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    height: 320px;
}

.benefit-card-reverse {
    background: #93C01F;
}

.benefit-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.benefit-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.benefit-card-reverse .benefit-content {
    background: #93C01F;
}

.benefit-badge {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    min-height: 1.5rem;
}

.benefit-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    min-height: 2.1rem;
    display: flex;
    align-items: center;
}

.benefit-description {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.benefit-btn {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.benefit-btn:hover {
    color: #070A02;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    background: #93C01F;
    padding: 112px 0;
    margin-bottom: 0;
}

.cta-title {
    color: #070A02;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-description {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: left;
}

.cta-btn {
    background: #1F221B;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #0a0d05;
    color: white;
    text-decoration: none;
}

/* Footer */
.footer-figma {
    background-color: #1F221B;
    padding: 80px 0;
    color: #F2F2F2;
    margin-top: 0;
}

/* Remove any margins between sections */
section {
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.footer-logo-icon {
    display: flex;
    gap: 24px;
    align-items: center;
}

.logo-part-1 {
    width: 18.98px;
    height: 26.48px;
    background: #93C01F;
}

.logo-part-2 {
    width: 30.08px;
    height: 27.11px;
    background: #93C01F;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.footer-link {
    color: #F2F2F2;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #93C01F;
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
    margin: 32px 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.footer-legal-link {
    color: #F2F2F2;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #93C01F;
    text-decoration: underline;
}

.footer-copyright {
    color: #F2F2F2;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Servicios Page Specific Styles */
.servicios-hero-icon-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.servicios-hero-icon-img:hover {
    transform: scale(1.02);
}

.servicios-segregacion-section {
    background: #1F221B;
    background-image: url('../img/servicios/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 112px 0;
    position: relative;
}

.servicios-segregacion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.servicios-segregacion-section .container {
    position: relative;
    z-index: 2;
}

.servicios-acondicionamiento-section {
    background: #1F221B;
    background-image: url('../img/servicios/servicios-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 112px 0;
    position: relative;
}

.servicios-acondicionamiento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.servicios-acondicionamiento-section .container {
    position: relative;
    z-index: 2;
}

.servicios-transporte-section {
    background: #1F221B;
    background-image: url('../img/servicios/servicios-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 112px 0;
    position: relative;
}

.servicios-transporte-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.servicios-transporte-section .container {
    position: relative;
    z-index: 2;
}

.servicios-badge-outline {
    padding: 4px 6px;
    border: 1px solid #F2F2F2;
    border-radius: 4px;
    display: inline-block;
}

.servicios-badge-text {
    color: white;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.servicios-badge-outline-dark {
    padding: 4px 6px;
    border: 1px solid #161616;
    border-radius: 4px;
    display: inline-block;
}

.servicios-badge-text-dark {
    color: #2C3909;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.servicios-section-title {
    color: #B3D262;
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.servicios-section-description {
    color: white;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.servicios-section-description-large {
    color: white;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.servicios-materials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicios-materials-list li {
    color: white;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.servicios-products-section {
    background: white;
    padding: 77px 0 112px 0;
}

.servicios-products-section .row.g-4 {
    --bs-gutter-x: 3rem;
}

@media (min-width: 992px) {
    .servicios-products-section .row.g-4 {
        --bs-gutter-x: 4rem;
    }
    
    .servicios-products-section .row.g-4 .col-lg-4:nth-child(n+4) {
        margin-top: 3rem;
    }
}

.servicios-section-title-dark {
    color: #3A4C0C;
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.servicios-section-description-large-dark {
    color: #070A02;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

.servicios-product-card {
    padding: 0;
}

.servicios-product-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.servicios-product-text {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Asesoramiento Page Specific Styles */
.asesoramiento-services-section {
    background: #759918;
    padding: 40px 0 120px 0;
}

.asesoramiento-section-title {
    color: white;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.asesoramiento-service-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    height: 100%;
}

.asesoramiento-service-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.asesoramiento-service-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.asesoramiento-areas-section {
    background: #D9DAD9;
    padding: 40px 0 120px 0;
}

.asesoramiento-areas-title {
    color: #070A02;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.asesoramiento-area-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    height: 100%;
}

.asesoramiento-area-title {
    color: #65B767;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.asesoramiento-area-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.asesoramiento-process-section {
    background: #759918;
    padding: 40px 0 120px 0;
}

.asesoramiento-process-title {
    color: white;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.asesoramiento-process-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    height: 100%;
}

.asesoramiento-process-card-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.asesoramiento-process-card-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.asesoramiento-process-card,
.asesoramiento-area-card,
.asesoramiento-service-card,
.habilitacion-card,
.habilitacion-card-large,
.planta-feature-card {
    position: relative;
}

.process-triangle {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid white;
}

.process-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 30px auto 0 auto;
}

.process-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.planta-feature-content {
    margin-top: 20px;
}

/* Íconos específicos para nuestra-planta: alineados a la izquierda, más grandes */
.planta-features-section .process-icon,
.planta-process-section .process-icon {
    justify-content: flex-start;
    margin: 30px 0 20px 0;
    width: 80px;
    height: 80px;
}

.planta-features-section .process-icon img,
.planta-process-section .process-icon img {
    width: 80px;
    height: 80px;
    filter: none !important;
    image-rendering: crisp-edges;
}


/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 80px 0;
}

.contact-form {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 30px;
}

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

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #65b765;
    box-shadow: 0 0 0 0.2rem rgba(101, 183, 101, 0.25);
}

.input-group-text {
    background: #e9ecef;
    border: 1px solid #e9ecef;
    color: #65b765;
}

.form-label {
    font-weight: 600;
    color: #070A02;
    margin-bottom: 8px;
}

.btn-primary {
    background: #65b765;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #5aa35a;
}

.contact-info-card {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
}

.contact-info-title {
    color: #070A02;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item strong {
    color: #070A02;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: #6c757d;
    margin: 0;
}

.contact-info-item a {
    color: #65b765;
    text-decoration: underline;
}

.contact-info-item a:hover {
    color: #5aa35a;
}

/* Nuestra Planta Page Specific Styles */
.planta-process-section {
    background: #F2F2F2;
    padding: 40px 0 79px 0;
}

.planta-process-title {
    color: #3A4C0C;
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 0;
}

.planta-process-subtitle {
    color: #070A02;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
}

.planta-process-card {
    padding: 0;
}

.planta-process-number {
    color: #1F221B;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.planta-process-card-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.planta-process-card-text {
    color: #070A02;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Panorama Image Scroll */
.planta-panorama-container {
    position: relative;
    width: 100%;
    background: #1F221B;
    padding: 0;
    margin: 0;
}

.planta-panorama-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.planta-panorama-scroll:active {
    cursor: grabbing;
}

.planta-panorama-scroll::-webkit-scrollbar {
    height: 8px;
}

.planta-panorama-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.planta-panorama-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.planta-panorama-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.planta-panorama-image {
    height: 600px;
    width: auto;
    min-width: max(200vw, 2000px);
    max-width: none;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.planta-panorama-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.planta-panorama-hint svg {
    width: 20px;
    height: 20px;
    animation: slideHint 2s ease-in-out infinite;
}

.planta-panorama-hint svg:first-child {
    animation-direction: reverse;
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.planta-panorama-scroll.scrolled ~ .planta-panorama-hint {
    opacity: 0;
}

@media (max-width: 768px) {
    .planta-panorama-image {
        height: 350px;
        min-width: max(250vw, 1200px);
    }
    
    .planta-panorama-hint {
        font-size: 0.75rem;
        padding: 10px 20px;
        bottom: 10px;
    }
    
    .planta-panorama-hint svg {
        width: 16px;
        height: 16px;
    }
}

.planta-location-section {
    background: #F2F2F2;
    padding: 40px 0 79px 0;
}

.planta-location-title {
    color: #1F221B;
    font-size: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.planta-location-text {
    color: #1F221B;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.planta-location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.planta-location-list li {
    color: #2C3909;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    padding: 24px 0;
    border-bottom: 1px solid #070A02;
}

.planta-features-section {
    background: #D9DAD9;
    padding: 50px 0 112px 0;
}

.planta-features-title {
    color: #3A4C0C;
    font-size: 3.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 0;
}

.planta-feature-card {
    padding: 0;
}

.planta-feature-title {
    color: #1F221B;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.planta-feature-text {
    color: #1F221B;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Habilitaciones Page Specific Styles */
.habilitaciones-grid-section {
    background: #F2F2F2;
    padding: 40px 0 120px 0;
}

.habilitacion-card {
    background: white;
    border-radius: 6px;
    padding: 16px;
    height: 100%;
}

.habilitacion-card-title {
    color: #070A02;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.habilitacion-card-text {
    color: #070A02;
    font-size: 1.125rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.habilitacion-card-large {
    background: white;
    border-radius: 6px;
    padding: 16px;
}

.habilitacion-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.habilitacion-download .process-icon {
    margin: 20px auto 0 auto;
    width: 40px;
    height: 40px;
}

.habilitacion-download-btn {
    background: #93C01F;
    color: white;
    padding: 18px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.habilitacion-download-btn:hover {
    background: #7ba01a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Contacto Page Specific Styles */
.contacto-services-section {
    background: white;
    padding: 46px 0 112px 0;
}

.contacto-service-card {
    background: #2C3909;
    border-radius: 16px;
    padding: 42px 40px 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacto-service-badge {
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.contacto-service-title {
    color: #759918;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contacto-service-text {
    color: #F2F2F2;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.contacto-service-btn {
    background: #759918;
    color: #070A02;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    width: fit-content;
}

.contacto-service-btn:hover {
    background: #5a7a14;
    color: #070A02;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .servicios-hero-icon-img {
        height: 100px;
    }
    
    .about-title,
    .economia-title,
    .services-title,
    .plant-title,
    .why-choose-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-card {
        height: auto;
    }
    
    .benefit-card {
        flex-direction: column;
    }
    
    .benefit-card-reverse {
        flex-direction: column-reverse;
    }
    
    .servicios-section-title,
    .servicios-section-title-dark {
        font-size: 2rem;
    }
    
    .servicios-section-description-large,
    .servicios-section-description-large-dark {
        font-size: 1.25rem;
    }
    
    .material-number,
    .material-name {
        font-size: 1.125rem;
    }
    
    .servicios-badge-text,
    .servicios-badge-text-dark {
        font-size: 1.125rem;
    }
    
    .asesoramiento-section-title,
    .asesoramiento-areas-title,
    .asesoramiento-process-title {
        font-size: 2rem;
    }
    
    .asesoramiento-service-title,
    .asesoramiento-area-title,
    .asesoramiento-process-card-title {
        font-size: 1.25rem;
    }
    
    .asesoramiento-service-text,
    .asesoramiento-area-text,
    .asesoramiento-process-card-text {
        font-size: 1rem;
    }
    
    .planta-process-title,
    .planta-features-title {
        font-size: 2rem;
    }
    
    .planta-process-subtitle {
        font-size: 1.25rem;
    }
    
    .planta-location-title {
        font-size: 2rem;
    }
    
    .planta-location-list li {
        font-size: 1.125rem;
    }
    
    .habilitacion-card-title {
        font-size: 1.25rem;
    }
    
    .habilitacion-card-text {
        font-size: 1rem;
    }
    
    .habilitacion-download-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .contacto-service-title {
        font-size: 1.5rem;
    }
    
    .contacto-service-card {
        padding: 24px 20px;
    }
    
    /* Ajustar padding de secciones con triángulos en mobile */
    .asesoramiento-process-section,
    .asesoramiento-areas-section,
    .asesoramiento-services-section,
    .habilitaciones-grid-section {
        padding: 60px 0 100px 0;
    }
    
    /* Espacio extra para columnas con íconos y triángulos en mobile */
    .asesoramiento-process-section [class*="col-"],
    .asesoramiento-areas-section [class*="col-"],
    .asesoramiento-services-section [class*="col-"],
    .habilitaciones-grid-section [class*="col-"] {
        margin-bottom: 80px;
    }
    
    .asesoramiento-process-section [class*="col-"]:last-child,
    .asesoramiento-areas-section [class*="col-"]:last-child,
    .asesoramiento-services-section [class*="col-"]:last-child,
    .habilitaciones-grid-section [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Paddings generales de secciones en mobile */
    .about-section,
    .services-section,
    .plant-section,
    .economia-section,
    .why-choose-section,
    .cta-section,
    .services-header-section,
    .servicios-segregacion-section,
    .servicios-acondicionamiento-section,
    .servicios-transporte-section,
    .servicios-products-section,
    .planta-process-section,
    .planta-location-section,
    .planta-features-section,
    .contact-form-section,
    .contacto-services-section {
        padding: 60px 0;
    }
    
    /* Ajustar tamaño de íconos con triángulos en mobile */
    .process-icon {
        width: 50px;
        height: 50px;
        margin: 20px auto 0 auto;
    }
    
    .process-icon img {
        width: 50px;
        height: 50px;
    }
    
    /* Ajustar triángulos en mobile */
    .process-triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 15px solid white;
        bottom: -15px;
    }
    
    /* Ajustar íconos de nuestra-planta en mobile */
    .planta-features-section .process-icon,
    .planta-process-section .process-icon {
        width: 60px;
        height: 60px;
        margin: 20px 0 15px 0;
    }
    
    .planta-features-section .process-icon img,
    .planta-process-section .process-icon img {
        width: 60px;
        height: 60px;
    }
    
    /* Ajustar logos grandes en col-lg-2 en mobile */
    .col-lg-2 img.img-fluid {
        max-width: 80px;
        display: block;
    }
    
    /* Ajustar columnas de logos en mobile */
    .services-header-section .col-lg-2,
    .servicios-segregacion-section .col-lg-2,
    .servicios-acondicionamiento-section .col-lg-2,
    .servicios-transporte-section .col-lg-2 {
        margin-bottom: 1.5rem;
    }
    
    /* Agregar separación vertical entre cards en mobile */
    .row.g-4 > [class*="col-"] {
        margin-bottom: 2rem;
    }
    
    .row.g-4 > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Cards específicas con más separación */
    .service-card,
    .asesoramiento-service-card,
    .asesoramiento-area-card,
    .asesoramiento-process-card,
    .habilitacion-card,
    .habilitacion-card-large,
    .planta-feature-card,
    .planta-process-card,
    .contacto-service-card {
        margin-bottom: 2rem;
    }
    
    /* Separar íconos de servicio de la imagen superior en mobile */
    .service-icon {
        margin-top: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
}