
/* ==================== FEATURES SECTION ==================== */
.features {
    background-color: var(--background);
}

.cta-banner {
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-banner {
        font-size: 1.75rem;
        padding: 2rem;
        margin-bottom: 4rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        gap: 3rem;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .feature-icon-container {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
}

.feature-icon {
    width: 100%;
    height: 100%;
    color: var(--primary);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.feature-description {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 1rem;
    }
}

/* ==================== HERO SECTION (EMPRESAS) ==================== */
.hero-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 0 0 60%;
}

.hero-image {
    flex: 0 0 40%;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 100%;
        width: 100%;
    }
}

.hero-content {
    z-index: 10;
    padding: 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--optagas-lime);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.05rem;
    }
}

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

.hero-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

@media (min-width: 768px) {
    .hero-list li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-list li {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }
}

.bullet {
    color: var(--optagas-lime);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.2em;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

@media (max-width: 1024px) {
    .hero-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 300px;
    }
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-decoration svg {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;
}

.van-image {
    position: relative;
    z-index: 10;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem 0 !important;
    }

    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content,
    .hero-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-title {
        width: 100% !important;
        font-size: 1.75rem;
        line-height: 1.3;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-list {
        font-size: 0.9rem;
    }

    .van-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 0 2rem 0 !important;
    }

    .hero-title {
        margin-top: 29px;
        font-size: 1.5rem;
    }

    .hero-list li {
        padding-left: 0.5rem;
    }
}

/* ==================== CTA WHATSAPP SECTION ==================== */
.cta-whatsapp-section {
    margin: 4rem 0 0 0;
    position: relative;
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

@media (min-width: 768px) {
    .wave-top {
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .wave-top {
        height: 120px;
    }
}

.wave-bottom {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: -1px;
    z-index: 1;
}

@media (min-width: 768px) {
    .wave-bottom {
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .wave-bottom {
        height: 100px;
    }
}

.wave-background {
    background: #1a7a6e;
    position: relative;
    padding: 5rem 0 4rem 0;
    overflow: visible;
    z-index: 0;
}

/* Patrón de cuadrícula en el fondo */
.wave-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0;
    opacity: 0.3;
    z-index: 0;
}

.wave-background .container {
    position: relative;
    z-index: 1;
}

.cta-whatsapp-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-whatsapp-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    /*background-color: white;*/
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 300px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}

.emissions-banner {
    background-color: transparent;
    padding: 0 2rem 4rem 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.emissions-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #a8d96e;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #1a2e2a;
    padding: 2.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .emissions-text {
        font-size: 1.3rem;
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .emissions-text {
        font-size: 1.5rem;
    }
}

/* ==================== FLEET SECTION ==================== */
.fleet-section {
    background-color: var(--background);
    padding: 2rem 0;
}

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

@media (min-width: 1024px) {
    .fleet-container {
        grid-template-columns: 45% 55%;
        gap: 4rem;
    }
}

.fleet-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-vans {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.fleet-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fleet-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 768px) {
    .fleet-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .fleet-title {
        font-size: 2rem;
    }
}

.fleet-checklist {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .fleet-checklist {
        padding: 2.5rem;
    }
}

.checklist-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}

@media (min-width: 768px) {
    .checklist-title {
        font-size: 1.4rem;
    }
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-items li {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .checklist-items li {
        font-size: 1.1rem;
    }
}

.check-bullet {
    color: var(--optagas-lime);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.3em;
}

/* ==================== FINANCING SECTION ==================== */
.financing-section {
    position: relative;
    margin: 4rem 0 0 0;
}

.financing-waves-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

@media (min-width: 768px) {
    .financing-waves-top {
        height: 100px;
    }
}

@media (min-width: 1024px) {
    .financing-waves-top {
        height: 120px;
    }
}

.financing-waves-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

.financing-content {
    padding: 2rem 2rem 2rem 2rem;
    position: relative;
    z-index: 0;
}

@media (min-width: 768px) {
    .financing-content {
        padding: 5rem 2rem 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .financing-content {
        padding: 6rem 2rem 6rem 2rem;
    }
}

.financing-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .financing-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .financing-title {
        font-size: 3rem;
    }
}

.financing-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .financing-contact {
        flex-direction: row;
        gap: 2rem;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .contact-link {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-link {
        font-size: 1.75rem;
    }
}

.contact-link:hover {
    transform: scale(1.05);
    color: white;
}

.contact-icon {
    font-size: 1.5em;
}

.contact-whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: var(--secondary);
    transition: fill 0.3s ease;
}

@media (min-width: 768px) {
    .contact-whatsapp-icon {
        width: 40px;
        height: 40px;
    }
}

.contact-link:hover .contact-whatsapp-icon {
    fill: white;
}

.contact-divider {
    font-size: 2rem;
    font-weight: 300;
    color: var(--secondary);
    display: none;
}

@media (min-width: 768px) {
    .contact-divider {
        display: inline;
    }
}

/* ==================== TRANSPORT SECTION ==================== */
.transport-container {
    padding: 5rem 0;
    background-color: var(--primary);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow: hidden;
}

.transport-item {
    padding: 2rem;
    overflow: hidden;
}

.transport-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.leaf-green{
    fill: var(--secondary);
}
.transport-info {
    background-color: var(--secondary);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.transport-info p {
    color: var(--foreground);
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.transport-types {
    position: absolute;
    bottom: 2rem;
    right: 23px;
    left: 34rem;
    display: grid;
    justify-content: end;
    align-items: stretch;
    justify-items: end;
}

.transport-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.transport-type span {
    color: var(--optagas-cream);
    font-weight: 500;
}

.transport-type-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
}

.transport-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

/* Swiper en Transport Section */
.transportSwiper {
    width: 100%;
    height: 500px;
}

.transportSwiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.transportSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transportSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.transportSwiper .swiper-pagination {
    bottom: 20px;
}

.transportSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.transportSwiper .swiper-pagination-bullet-active {
    background-color: var(--optagas-lime, #a8d96e);
    width: 30px;
    border-radius: 6px;
}

.transportSwiper .swiper-button-next,
.transportSwiper .swiper-button-prev {
    color: var(--optagas-lime, #a8d96e);
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.transportSwiper .swiper-button-next:after,
.transportSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

.transportSwiper .swiper-button-next:hover,
.transportSwiper .swiper-button-prev:hover {
    background-color: var(--optagas-lime, #a8d96e);
    color: white;
    transform: scale(1.1);
}

/* Responsive para Transport Section */
@media (max-width: 1024px) {
    .transport-container {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }

    .transportSwiper {
        height: 400px;
    }

    .transport-right {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .transportSwiper {
        height: 350px;
    }

    .transport-right {
        min-height: 350px;
    }

    .transportSwiper .swiper-button-next,
    .transportSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .transportSwiper .swiper-button-next:after,
    .transportSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .transportSwiper {
        height: 300px;
    }

    .transport-right {
        min-height: 300px;
    }
}
