/* ==========================================
   PRIMA - DISEÑO LIMPIO Y PROFESIONAL
   ========================================== */

/* === Reset y Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background: #ffffff;
}

/* === Header Limpio === */
.header-clean {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-clean {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-clean {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #2E7D32;
}

/* === Menú Desplegable === */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-dropdown-toggle:hover {
    color: #2E7D32;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:hover {
    background: #f9fafb;
    color: #2E7D32;
    padding-left: 1.5rem;
}

.btn-contact-header {
    padding: 0.625rem 1.5rem;
    background: #1B5E20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
}

.btn-contact-header:hover {
    background: #145a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

/* Menú Hamburguesa */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #1B5E20;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Ocultar/mostrar botones de contacto según viewport */
.mobile-contact {
    display: none;
}

.desktop-contact {
    display: inline-block;
}

/* Responsive Header */
@media (max-width: 968px) {
    .hamburger-menu {
        display: flex !important;
    }

    .nav-clean {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: flex !important;
    }

    .nav-clean.active {
        max-height: 500px;
    }

    .nav-clean .nav-item {
        display: block !important;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f3f4f6;
        text-align: left;
    }

    .nav-item:hover {
        background: #f9fafb;
    }

    /* Dropdown responsive en móvil */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f3f4f6;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        background: #f9fafb;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-item {
        padding: 0.875rem 2.5rem;
        border-bottom: 1px solid #e5e7eb;
        background: #f9fafb;
    }

    .dropdown-item:hover {
        background: #f3f4f6;
        padding-left: 3rem;
    }

    .desktop-contact {
        display: none !important;
    }

    .mobile-contact {
        display: block !important;
        width: 100%;
        text-align: center;
        border-bottom: none;
        margin-top: 0.5rem;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .logo-image {
        height: 40px;
    }

    .header-container {
        padding: 0.875rem 1rem;
    }
}

/* === Hero Limpio === */
.hero-clean {
    padding: 140px 0 80px;
    background: #f9fafb;
}

.hero-clean-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-clean-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e8f5e9;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.hero-clean-title {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: #111827;
    margin: 0;
}

.hero-clean-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
}

.hero-clean-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item-clean {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #2E7D32;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero-clean-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-primary-clean {
    padding: 1rem 2rem;
    background: #1B5E20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
}

.btn-primary-clean:hover {
    background: #145a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

.btn-secondary-clean {
    padding: 1rem 2rem;
    background: white;
    color: #1B5E20;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #1B5E20;
    transition: all 0.3s ease;
}

.btn-secondary-clean:hover {
    background: #1B5E20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

.hero-clean-image {
    position: relative;
}

.hero-img-clean {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* === Secciones Generales === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e8f5e9;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-tag-inverse {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2E7D32;
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* === About Section === */
.about-section {
    background: white;
    padding: 5rem 0;
}

/* About Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}


.about-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
}

/* Benefits List */
.about-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f0;
    border-radius: 8px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2E7D32;
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    font-family: 'Outfit', sans-serif;
}

.benefit-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* About Button */


/* About Image */
.about-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .about-main-title {
        font-size: 32px;
    }

    .about-image {
        min-height: 400px;
    }
}

/* === What We Do === */
.what-we-do-section {
    background: #f9fafb;
    padding: 5rem 0;
}

.what-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3rem;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.what-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.what-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Card Image Section */
.what-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.what-card:hover .card-img {
    transform: scale(1.05);
}

/* Card Content */
.what-card-content {
    padding: 1.75rem;
}

.what-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.what-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.what-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 968px) {
    .what-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-card-image {
        height: 200px;
    }
}

/* === Methodology === */


/* === Footer Minimalista Moderno === */


/* Footer Contact Info */


/* Responsive Footer Moderno */
@media (max-width: 1024px) {

}

/* === Método About Section === */
.metodo-about-section {
    padding: 50px 0;
    background: #ffffff;
}

.metodo-about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.metodo-about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metodo-about-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e8f5e9;
    color: #2E7D32;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.metodo-about-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.metodo-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.metodo-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.metodo-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-feature-text {
    flex: 1;
}

.metodo-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.metodo-feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.btn-metodo-about {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1B5E20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
}

.btn-metodo-about:hover {
    background: #145a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

.metodo-about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.metodo-about-image img,
.metodo-about-image video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.metodo-video {
    border-radius: 16px;
}

/* === Benefits Hero Section === */
.benefits-hero-section {
    padding: 50px 0;
    background-image: url('../images/se-recogieron-muchos-tipos-de-basura-en-el-piso-oscuro.webp');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin: 60px 2rem;
    overflow: hidden;
    position: relative;
}

.benefits-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.85) 0%, rgba(27, 94, 32, 0.9) 100%);
    z-index: 1;
}

