/* Recicla Hero Section */
.recicla-hero {
    min-height: 100vh;
    padding: 100px 0;
    background: #FDFDED;
    overflow: hidden;
}

    .recicla-hero::before {
        content: '';
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        background: #FDFDED;
        background-size: 60px 60px;
        animation: patternFloat 60s linear infinite;
    }


    /* .recicla-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: 
        linear-gradient(120deg, transparent 45%, rgba(76, 175, 80, 0.03) 45%, rgba(76, 175, 80, 0.03) 55%, transparent 55%),
        linear-gradient(-120deg, transparent 45%, rgba(129, 199, 132, 0.03) 45%, rgba(129, 199, 132, 0.03) 55%, transparent 55%);
    background-size: 60px 60px;
    animation: patternFloat 60s linear infinite;
} */

    .recicla-hero::after {
        content: '';
        background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%234CAF50" fill-opacity="0.05"/></svg>');
        background-size: 20px 20px;
        opacity: 0.5;
        animation: dotFloat 40s linear infinite;
        pointer-events: none;
    }

    .recicla-hero h1 {
        color: #00683B;
        font-size: 3rem;
        margin-bottom: 1.5rem;
        animation: slideUp 0.8s ease forwards;
    }

    .recicla-hero p {
        font-size: 1.25rem;
        line-height: 1.8;
        color: rgba(29, 29, 27, 0.8);
        margin-bottom: 2rem;
        animation: slideUp 0.8s ease forwards 0.2s;
    }

.recicla-meta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.4s;
}

.recicla-stat {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .recicla-stat:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    }

    .recicla-stat i {
        color: #4CAF50;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .recicla-stat:hover i {
        transform: scale(1.2) rotate(-10deg);
    }

    .recicla-stat span {
        font-weight: 600;
        font-size: 1rem;
        white-space: nowrap;
    }

.recicla-image {
    position: relative;
    text-align: center;
    border-radius: 30px;
    margin-top: 0;
    will-change: transform;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
    opacity: 0;
    animation: slideLeft 1s ease forwards 0.6s;
    /*backdrop-filter: blur(10px);*/
    /*-webkit-backdrop-filter: blur(10px);*/
}

    .recicla-image:hover {
        transform: perspective(1000px) rotateY(-8deg) translateZ(140px) scale(1.02);
    }

    .recicla-image img {
        width: 100%;
        height: 100%;
        transform: scale(1);
        transition: transform 0.6s ease;
        filter: brightness(1.05) contrast(1.05);
        border-radius: 24px;
    }

    .recicla-image:hover img {
        transform: scale(1.05);
    }

.section-title {
    color: #00683B;
    font-size: 3rem;
}

/* About Program Section */
.about-program-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #9BC064, #01693C);
    position: relative;
    overflow: hidden;
}
    .about-program-section .about-program-info {
        /*padding: 80px 0;*/
        background: #FDFDED;
        position: relative;
        /*overflow: hidden;*/
        padding-top: 32px;
        padding-right: 24px;
        padding-bottom: 32px;
        padding-left: 24px;
        border-width: 10px;
    }
        .about-program-section .about-program-info .section-text {
            color: #5B6152;
        }

.program-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

    .program-logo-container img {
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
        transition: transform 0.4s ease;
    }

        .program-logo-container img:hover {
            transform: scale(1.05);
        }

/* Sustainability Info Cards */
.sustainability-info {
    padding-top: 60px;
}

.sustainability-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.1);
}

    .sustainability-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        transition: all 0.3s ease;
    }

    .sustainability-card.water::before {
        background: linear-gradient(to right, #2196F3, #4CAF50);
    }

    .sustainability-card.plastic::before {
        background: linear-gradient(to right, #4CAF50, #8BC34A);
    }

    .sustainability-card.recycling::before {
        background: linear-gradient(to right, #8BC34A, #CDDC39);
    }

    .sustainability-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    }

        .sustainability-card:hover::before {
            height: 8px;
        }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.sustainability-card:hover .card-icon {
    transform: scale(1.1);
}

.sustainability-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-black);
    font-weight: 700;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-family: 'Anek Latin', sans-serif;
}

