:root {
    --color-verde-bosque: #2D4739;
    --color-verde-hojal: #4E6C57;
    --color-verde-claro: #6D8C72;
    --color-blanco: #FFFFFF;
    --color-negro-suave: #1B1B1B;
    --font-primary: 'Quicksand', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos base para todos los textos */
body {
    font-family: var(--font-primary);
    color: var(--color-verde-bosque);
    line-height: 1.6;
    background-color: var(--color-blanco);
}

/* Estilos para encabezados */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-verde-bosque);
    font-weight: 600;
}

/* Estilos específicos para párrafos */
p {
    color: var(--color-verde-bosque);
    margin-bottom: 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-blanco);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a {
    color: var(--color-verde-bosque);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-links a {
    color: var(--color-verde-bosque);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-verde-claro);
}

/* Estilos unificados para botones */
.btn-primary,
.btn-donate,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid var(--color-verde-bosque);
}

.btn-primary {
    background: var(--color-verde-bosque);
    color: var(--color-blanco);
}

.btn-primary:hover {
    background: var(--color-verde-claro);
    border-color: var(--color-verde-claro);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 71, 57, 0.2);
}

.btn-donate {
    background: var(--color-verde-bosque);
    color: var(--color-blanco) !important;
}

.btn-donate:hover {
    background: var(--color-verde-claro);
    border-color: var(--color-verde-claro);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 71, 57, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-verde-bosque);
}

.btn-secondary:hover {
    background: var(--color-verde-bosque);
    color: var(--color-blanco);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 71, 57, 0.2);
}

/* Ajuste responsivo para botones */
@media screen and (max-width: 768px) {
    .btn-primary,
    .btn-donate,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .btn-primary,
    .btn-donate,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* Hero Section con Slider */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.slider-image.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-blanco);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    color: var(--color-blanco);
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--color-blanco);
}

@media screen and (max-width: 768px) {
    .hero-content {
        margin: 20px;
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow a {
    color: var(--color-verde-bosque);
    font-size: 2rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(45, 71, 57, 0.15);
}

@media screen and (max-width: 768px) {
    .scroll-arrow {
        bottom: 20px;
    }
}

.scroll-arrow i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.hero-section h1 {
    color: var(--color-verde-bosque);
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-section h2 {
    color: var(--color-verde-bosque);
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.section-header h2 {
    color: var(--color-verde-bosque);
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
}

/* Content Text */
.text-content p {
    color: var(--color-verde-bosque);
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--color-verde-bosque);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Goals and Impact Items */
.goal-item h3,
.impact-item h3 {
    color: var(--color-verde-bosque);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.goal-item p,
.impact-item p {
    color: var(--color-verde-bosque);
}

/* Donation Section */
.donation-content p {
    color: var(--color-verde-bosque);
}

.progress-text {
    color: var(--color-verde-bosque);
    font-weight: 500;
}

/* Footer Exception */
.footer p,
.footer .social-icons p {
    color: var(--color-blanco);
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.goal-item {
    text-align: center;
    padding: 30px;
}

.goal-item h3 {
    color: var(--color-verde-bosque);
    margin: 20px 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Donation Progress */
.donation-progress {
    margin: 40px 0;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--color-verde-bosque);
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 2s infinite linear;
}

@keyframes shine {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(50%);
    }
}

/* Footer */
.footer {
    background: var(--color-verde-bosque);
    color: var(--color-blanco);
    padding: 40px 0;
    text-align: center;
}

/* Social Icons Styles */
.social-icons {
    margin-top: 20px;
}

.icons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    color: var(--color-blanco);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--color-blanco);
}

@media screen and (max-width: 768px) {
    .icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow a {
    color: var(--color-verde-bosque);
    font-size: 2rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(45, 71, 57, 0.15);
}

@media screen and (max-width: 768px) {
    .scroll-arrow {
        bottom: 20px;
    }
}

.scroll-arrow i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Mobile Menu Styles */
/* Header y navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-blanco);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilos del menú toggle */
.menu-toggle {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-verde-bosque);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-blanco);
        padding: 80px 30px;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        display: block;
    }

    .nav-links a {
        display: block;
        margin: 15px 0;
        padding: 10px;
        font-size: 1.2rem;
        color: var(--color-verde-bosque);
        border-bottom: 1px solid rgba(45, 71, 57, 0.1);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-verde-bosque);
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .main-nav {
        justify-content: space-between;
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-blanco);
        padding: 80px 30px;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block;
        margin: 15px 0;
        padding: 10px;
        font-size: 1.2rem;
        text-align: left;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        width: 90%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px;
    }
}