.benefits-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-hero-image-wrapper {
    position: relative;
}

.benefits-hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: block;
}

.benefits-hero-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefits-hero-content {
    color: #ffffff;
}

.benefits-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.benefits-hero-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-hero-item {
    display: flex;
    align-items: start;
    gap: 1rem;

    
    transition: all 0.3s ease;
}

.benefits-hero-item:hover {

    transform: translateX(8px);
}

.benefits-hero-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-hero-item-content {
    flex: 1;
}

.benefits-hero-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.benefits-hero-item-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.benefits-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.benefits-hero-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* === Course Content Section === */
.course-content-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

.course-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.course-content-header {
    text-align: center;
    margin-bottom: 4rem;
}

.course-content-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
}

.course-content-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.course-content-right {
    display: flex;
    flex-direction: column;
    position: relative;
}


.course-content-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.course-chapters-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.course-chapter-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.course-chapter-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2E7D32;
}

.chapter-number {
    font-size: 18px;
    font-weight: 800;
    color: #2E7D32;
}

.course-chapter-text {
    flex: 1;
}

.course-chapter-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.course-chapter-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.course-content-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    background: #2E7D32;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.course-content-btn:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.5);
}

.course-content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    flex: 1;
    display: flex;
}

.course-content-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-content-image .course-content-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* === Pricing Section === */
.pricing-section {
    padding: 100px 0;
    background-image: url('../images/vista-superior-del-concepto-de-reciclaje.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.7) 0%, rgba(249, 250, 251) 100%);
    z-index: 1;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.pricing-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: -1rem 0 0 0;
}

.pricing-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
}

