:root {
            --gold: #F9B233;
            --gold-light: #FFD166;
            --dark-green: #0E7F29;
            --medium-green: #1B9C3D;
            --bright-green: #43B550;
            --light-green: #E8F5E9;
            --white: #ffffff;
            --light: #f8fafc;
            --light-gray: #f0f0f0;
            --gray: #374151;
            --dark: #111827;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius: 12px;
            --border-radius-lg: 16px;
            --intense-green: #0a5c1f;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--dark-green);
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            z-index: 10000;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        h1 {
            font-size: 3.5rem;
            letter-spacing: -0.025em;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 3rem;
            letter-spacing: -0.025em;
            text-align: center;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gold);
        }

        h3 {
            font-size: 1.75rem;
        }

        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.7;
        }

        .section-light p,
        .section-gray p {
            color: var(--gray);
        }

        .section-dark p,
        .section-gradient p,
        .cta p {
            color: rgba(255, 255, 255, 0.9);
        }

        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .text-center {
            text-align: center;
        }

        .gold-text {
            color: var(--gold);
        }

        .green-text {
            color: var(--dark-green);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
            border: none;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn-primary {
            background-color: var(--dark-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--bright-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background-color: var(--gold);
            color: var(--dark);
        }

        .btn-secondary:hover {
            background-color: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-lg {
            padding: 18px 40px;
            font-size: 1.2rem;
        }

        /* Loading states */
        .btn.loading {
            position: relative;
            color: transparent;
        }

        .btn.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            top: 50%;
            left: 50%;
            margin-left: -10px;
            margin-top: -10px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            border-right-color: transparent;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Mejorar focus para accesibilidad */
        a:focus,
        button:focus,
        .btn:focus,
        .form-control:focus {
            outline: 3px solid var(--gold);
            outline-offset: 2px;
        }

        button:focus-visible,
        a:focus-visible,
        .btn:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.98);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--dark-green);
            text-decoration: none;
        }

        .logo-icon {
            height: 50px;
            display: flex;
            align-items: center;
        }

        .logo-icon img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 1rem;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--dark-green);
        }

        nav a:hover:after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section with Slider - MEJORADO PARA MÓVILES */
        .hero {
            background: linear-gradient(135deg, var(--dark-green), var(--bright-green));
            color: var(--white);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            display: grid;
        }

        .slide {
            grid-area: 1 / 1;
            width: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            z-index: 1;
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
            pointer-events: auto;
        }

        .slide-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            color: var(--white);
            margin-bottom: 25px;
            overflow: hidden;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text .lead {
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease-out 0.6s both;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
            max-width: 400px;
        }

        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--white);
            transition: var(--transition);
        }

        .hero-feature:hover {
            transform: translateX(10px);
        }

        .hero-feature i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .hero-feature h4 {
            color: var(--white);
            margin-bottom: 5px;
        }

        .hero-feature p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 0.95rem;
        }

        .slider-controls {
            position: absolute;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--gold);
            transform: scale(1.2);
        }

        /* Section Styles con imágenes de fondo */
        .section-light {
            background-color: var(--white);
        }

        .section-gray {
            background-color: var(--light);
        }

        .section-green {
            background-color: var(--light-green);
            position: relative;
        }

        .section-green::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider2.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .section-green>.container {
            position: relative;
            z-index: 1;
        }

        .section-dark {
            background-color: var(--dark);
            color: var(--white);
            position: relative;
        }

        .section-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider3.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .section-dark>.container {
            position: relative;
            z-index: 1;
        }

        .section-dark h2,
        .section-dark h3 {
            color: var(--white);
        }

        .section-gradient {
            background: linear-gradient(135deg, var(--dark-green), var(--bright-green));
            color: var(--white);
            position: relative;
        }

        .section-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider4.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .section-gradient>.container {
            position: relative;
            z-index: 1;
        }

        .section-gradient h2,
        .section-gradient h3 {
            color: var(--white);
        }

        /* Sección "Cómo trabajamos" con verde más intenso */
        .section-intense-green {
            background-color: var(--intense-green);
            color: var(--white);
            position: relative;
        }

        .section-intense-green::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider5.png');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .section-intense-green>.container {
            position: relative;
            z-index: 1;
        }

        .section-intense-green h2,
        .section-intense-green h3 {
            color: var(--white);
        }

        .section-intense-green p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            text-align: left;
            margin-bottom: 25px;
        }

        .about-text .lead {
            margin-bottom: 30px;
        }

        .about-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
            padding: 20px;
            background: var(--light-green);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .stat:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-green);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 5px;
        }

        .about-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            width: 100%;
            max-width: 400px;
            position: relative;
        }

        .about-card:before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: 10px;
            bottom: 10px;
            background: var(--gold);
            border-radius: var(--border-radius-lg);
            z-index: -1;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .about-feature:hover {
            background: var(--light-green);
            transform: translateX(5px);
        }

        .about-feature i {
            font-size: 1.5rem;
            color: var(--dark-green);
            background: var(--light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-feature h4 {
            margin-bottom: 5px;
        }

        /* Services Section - COMPLETAMENTE REDISEÑADA */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 350px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            position: relative;
            z-index: 2;
            background: var(--white);
            transition: var(--transition);
        }

        /* ELIMINADO: El efecto de desplazamiento hacia arriba del contenido */
        .service-card:hover .service-content {
            opacity: 0;
            visibility: hidden;
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 127, 41, 0.95);
            color: white;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .service-overlay h3 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .service-overlay p {
            color: var(--white);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .service-card h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        /* How We Work Section - MEJORADA CON COLOR MÁS INTENSO Y TEXTO VISIBLE */
        .process {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 20px 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border-top: 4px solid var(--gold);
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-top: 4px solid var(--dark-green);
        }

        .step-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--gold);
            transition: var(--transition);
        }

        .process-step:hover .step-icon {
            color: var(--dark-green);
            transform: scale(1.2);
        }

        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 15px;
            transition: var(--transition);
        }

        .process-step:hover .step-number {
            background: var(--dark-green);
            color: var(--white);
            transform: scale(1.1);
        }

        .process-step h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
            /* Asegurando que el texto sea visible */
        }

        .process-step p {
            color: var(--gray);
            /* Asegurando que el texto sea visible */
        }

        /* What We Buy Section - COMPLETAMENTE REDISEÑADA */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .category-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 350px;
        }

        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .category-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .category-card:hover .category-image img {
            transform: scale(1.1);
        }

        .category-content {
            padding: 25px;
            position: relative;
            z-index: 2;
            background: var(--white);
            transition: var(--transition);
        }

        /* ELIMINADO: El efecto de desplazamiento hacia arriba del contenido */
        .category-card:hover .category-content {
            opacity: 0;
            visibility: hidden;
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 127, 41, 0.95);
            color: white;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transition: var(--transition);
        }

        .category-card:hover .category-overlay {
            opacity: 1;
        }

        .category-items {
            list-style: none;
        }

        .category-items li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--white);
            justify-content: center;
            font-size: 1.1rem;
        }

        .category-items li:last-child {
            border-bottom: none;
        }

        .category-items i {
            color: var(--gold);
        }

        /* Portfolio Section - CON FONDO VERDE INTENSO */
        #portfolio {
            background-color: var(--intense-green);
            color: var(--white);
            position: relative;
        }

        #portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('../img/slider1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        #portfolio>.container {
            position: relative;
            z-index: 1;
        }

        #portfolio h2,
        #portfolio h3 {
            color: var(--white);
        }

        #portfolio p {
            color: rgba(255, 255, 255, 0.9);
        }

        .portfolio-slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            margin-top: 50px;
        }

        .portfolio-slider {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .portfolio-slide {
            width: 20%;
            height: 100%;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s ease;
        }

        .portfolio-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 40px;
            transform: translateY(100%);
            transition: transform 0.6s ease;
        }

        .portfolio-slide:hover .portfolio-slide-content {
            transform: translateY(0);
        }

        .portfolio-slide-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .portfolio-slide-desc {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 80%;
        }

        /* Efectos Hover Específicos para Cada Slide */
        .portfolio-slide-1:hover img {
            transform: scale(1.1) rotate(1deg);
            filter: brightness(1.1) contrast(1.2);
        }

        .portfolio-slide-2:hover img {
            transform: scale(1.08);
            filter: sepia(0.5) hue-rotate(15deg);
        }

        .portfolio-slide-3:hover img {
            transform: scale(1.12) translateX(-10px);
            filter: brightness(1.2) saturate(1.3);
        }

        .portfolio-slide-4:hover img {
            transform: scale(1.1) rotate(-1deg);
            filter: contrast(1.4) brightness(1.1);
        }

        .portfolio-slide-5:hover img {
            transform: scale(1.15);
            filter: hue-rotate(90deg) saturate(1.5);
        }

        /* Controles del Slider */
        .portfolio-slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 10;
        }

        .portfolio-slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .portfolio-slider-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        .portfolio-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .portfolio-slider-arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .portfolio-slider-arrow.prev {
            left: 25px;
        }

        .portfolio-slider-arrow.next {
            right: 25px;
        }

        /* Miniaturas */
        .portfolio-thumbnails {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }

        .portfolio-thumbnail {
            width: 120px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .portfolio-thumbnail:hover,
        .portfolio-thumbnail.active {
            opacity: 1;
            transform: translateY(-5px);
        }

        .portfolio-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-thumbnail-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-thumbnail:hover .portfolio-thumbnail-overlay {
            opacity: 1;
        }

        /* Información del Slide */
        .portfolio-slider-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            color: var(--white);
            padding: 0 20px;
        }

        .portfolio-slide-counter {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .portfolio-slide-caption {
            font-size: 1.1rem;
            text-align: center;
            flex-grow: 1;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark);
            flex-shrink: 0;
        }

        .contact-details h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .contact-details p,
        .contact-details a {
            color: var(--gray);
        }

        .contact-form {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--dark-green);
            box-shadow: 0 0 0 3px rgba(14, 127, 41, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* Map Section */
        .map-section {
            padding: 50px 0;
        }

        .map-container {
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-top: 30px;
        }

        #map {
            height: 100%;
            width: 100%;
        }

        /* Sección Cinta Verde con Texto Corriendo */
        .ribbon-section {
            background-color: var(--dark-green);
            color: white;
            padding: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .ribbon-content {
            white-space: nowrap;
            animation: scrollText 25s linear infinite;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
        }

        @keyframes scrollText {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark-green), var(--bright-green));
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            margin-bottom: 25px;
            color: var(--white);
        }

        .cta p {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* WhatsApp Flotante MEJORADO - ICONO SIEMPRE VISIBLE */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background-color: #25D366;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: var(--transition);
            animation: pulse 2s infinite;
            text-decoration: none;
            overflow: hidden;
        }

        .whatsapp-float:hover {
            width: 280px;
            border-radius: 35px;
        }

        .whatsapp-text {
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            margin-left: 0;
            font-size: 1rem;
            font-weight: 600;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .whatsapp-float:hover .whatsapp-text {
            max-width: 200px;
            margin-left: 15px;
            opacity: 1;
        }

        .whatsapp-float .whatsapp-icon {
            transition: var(--transition);
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 2rem !important;
            color: white !important;
            -webkit-text-fill-color: white !important;
            line-height: 1;
            min-width: 32px;
            min-height: 32px;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .whatsapp-float:hover .whatsapp-icon {
            transform: scale(1.1);
        }

        /* Botón de llamada flotante - ICONO SIEMPRE VISIBLE */
        .call-float {
            position: fixed;
            bottom: 120px;
            right: 30px;
            width: 70px;
            height: 70px;
            background-color: #e74c3c;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            transition: var(--transition);
            animation: pulse-red 2s infinite;
            text-decoration: none;
            overflow: hidden;
        }

        .call-float:hover {
            width: 240px;
            border-radius: 35px;
        }

        .call-text {
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            margin-left: 0;
            font-size: 1rem;
            font-weight: 600;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .call-float:hover .call-text {
            max-width: 180px;
            margin-left: 15px;
            opacity: 1;
        }

        .call-float .call-icon {
            transition: var(--transition);
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 2rem !important;
            color: white !important;
            -webkit-text-fill-color: white !important;
            line-height: 1;
            min-width: 32px;
            min-height: 32px;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .call-float:hover .call-icon {
            transform: scale(1.1);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(231, 76, 60, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* IMAGEN LISTA PARA REEMPLAZAR - cambiar esta URL por la imagen deseada */
            background-image: url('https://images.unsplash.com/photo-1572981779307-38f8b0456222?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        footer>.container {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .footer-about p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links h3,
        .footer-contact h3 {
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            color: var(--white);
        }

        .footer-links h3:after,
        .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gold);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact i {
            color: var(--gold);
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animaciones para notificaciones */
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        /* Nuevas animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .notification-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .notification-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .bounce-in {
            animation: bounce 1s;
        }

        /* Efectos de hover mejorados */
        .hover-lift {
            transition: var(--transition);
        }

        .hover-lift:hover {
            transform: translateY(-5px);
        }

        /* Responsive - MEJORADO PARA SLIDER PRINCIPAL Y MÓVILES */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero {
                padding: 150px 0 100px;
                min-height: 80vh;
            }

            .hero-content,
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual,
            .about-visual {
                order: -1;
            }

            .about-text h2 {
                text-align: center;
            }

            .portfolio-slider-container {
                height: 400px;
            }

            .slide-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }

            .hero-text h1 {
                white-space: normal;
                font-size: 2.2rem;
                line-height: 1.3;
            }

            .hero-text .lead {
                font-size: 1.1rem;
                line-height: 1.5;
            }

            .hero-card {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 0;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero {
                padding: 130px 0 80px;
                min-height: 70vh;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
                min-height: 44px;
            }

            nav {
                position: absolute;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                gap: 15px;
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .header-container {
                padding: 15px 0;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-stats {
                flex-direction: column;
                gap: 20px;
            }

            .btn {
                min-height: 44px;
                padding: 12px 24px;
            }

            nav a {
                padding: 8px 0;
                display: block;
            }

            .whatsapp-float:hover,
            .call-float:hover {
                width: 70px;
                padding-left: 0;
            }

            .whatsapp-text,
            .call-text {
                display: none;
            }

            .portfolio-slider-container {
                height: 300px;
            }

            .portfolio-slider-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .portfolio-slide-content {
                padding: 25px;
            }

            .portfolio-slide-title {
                font-size: 1.5rem;
            }

            .portfolio-slide-desc {
                max-width: 100%;
                font-size: 0.9rem;
            }

            .portfolio-thumbnails {
                gap: 10px;
            }

            .portfolio-thumbnail {
                width: 90px;
                height: 60px;
            }

            .hero-card {
                padding: 20px;
            }

            .hero-feature {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .hero-feature i {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {

            .whatsapp-float,
            .call-float {
                width: 60px;
                height: 60px;
                font-size: 1.7rem;
                bottom: 20px;
                right: 20px;
            }

            .call-float {
                bottom: 100px;
            }

            .hero-card,
            .about-card {
                padding: 20px;
            }

            .hero {
                padding: 120px 0 60px;
                min-height: 60vh;
            }

            .portfolio-slider-container {
                height: 250px;
            }

            .portfolio-slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .portfolio-slider-arrow.prev {
                left: 10px;
            }

            .portfolio-slider-arrow.next {
                right: 10px;
            }

            .portfolio-slide-content {
                padding: 15px;
            }

            .portfolio-slide-title {
                font-size: 1.3rem;
            }

            .portfolio-slide-desc {
                font-size: 0.9rem;
            }

            .portfolio-thumbnails {
                gap: 5px;
            }

            .portfolio-thumbnail {
                width: 70px;
                height: 50px;
            }

            h1 {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .hero-text .lead {
                font-size: 1.1rem;
                line-height: 1.5;
            }

            .slider-controls {
                bottom: 30px;
            }

            .hero-features {
                gap: 15px;
            }

            .hero-feature {
                gap: 8px;
            }

            .hero-feature i {
                font-size: 1.5rem;
            }

            .hero-feature h4 {
                font-size: 1rem;
            }

            .hero-feature p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .hero {
                padding: 100px 0 40px;
                min-height: 50vh;
            }

            h1 {
                font-size: 1.6rem;
                line-height: 1.3;
            }

            .hero-text .lead {
                font-size: 1rem;
                line-height: 1.5;
            }

            .hero-buttons .btn {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .hero-card {
                padding: 15px;
            }

            .hero-feature {
                flex-direction: column;
                text-align: center;
            }

            .hero-feature i {
                margin-bottom: 5px;
            }
        }

.videos-section {
                    padding: 80px 0;
                    background-color: var(--light); /* Un fondo ligeramente diferente para separar secciones */
                }
                .videos-grid {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 30px;
                    max-width: 1000px;
                    margin: 0 auto;
                    margin-top: 50px;
                }
                .video-card {
                    position: relative;
                    border-radius: var(--border-radius-lg);
                    overflow: hidden;
                    box-shadow: var(--shadow-md);
                    aspect-ratio: 9/16;
                    background-color: #000;
                    transition: var(--transition);
                    cursor: pointer;
                }
                .video-card:hover {
                    transform: translateY(-10px);
                    box-shadow: var(--shadow-lg);
                }
                .video-card video {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .video-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    padding: 20px;
                    color: white;
                    pointer-events: none;
                }
                .video-play-btn {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    font-size: 3.5rem;
                    color: rgba(255, 255, 255, 0.8);
                    transition: var(--transition);
                }
                .video-card:hover .video-play-btn {
                    color: var(--gold);
                    transform: translate(-50%, -50%) scale(1.1);
                }
                .video-title {
                    font-weight: 600;
                    font-size: 1.1rem;
                    margin-bottom: 5px;
                }

                @media (max-width: 992px) {
                    .videos-grid {
                        grid-template-columns: repeat(2, 1fr);
                        max-width: 700px;
                    }
                }

                @media (max-width: 768px) {
                    .videos-grid {
                        grid-template-columns: 1fr;
                        max-width: 320px; /* Tamaño ideal para simular la pantalla de un celular */
                    }
                }

.donations-section {
                    padding: 100px 0;
                    background: linear-gradient(135deg, #1a3a2a 0%, #0d2618 40%, #1a3a2a 100%);
                    position: relative;
                    overflow: visible;
                }

                .donations-section::before {
                    content: '';
                    position: absolute;
                    top: -50%;
                    left: -50%;
                    width: 200%;
                    height: 200%;
                    background: radial-gradient(ellipse at 30% 50%, rgba(249, 178, 51, 0.08) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 50%, rgba(14, 127, 41, 0.1) 0%, transparent 60%);
                    animation: donationBgFloat 15s ease-in-out infinite;
                    pointer-events: none;
                }

                @keyframes donationBgFloat {

                    0%,
                    100% {
                        transform: translate(0, 0) rotate(0deg);
                    }

                    33% {
                        transform: translate(2%, -1%) rotate(1deg);
                    }

                    66% {
                        transform: translate(-1%, 1%) rotate(-1deg);
                    }
                }

                .donations-section h2 {
                    color: #fff;
                    font-size: 2.8rem;
                    font-weight: 800;
                    text-align: center;
                    margin-bottom: 10px;
                    position: relative;
                    z-index: 1;
                }

                .donations-section h2::after {
                    content: '';
                    display: block;
                    width: 80px;
                    height: 4px;
                    background: linear-gradient(90deg, #F9B233, #e08a1e);
                    margin: 15px auto 0;
                    border-radius: 2px;
                }

                .donations-subtitle {
                    color: rgba(255, 255, 255, 0.85);
                    text-align: center;
                    font-size: 1.15rem;
                    max-width: 650px;
                    margin: 0 auto 50px;
                    line-height: 1.7;
                    position: relative;
                    z-index: 1;
                }

                .donations-content {
                    display: flex;
                    align-items: center;
                    gap: 60px;
                    max-width: 1100px;
                    margin: 0 auto;
                    position: relative;
                    z-index: 1;
                }

                .donations-visual {
                    flex: 1;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    opacity: 1 !important;
                    transform: none !important;
                }

                .donations-heart-container {
                    position: relative;
                    width: 320px;
                    height: 320px;
                }

                .donations-heart-circle {
                    width: 280px;
                    height: 280px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, rgba(249, 178, 51, 0.15), rgba(14, 127, 41, 0.2));
                    border: 2px solid rgba(249, 178, 51, 0.3);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    animation: heartPulse 3s ease-in-out infinite;
                }

                @keyframes heartPulse {

                    0%,
                    100% {
                        transform: translate(-50%, -50%) scale(1);
                        box-shadow: 0 0 0 0 rgba(249, 178, 51, 0.2);
                    }

                    50% {
                        transform: translate(-50%, -50%) scale(1.05);
                        box-shadow: 0 0 40px 10px rgba(249, 178, 51, 0.15);
                    }
                }

                .donations-heart-circle i {
                    font-size: 6rem;
                    background: linear-gradient(135deg, #F9B233, #e08a1e);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }

                .donation-floating-icon {
                    position: absolute;
                    width: 55px;
                    height: 55px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.12);
                    backdrop-filter: blur(8px);
                    -webkit-backdrop-filter: blur(8px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.3rem;
                    color: #F9B233;
                    animation: floatIcon 4s ease-in-out infinite;
                    z-index: 5;
                    visibility: visible !important;
                    opacity: 1 !important;
                }

                .donation-floating-icon:nth-child(2) {
                    top: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    animation-delay: 0s;
                }

                .donation-floating-icon:nth-child(3) {
                    top: 20%;
                    right: 0;
                    animation-delay: 0.7s;
                }

                .donation-floating-icon:nth-child(4) {
                    bottom: 20%;
                    right: 5%;
                    animation-delay: 1.4s;
                }

                .donation-floating-icon:nth-child(5) {
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    animation-delay: 2.1s;
                }

                .donation-floating-icon:nth-child(6) {
                    bottom: 20%;
                    left: 0;
                    animation-delay: 2.8s;
                }

                .donation-floating-icon:nth-child(7) {
                    top: 20%;
                    left: 5%;
                    animation-delay: 3.5s;
                }

                @keyframes floatIcon {

                    0%,
                    100% {
                        transform: translateY(0);
                    }

                    50% {
                        transform: translateY(-10px);
                    }
                }

                .donation-floating-icon:nth-child(2),
                .donation-floating-icon:nth-child(5) {
                    animation-name: floatIconX;
                }

                @keyframes floatIconX {

                    0%,
                    100% {
                        transform: translateX(-50%) translateY(0);
                    }

                    50% {
                        transform: translateX(-50%) translateY(-10px);
                    }
                }

                .donations-info {
                    flex: 1;
                }

                .donations-info h3 {
                    color: #F9B233;
                    font-size: 1.5rem;
                    font-weight: 700;
                    margin-bottom: 15px;
                }

                .donations-info p {
                    color: rgba(255, 255, 255, 0.8);
                    font-size: 1.05rem;
                    line-height: 1.8;
                    margin-bottom: 25px;
                }

                .donation-features {
                    list-style: none;
                    padding: 0;
                    margin: 0 0 30px;
                }

                .donation-features li {
                    color: rgba(255, 255, 255, 0.9);
                    padding: 10px 0;
                    font-size: 1.05rem;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
                }

                .donation-features li:last-child {
                    border-bottom: none;
                }

                .donation-features li i {
                    color: #0E7F29;
                    background: rgba(14, 127, 41, 0.15);
                    width: 32px;
                    height: 32px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.85rem;
                    flex-shrink: 0;
                }

                .donation-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: linear-gradient(135deg, rgba(14, 127, 41, 0.2), rgba(14, 127, 41, 0.3));
                    border: 1px solid rgba(14, 127, 41, 0.4);
                    color: #5edb7f;
                    padding: 10px 20px;
                    border-radius: 50px;
                    font-size: 0.95rem;
                    font-weight: 600;
                    margin-bottom: 25px;
                    animation: badgeGlow 2.5s ease-in-out infinite;
                }

                @keyframes badgeGlow {

                    0%,
                    100% {
                        box-shadow: 0 0 0 0 rgba(14, 127, 41, 0.3);
                    }

                    50% {
                        box-shadow: 0 0 20px 5px rgba(14, 127, 41, 0.15);
                    }
                }

                .donation-cta-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    background: linear-gradient(135deg, #25D366, #128C7E);
                    color: #fff;
                    padding: 16px 35px;
                    border-radius: 50px;
                    font-size: 1.1rem;
                    font-weight: 700;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
                }

                .donation-cta-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
                    background: linear-gradient(135deg, #2be874, #25D366);
                }

                .donation-cta-btn i {
                    font-size: 1.4rem;
                }

                @media (max-width: 768px) {
                    .donations-section {
                        padding: 70px 0;
                    }

                    .donations-section h2 {
                        font-size: 2rem;
                    }

                    .donations-content {
                        flex-direction: column;
                        gap: 40px;
                        padding: 0 20px;
                    }

                    .donations-heart-container {
                        width: 250px;
                        height: 250px;
                    }

                    .donations-heart-circle {
                        width: 220px;
                        height: 220px;
                    }

                    .donations-heart-circle i {
                        font-size: 4.5rem;
                    }

                    .donation-floating-icon {
                        width: 45px;
                        height: 45px;
                        font-size: 1.1rem;
                    }

                    .donations-info {
                        text-align: center;
                    }

                    .donation-features li {
                        justify-content: center;
                    }

                    .donation-cta-btn {
                        padding: 14px 30px;
                        font-size: 1rem;
                    }
                }