/* Ajustes generales de espaciado y contenedor */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Secciones generales */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Ajustes de la sección Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-section h2 {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Ajustes de la sección About */
.about-section .content-grid {
    gap: 80px;
}

.text-content {
    max-width: 600px;
}

.highlight-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Ajustes de la sección Goals */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.goal-item {
    background: rgba(45, 71, 57, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateY(-5px);
    background: rgba(45, 71, 57, 0.1);
}

/* Ajustes de la sección Strategy */
/* Strategy Section Styles */
.strategy-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}

.strategy-section .content-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.strategy-section .text-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Animación de hojas */
.leaves-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('../img/leaf.png') no-repeat center/contain;
    opacity: 0.6;
    animation: floatLeaf 15s linear infinite;
    z-index: 1;
    left: -5%;
}

.leaf:nth-child(1) { 
    top: 20%; 
    animation-delay: 0s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(2) { 
    top: 40%; 
    animation-delay: 3s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(3) { 
    top: 60%; 
    animation-delay: 6s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(4) { 
    top: 30%; 
    animation-delay: 9s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(5) { 
    top: 70%; 
    animation-delay: 12s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

@keyframes floatLeaf {
    0% {
        left: -5%;
        transform: rotate(0deg) scale(1);
        opacity: 0; /* Inicia invisible */
    }
    10% {
        opacity: 0.6; /* Aparece gradualmente */
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    90% {
        opacity: 0.6; /* Mantiene la visibilidad */
    }
    100% {
        left: 105%;
        transform: rotate(360deg) scale(1);
        opacity: 0; /* Desaparece gradualmente */
    }
}

/* Aseguramos que el contenido esté por encima de las hojas */
.strategy-section .container {
    position: relative;
    z-index: 2;
}


.highlight-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-image {
    margin-bottom: 30px;
    text-align: center;
}

.partner-image img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.partner-content {
    width: 100%;
}

.text-justify {
    text-align: left;
    line-height: 1.6;
    margin: 0;
    color: var(--color-verde-bosque);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partner-image img {
        max-height: 100px;
    }

    .partner-item {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section h2 {
        font-size: 1.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
/* Fresno Section Styles */
.fresno-section .image-content {
    max-width: 600px;
    margin: 0 auto;
}

.fresno-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(45, 71, 57, 0.15);
    transition: transform 0.3s ease;
}

.fresno-section .image-content img:hover {
    transform: scale(1.02);
}

/* Ajustes responsivos para la sección Fresno */
@media screen and (max-width: 768px) {
    .fresno-section .image-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Impact Section Styles */
.impact-section .goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-section .goal-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 71, 57, 0.1);
    transition: transform 0.3s ease;
}

.impact-section .goal-item:hover {
    transform: translateY(-5px);
}

.impact-section .icon-goal {
    font-size: 2.5rem;
    color: var(--color-verde-bosque);
    margin-bottom: 20px;
}

.impact-section h3 {
    color: var(--color-verde-bosque);
    margin: 15px 0;
    font-size: 1.5rem;
}

.impact-section p {
    color: var(--color-verde-bosque);
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .impact-section .goals-grid {
        grid-template-columns: 1fr;
    }
}
/* Ajustes del Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

/* Ajustes de la imagen del logo */
.about-section .image-content {
    max-width: 400px;
    margin: 0 auto;
}

.about-section .image-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ajustes para textos de Partners */
.partner-content .text-justify {
    text-align: justify;
}

/* Media queries para responsividad */
@media screen and (max-width: 768px) {
    .slider-container {
        height: 60vh;
    }

    .about-section .image-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .about-section .content-grid {
        flex-direction: column;
    }
}
@media screen and (max-width: 480px) {
    .nav-links {
        width: 90%;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px;
    }
}

/* Ajustes generales de espaciado y contenedor */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Secciones generales */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Ajustes de la sección Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-section h2 {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Ajustes de la sección About */
.about-section .content-grid {
    gap: 80px;
}

.text-content {
    max-width: 600px;
}

.highlight-text {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Ajustes de la sección Goals */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.goal-item {
    background: rgba(45, 71, 57, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateY(-5px);
    background: rgba(45, 71, 57, 0.1);
}

/* Ajustes de la sección Strategy */
/* Strategy Section Styles */
.strategy-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}

.strategy-section .content-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.strategy-section .text-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Animación de hojas */
.leaves-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('../img/leaf.png') no-repeat center/contain;
    opacity: 0.6;
    animation: floatLeaf 15s linear infinite;
    z-index: 1;
    left: -5%;
}

.leaf:nth-child(1) { 
    top: 20%; 
    animation-delay: 0s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(2) { 
    top: 40%; 
    animation-delay: 3s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(3) { 
    top: 60%; 
    animation-delay: 6s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(4) { 
    top: 30%; 
    animation-delay: 9s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

.leaf:nth-child(5) { 
    top: 70%; 
    animation-delay: 12s; 
    background: url('../img/leaf.png') no-repeat center/contain;
}

@keyframes floatLeaf {
    0% {
        left: -5%;
        transform: rotate(0deg) scale(1);
        opacity: 0; /* Inicia invisible */
    }
    10% {
        opacity: 0.6; /* Aparece gradualmente */
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    90% {
        opacity: 0.6; /* Mantiene la visibilidad */
    }
    100% {
        left: 105%;
        transform: rotate(360deg) scale(1);
        opacity: 0; /* Desaparece gradualmente */
    }
}

/* Aseguramos que el contenido esté por encima de las hojas */
.strategy-section .container {
    position: relative;
    z-index: 2;
}


.highlight-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-image {
    margin-bottom: 30px;
    text-align: center;
}

.partner-image img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.partner-content {
    width: 100%;
}

.text-justify {
    text-align: left;
    line-height: 1.6;
    margin: 0;
    color: var(--color-verde-bosque);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partner-image img {
        max-height: 100px;
    }

    .partner-item {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section h2 {
        font-size: 1.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
/* Fresno Section Styles */
.fresno-section .image-content {
    max-width: 600px;
    margin: 0 auto;
}

.fresno-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(45, 71, 57, 0.15);
    transition: transform 0.3s ease;
}

.fresno-section .image-content img:hover {
    transform: scale(1.02);
}

/* Ajustes responsivos para la sección Fresno */
@media screen and (max-width: 768px) {
    .fresno-section .image-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Impact Section Styles */
.impact-section .goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-section .goal-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 71, 57, 0.1);
    transition: transform 0.3s ease;
}

.impact-section .goal-item:hover {
    transform: translateY(-5px);
}

.impact-section .icon-goal {
    font-size: 2.5rem;
    color: var(--color-verde-bosque);
    margin-bottom: 20px;
}

.impact-section h3 {
    color: var(--color-verde-bosque);
    margin: 15px 0;
    font-size: 1.5rem;
}

.impact-section p {
    color: var(--color-verde-bosque);
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .impact-section .goals-grid {
        grid-template-columns: 1fr;
    }
}