.pricing-number {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.pricing-original {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing-note {
    font-size: 13px;
    color: #6b7280;
    text-align: right;
    line-height: 1.4;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-feature-item svg {
    flex-shrink: 0;
}

.pricing-feature-item span {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.pricing-guarantee {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.pricing-guarantee svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-guarantee span {
    font-size: 13px;
    color: #166534;
    line-height: 1.6;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #2E7D32;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    width: 100%;
}

.pricing-btn:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

/* === Corporate Card === */
.corporate-card {
    background: #2a2a2a;
    border: 1px solid #4b5563;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    height: 100%;
}

.corporate-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #374151;
}

.corporate-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corporate-card-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.corporate-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.corporate-card-description {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

.corporate-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.corporate-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.corporate-feature svg {
    flex-shrink: 0;
}

.corporate-feature span {
    font-size: 14px;
    color: #e5e7eb;
    font-weight: 500;
}

.corporate-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    margin: auto 2.5rem 2.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #2E7D32;
}

.corporate-card-btn:hover {
    background: #2E7D32;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* === Empresarial Section === */


/* === Etapas Section - Nuevo diseño con imágenes === */
.etapas-section-new {
    padding: 100px 0;
    background: #f9fafb;
}

.etapas-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.etapa-card-new:nth-child(1),
.etapa-card-new:nth-child(2),
.etapa-card-new:nth-child(3) {
    grid-column: span 2;
}

.etapa-card-new:nth-child(4),
.etapa-card-new:nth-child(5) {
    grid-column: span 3;
}

.etapa-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.etapa-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.etapa-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.etapa-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.etapa-card-new:hover .etapa-image-wrapper img {
    transform: scale(1.05);
}

.etapa-number-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.etapa-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.etapa-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #94BE4E;
    text-transform: uppercase;
}

.etapa-title-new {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.etapa-description-new {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {


    /* Método About Section - Responsive */
    .metodo-about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .metodo-about-title {
        font-size: 32px;
    }

    .metodo-about-image img,
    .metodo-about-image video {
        height: 350px;
    }

    .metodo-feature-title {
        font-size: 16px;
    }

    /* Benefits Hero Section - Responsive */
    .benefits-hero-section {
        margin: 30px 1rem;
        padding: 40px 0;
    }

    .benefits-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .benefits-hero-main-image {
        height: 300px;
    }

    .benefits-hero-title {
        font-size: 32px;
    }

    .benefits-hero-list {
        gap: 1rem;
    }

    .benefits-hero-item {
        padding: 1rem;
    }

    .benefits-hero-item-title {
        font-size: 16px;
    }

    .benefits-hero-item-description {
        font-size: 14px;
    }

    /* Course Content Section - Responsive */
    .course-content-header {
        margin-bottom: 3rem;
    }

    .course-content-body {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }

    .course-content-left {
        gap: 2rem;
    }

    .course-content-right {
        position: relative;
        min-height: 400px;
    }

    .course-content-title {
        font-size: 32px;
    }

    .course-chapters-list {
        gap: 1.5rem;
    }

    .course-chapter-item {
        gap: 1rem;
    }

    .course-chapter-icon {
        width: 40px;
        height: 40px;
    }

    .chapter-number {
        font-size: 16px;
    }

    .course-chapter-title {
        font-size: 15px;
    }

    .course-chapter-description {
        font-size: 13px;
    }

    .course-content-image .course-content-btn {
        bottom: 1.5rem;
    }

    /* Pricing Section - Responsive */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .pricing-icon {
        width: 48px;
        height: 48px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-number {
        font-size: 48px;
    }

    .pricing-amount {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .pricing-details {
        align-items: flex-start;
    }

    .pricing-note {
        text-align: left;
    }

    .pricing-features {
        gap: 0.75rem;
    }

    .pricing-feature-item {
        gap: 0.75rem;
    }

    .pricing-feature-item span {
        font-size: 14px;
    }

    .pricing-guarantee span {
        font-size: 12px;
    }

    /* Corporate Card - Responsive */
    .corporate-card-image {
        height: 220px;
    }

    .corporate-card-content {
        padding: 1.5rem 2rem;
    }

    .corporate-card-title {
        font-size: 22px;
    }

    .corporate-card-description {
        font-size: 14px;
    }

    .corporate-feature span {
        font-size: 13px;
    }

    .corporate-card-btn {
        margin: 0 2rem 2rem;
        padding: 0.875rem 1.5rem;
        font-size: 15px;
    }

    .metodo-feature-description {
        font-size: 14px;
    }

    /* Empresarial Section - Responsive */


    /* Etapas Section - Responsive */
    .etapas-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .etapa-card-new:nth-child(4),
    .etapa-card-new:nth-child(5) {
        grid-column: span 1;
        display: block;
    }

    .etapa-image-wrapper {
        height: 200px;
    }

    .etapa-title-new {
        font-size: 20px;
    }

    .etapa-description-new {
        font-size: 14px;
    }

    .etapa-content {
        padding: 1.5rem;
    }
}

/* === Footer Antiguo (mantener para compatibilidad) === */


.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    flex-shrink: 0;
}

/* === Supporters Clean === */
.supporters-clean {
    background: linear-gradient(to bottom, white 0%, #f9fafb 100%);
    padding: 60px 0;
}

.supporters-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.supporter-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporter-logo {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.supporter-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.udd-ventures-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === Impact Clean === */
.impact-clean {
    background: #f9fafb;
}

.impact-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.impact-card-clean {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.impact-card-clean:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.impact-icon-clean {
    width: 72px;
    height: 72px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.impact-title-clean {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.impact-desc-clean {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.impact-metrics-clean {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.metric-clean {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number-clean {
    font-size: 28px;
    font-weight: 700;
    color: #2E7D32;
    font-family: 'Outfit', sans-serif;
}

.metric-label-clean {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* === Testimonials Clean === */


/* === Proyectos Clean === */


/* === Teaser Sections Clean === */


/* === Empresas Section Clean === */


/* === Gradient Sections Wrapper === */
.gradient-sections-wrapper {
    position: relative;
    background-image: url('images/vajilla-desechable-ecologica-vajilla-desechable-ecologica-el-concepto-de-salvar-el-planeta-el-rechazo-del-plastico.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gradient-sections-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 1) 0%, rgba(249, 250, 251, 1) 20%, rgba(240, 245, 240, 0.95) 35%, rgba(220, 235, 220, 0.9) 50%, rgba(180, 210, 180, 0.85) 65%, rgba(120, 170, 120, 0.8) 80%, rgba(20, 90, 26, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

/* === Why Us Section - Nuevo Diseño === */
/* === Why Us Hero Section === */
.why-us-section-new {
    padding: 80px 0px 0px 0px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.why-us-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
}

/* Imagen Principal */
.why-us-hero-image {
    position: relative;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-caption {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 2;
}

.hero-caption h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Contenido Principal */
.why-us-hero-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.hero-content-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;

}

.btn-hero-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #111827;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-bottom: 2.5rem;
}

.btn-hero-explore:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
}

/* Galería de Imágenes */
.hero-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .why-us-hero-image {
        min-height: 400px;
    }

    .hero-content-title {
        font-size: 36px;
    }

    .hero-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .why-us-hero-content {
        padding: 2rem;
    }

    .hero-content-title {
        font-size: 28px;
    }

    .hero-caption h3 {
        font-size: 20px;
    }

    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === CTA Cards Section === */
.cta-cards-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.cta-card {
    background: #2a2a2a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
    transition: transform 0.4s ease;
}

.cta-card:hover .cta-card-image img {
    transform: scale(1.05);
}

.cta-card-content {
    padding: 2rem;
}

.cta-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.cta-card-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-stat-icon svg {
    stroke: #94BE4E;
}

.cta-stat-text {
    font-size: 13px;
    color: #9ca3af;
}

.btn-cta-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    background: white;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-card:hover {
    background: #2E7D32;
    color: white;
    transform: translateX(4px);
}

.btn-cta-card svg {
    transition: transform 0.3s ease;
}

.btn-cta-card:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .cta-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* === Partners Section === */
.partners-section {
    background: white;
    padding: 5rem 0;
}

.partners-header {
    text-align: center;
    margin-bottom: 3.5rem;
}


.partners-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    width: 90%;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

.partner-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.partner-logo {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Partners */
@media (max-width: 968px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .partners-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* === Community Section Clean === */
.community-section {
    padding: 0px 0 80px 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.community-section .section-header {
    padding-top: 80px;
}

.community-main-title {
    max-width: 800px;
    margin: 0 auto;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.community-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.community-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.community-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.community-list {
    list-style: none;
    padding: 0;
}

.community-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.community-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2E7D32;
    font-weight: 700;
}

.community-description {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

/* === Wave Decoration === */


/* === Footer Location === */


.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1f2937;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}


/* ==========================================
   PÁGINA AGENDA
   ========================================== */

/* === Sección Agenda Principal === */
.agenda-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 50%, #e8f5e9 100%);
}

.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.agenda-content {
    max-width: 600px;
}

.agenda-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.agenda-description {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.agenda-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item-agenda {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon-agenda {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text-agenda h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.benefit-text-agenda p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.agenda-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary-agenda {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
    max-width: fit-content;
}

.btn-primary-agenda:hover {
    background: linear-gradient(135deg, #1B5E20 0%, #0d3818 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.4);
}

.agenda-disclaimer {
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    margin: 0;
}

.agenda-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 600px;
}

.agenda-main-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
}

.agenda-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), transparent);
    pointer-events: none;
}

/* === Sección Calendario === */
.calendario-section {
    padding: 100px 0;
    background: white;
}

.calendario-header {
    text-align: center;
    margin-bottom: 60px;
}

.calendario-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.calendario-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.calendario-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

#my-cal-inline-30min {
    min-height: 700px;
    border-radius: 16px;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.btn-whatsapp-agenda,


/* === ¿Por qué realizar una evaluación? === */
.why-evaluation-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f6f9f8 0%, #f9fafb 100%);
}

.why-evaluation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.evaluation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.evaluation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(46, 125, 50, 0.2);
}

.evaluation-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.evaluation-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.evaluation-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* === Responsive Agenda === */
@media (max-width: 1024px) {
    .agenda-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .agenda-content {
        max-width: 100%;
    }

    .why-evaluation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .agenda-section {
        padding: 120px 0 80px;
    }

    .agenda-title {
        font-size: 32px;
    }

    .agenda-image-wrapper {
        min-height: 400px;
    }

    .calendario-title {
        font-size: 32px;
    }

    #my-cal-inline-30min {
        min-height: 600px;
    }


    .btn-whatsapp-agenda,

    .btn-primary-agenda {
        width: 100%;
        justify-content: center;
    }
}

/* === PÁGINA DE CONTACTO MODERNA === */

/* Hero Section */


/* Contact Form Section */
.contact-section-modern {
    background: linear-gradient(to bottom, white 0%, #f9fafb 100%);
    padding: 100px 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    background: #e8f5e9;
    color: #2E7D32;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.contact-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.contact-form-modern {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-modern form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.625rem;
    font-family: 'Inter', sans-serif;
}

.form-field input,
.form-field-full textarea {
    padding: 0.875rem 1.125rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    transition: all 0.2s ease;
    background: #fafafa;
}

.form-field input:focus,
.form-field-full textarea:focus {
    outline: none;
    border-color: #2E7D32;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.08);
}

.form-field input::placeholder,
.form-field-full textarea::placeholder {
    color: #9ca3af;
}

.form-field-full {
    display: flex;
    flex-direction: column;
}

.form-field-full label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.form-field-full textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Options Grid - Modern Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.option-card {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-card:hover {
    background: #ffffff;
    border-color: #d1d5db;
}

.option-card input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2E7D32;
    flex-shrink: 0;
}

.option-card input[type="radio"]:checked ~ .option-text {
    font-weight: 600;
    color: #111827;
}

.option-card input[type="radio"]:checked ~ .option-arrow {
    opacity: 1;
}

.option-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    flex: 1;
}

.option-arrow {
    font-size: 18px;
    color: #2E7D32;
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

/* Consent Checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    padding: 1.25rem;
    background: #fafdf9;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2E7D32;
    flex-shrink: 0;
}

.consent-checkbox span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Submit Button */
.btn-submit-modern {
    padding: 1.125rem 2.5rem;
    background: #1B5E20;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
}

.btn-submit-modern:hover {
    background: #145a1a;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
    transform: translateY(-2px);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

/* Submit Button (sin -modern) */
.btn-submit {
    background: #1B5E20;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #145a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mensajes de formulario */
.mensaje-formulario {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}


/* Página de Confirmación */
.confirmacion-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.confirmacion-content {
    max-width: 700px;
    text-align: center;
}

.icono-exito {
    display: inline-flex;
    width: 120px;
    height: 120px;
    background: #f0fdf4;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmacion-titulo {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.confirmacion-texto {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.confirmacion-info {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
}

.info-item:not(:last-child) {
    border-bottom: 1px solid #f3f4f6;
}

.info-item svg {
    flex-shrink: 0;
}

.info-item span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.confirmacion-acciones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-secondary-clean {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1B5E20;
    border: 2px solid #1B5E20;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-clean:hover {
    background: #f9fafb;
    color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

.contacto-alternativo {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
}

.contacto-alternativo-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contacto-opciones {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contacto-opcion {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    color: #1B5E20;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.contacto-opcion:hover {
    background: #1B5E20;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

@media (max-width: 768px) {
    .confirmacion-titulo {
        font-size: 28px;
    }

    .confirmacion-texto {
        font-size: 16px;
    }

    .confirmacion-acciones {
        flex-direction: column;
    }

    .confirmacion-acciones a {
        width: 100%;
        text-align: center;
    }

    .contacto-opciones {
        flex-direction: column;
    }

    .contacto-opcion {
        width: 100%;
        justify-content: center;
    }
}

/* Equipo CTA Button */


/* ==========================
   MISIÓN Y VISIÓN - DISEÑO MODERNO
   ========================== */

.mision-vision-modern {
    padding: 80px 0;
    background: #ffffff;
}

.mv-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 0;
}

.mv-modern-card {
    border-radius: 24px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mv-modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.mv-modern-card.light {
    background: #f9fafb;
}

.mv-modern-card.dark {
    background:
        linear-gradient(135deg, rgba(46, 125, 50, 0.8) 0%, rgba(27, 94, 32, 0.8) 100%),
        url('../images/bolsa-ecologica-en-el-escritorio.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
}

.mv-modern-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.mv-badge-wrapper {
    display: flex;
    justify-content: flex-end;
}

.mv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mv-modern-card.light .mv-badge {
    background: rgba(46, 125, 50, 0.1);
    color: #1B5E20;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.mv-modern-card.light .mv-badge svg {
    stroke: #1B5E20;
}

.mv-modern-card.dark .mv-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mv-modern-card.dark .mv-badge svg {
    stroke: #ffffff;
}

.mv-modern-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.mv-modern-card.light .mv-modern-text {
    color: #4b5563;
}

.mv-modern-card.dark .mv-modern-text {
    color: rgba(255, 255, 255, 0.95);
}

.mv-modern-image {
    margin-top: auto;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
    width: 100%;
}

.mv-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mv-modern-card:hover .mv-modern-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 968px) {
    .mv-modern-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mv-modern-card {
        padding: 32px;
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .mision-vision-modern {
        padding: 60px 0;
    }

    .mv-modern-card {
        padding: 24px;
    }

    .mv-modern-text {
        font-size: 15px;
    }

    .mv-modern-image {
        height: 150px;
    }
}

/* ==========================
   TEAM CARDS - DISEÑO MODERNO
   ========================== */

.team-section {
    padding: 80px 0;
    background: #f9fafb;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.member-name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.member-role {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1B5E20;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-role-icon-wrapper {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.member-role-icon-wrapper svg {
    stroke: #1B5E20;
}

.team-member:hover .member-role-icon-wrapper {
    background: #e8f5e9;
}

.member-bio {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 20px 0;
    flex: 1;
}

.member-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Estilos no utilizados - eliminados para limpieza */

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .member-photo {
        height: 240px;
    }
}

/* ==========================
   VALORES - DISEÑO MODERNO
   ========================== */

.valores-section-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.valores-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.valor-card-modern {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.valor-card-modern:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.valor-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.valor-card-modern:hover .valor-icon-wrapper {
    background: #e8f5e9;
}

.valor-icon-wrapper svg {
    stroke: #1B5E20;
    transition: all 0.3s ease;
}

.valor-card-modern:hover .valor-icon-wrapper svg {
    stroke: #2E7D32;
    transform: scale(1.1);
}

.valor-title-modern {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.valor-text-modern {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .valores-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .valores-section-modern {
        padding: 60px 0;
    }

    .valores-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .valor-card-modern {
        padding: 28px 24px;
    }

    .valor-title-modern {
        font-size: 18px;
    }
}

/* Footer Minimalista - Estilo Heilsa */


/* Footer Left - Logo y Copyright */

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-copyright {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.8;
    font-weight: 400;

}

/* Footer Center - Columnas de Links */

.footer-column h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-column li a {
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
    font-weight: 400;
}

.footer-column li a:hover {
    color: #111827;
}

/* Footer Right - Contacto y Redes */


.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    color: #111827;
    transition: all 0.15s ease;
}

.footer-social a:hover {
    background: #e5e7eb;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-clean-container,
    .what-grid,
    .methodology-visual-grid,
    .impact-grid-clean,
    .projects-grid,
    .teaser-content-wrapper,
    .empresas-benefits-grid,
    .why-us-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .hero-clean-title {
        font-size: 42px;
    }


    .supporters-logos {
        grid-template-columns: 1fr;
    }


    .hero-contacto-grid,
    .form-grid-2,
    .options-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 768px) {
    .nav-clean {
        display: none;
    }

    .hero-clean-title {
        font-size: 36px;
    }

    .hero-clean-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-clean-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-clean-buttons .btn-primary-clean,
    .hero-clean-buttons .btn-secondary-clean {
        width: 100%;
        text-align: center;
    }

    .section-heading {
        font-size: 32px;
    }


    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }

    .whatsapp-tooltip {
        display: none !important;
    }


    .contact-section-modern {
        padding: 70px 0;
    }


    .contact-main-title {
        font-size: 28px;
    }


}

/* ==========================================
   LLEVA PRIMA A TU COMUNA SECTION
   ========================================== */

.lleva-prima-section {
    background:
        linear-gradient(180deg, rgba(44, 62, 80, 0.75) 0%, rgba(76, 175, 80, 0.85) 100%),
        url('images/vajilla-desechable-ecologica-vajilla-desechable-ecologica-el-concepto-de-salvar-el-planeta-el-rechazo-del-plastico.webp') center/cover;
    background-attachment: fixed;
    position: relative;
}

/* Hero con imagen de fondo estilo industrial */
.lleva-prima-hero-visual {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lleva-prima-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(70, 130, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(100, 100, 100, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lleva-prima-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lleva-prima-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.lleva-prima-hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.btn-lleva-prima-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #1B5E20;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 94, 32, 0.3);
    border: none;
}

.btn-lleva-prima-hero:hover {
    background: #145a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.4);
}

.btn-lleva-prima-hero svg {
    transition: transform 0.3s ease;
}

.btn-lleva-prima-hero:hover svg {
    transform: translateX(3px);
}

/* Sección verde con fondo de césped */
.lleva-prima-green-section {
    background: transparent;
    padding: 60px 0 80px;
    position: relative;
}

.lleva-prima-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Cards estilo perfil moderno */
.lleva-prima-card.profile-style {
    background: #2a2a2a;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lleva-prima-card.profile-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Imagen superior de la card */
.card-image-top {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e5e5e5;
}

.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Contenido de la card */
.card-profile-content {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.card-profile-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.verified-icon {
    flex-shrink: 0;
}

.card-profile-description {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
}

/* Texto destacado */
.card-profile-highlight {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0;
}

/* Lista de checks */
.card-profile-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
  
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.check-item-light {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item span {
    font-size: 14px;
    line-height: 1.5;
    color: #d1d5db;
}
.check-item-light span {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

/* Estadísticas */


/* Beneficios */


/* Botón de la card */
.card-profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.card-profile-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-profile-button.primary {
    background: #1B5E20;
    border: none;
}

.card-profile-button.primary:hover {
    background: #145a1a;
    transform: translateY(-2px);
}

/* Badge con estrellas */


/* Steps mini */


/* Card CTA */


/* Responsive */
@media (max-width: 1024px) {
    .lleva-prima-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lleva-prima-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lleva-prima-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .lleva-prima-section {
        background-attachment: scroll;
    }

    .lleva-prima-hero-visual {
        padding: 70px 0;
    }

    .lleva-prima-hero-title {
        font-size: 36px;
    }

    .lleva-prima-hero-description {
        font-size: 14px;
    }

    .lleva-prima-green-section {
        padding: 40px 0 60px;
    }

    .card-image-top {
        height: 220px;
    }


    .card-profile-content {
        padding: 20px 24px 24px;
    }

    .card-profile-title {
        font-size: 20px;
    }

    .card-profile-description {
        font-size: 14px;
    }

    .btn-lleva-prima-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   CONTACT SECTION SPLIT DESIGN
   ========================================== */

.contact-section-split {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

/* Lado del formulario */
.contact-form-side {
  
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    max-width: 500px;
    width: 100%;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
}

/* Formulario moderno */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-modern .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-modern .form-group-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-modern label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.contact-form-modern input[type="text"],
.contact-form-modern input[type="email"],
.contact-form-modern input[type="tel"],
.contact-form-modern textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #ffffff;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: #1B5E20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.contact-form-modern textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-modern .radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-form-modern .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
}

.contact-form-modern .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1B5E20;
}

.contact-form-modern .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.contact-form-modern .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1B5E20;
    flex-shrink: 0;
}

.contact-form-modern .btn-submit {
    margin-top: 8px;
}

.contact-form-modern .form-note {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Lado de la imagen */
.contact-image-side {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 10px;
}

.contact-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.95) 0%, rgba(27, 94, 32, 0.5) 40%, transparent 70%);
    z-index: 1;
}

.contact-image-text {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 50px;
    max-width: 600px;
}

.contact-image-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-image-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1fr;
    }

    .contact-form-side {
        padding: 60px 40px;
    }

    .contact-image-side {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-section-split {
        min-height: auto;
    }

    .contact-split-container {
        min-height: auto;
    }

    .contact-form-side {
        padding: 40px 24px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-modern .form-row {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 350px;
    }

    .contact-image-title {
        font-size: 32px;
    }

    .contact-image-description {
        font-size: 16px;
    }
}

/* ======================================
   NUEVO FOOTER MINIMALISTA
   ====================================== */

.footer-clean-new {
    background: #f9fafb;
    padding: 50px 20px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    background: white;
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    color: #1f2937;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #1f2937;
    color: white;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #2E7D32;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 32px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-clean-new {
        padding: 40px 16px;
    }

    .footer-content {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .footer-logo {
        height: 40px;
    }
}