.sustainability-card p {
    color: rgba(29, 29, 27, 0.75);
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Environmental Impact Section */
.environmental-impact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff, #e8f5e9);
    position: relative;
    overflow: hidden;
}

.impact-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    gap: 4rem;
}

    .impact-row:last-child {
        margin-bottom: 0;
    }

    .impact-row.reverse {
        flex-direction: row-reverse;
    }

.impact-content {
    flex: 1;
}

    .impact-content h3 {
        font-size: 2rem;
        color: #2E7D32;
        margin-bottom: 1.5rem;
        font-family: 'Anek Latin', sans-serif;
    }

.impact-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1B5E20;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Anek Latin', sans-serif;
}

.impact-unit {
    display: block;
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 600;
}

.impact-content p {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.impact-visual {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

    .impact-visual i {
        font-size: 8rem;
        color: white;
        position: relative;
        z-index: 2;
    }

    .impact-visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        opacity: 0.9;
    }

.water-visual::before {
    background: linear-gradient(135deg, #2196F3, #4CAF50);
}

.plastic-visual::before {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.recycling-visual::before {
    background: linear-gradient(135deg, #8BC34A, #CDDC39);
}

.impact-visual::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 992px) {
    .impact-row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 60px;
    }

        .impact-row.reverse {
            flex-direction: column;
        }

    .impact-visual {
        width: 200px;
        height: 200px;
    }

        .impact-visual i {
            font-size: 5rem;
        }

    .impact-number {
        font-size: 3rem;
    }

    .impact-content h3 {
        font-size: 1.75rem;
    }
}
/* Steps Section */
.steps-section {
    padding: 100px 0;
    background: #FDFDED;
    position: relative;
    overflow: hidden;
}

    .steps-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.steps-wrapper {
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #74BF4F;
}
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    }

.step-card-impar {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #00683B !important;
}

    .step-card-impar:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    }

    /*.step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #4CAF50, #81C784);
        transition: all 0.3s ease;
    }*/

    .step-card:hover::before {
        height: 8px;
    }

.step-icon {
    width: 80px;
    height: 80px;
    background: #74BF4F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.step-icon-impar {
    width: 80px;
    height: 80px;
    background: #00683B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    transform: rotate(0deg);
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 2rem;
}
.step-icon-impar i {
    font-size: 2rem;
}

.step-card:hover .step-icon {
    transform: rotate(360deg) scale(1.1);
}
.step-card-impar:hover .step-icon-impar {
    transform: rotate(360deg) scale(1.1);
}

.step-number {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4CAF50;
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    display: inline-block;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5B6152;
    font-weight: 700;
}

.step-description {
    color: #5B6152;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

    .impact-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .impact-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

.impact-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .impact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }


.impact-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-family: 'Anek Latin', sans-serif;
    position: relative;
    display: inline-block;
}

    .impact-number::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #4CAF50;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

.impact-card:hover .impact-number::after {
    width: 60px;
}

.impact-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-black);
    line-height: 1.5;
    margin-top: 1.5rem;
}

/* Collection Points Section */
.collection-section {
    padding: 100px 0;
    background: #FDFDED;
}

.location-filters {
    background: #FFFFFF;
    border-radius: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-width: 1px;
    border: 1px solid #E7E9ED;
    position: relative;
    gap: 8px;
}

.location-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 100px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .location-select:focus {
        outline: none;
        border-color: #4CAF50;
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    }

    .location-select:disabled {
        background-color: #f8f9fa;
        cursor: not-allowed;
        opacity: 0.7;
    }

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .collection-grid.show {
        opacity: 1;
        transform: translateY(0);
    }

.collection-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    .collection-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.collection-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-black);
}

.collection-address {
    color: rgba(29, 29, 27, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.collection-phone {
    color: #4CAF50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #4CAF50;
    color: white;
    text-align: center;
}

    .cta-section h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.btn-white {
    background: white;
    color: #4CAF50;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

    .btn-white:hover {
        background: transparent;
        color: white;
        transform: translateY(-2px);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .recicla-hero h1 {
        font-size: 2.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .step-card {
        margin-bottom: 2rem;
    }

    .collection-search {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
