/* Variables CSS */
:root {
    --primary-color: #398e6a;
    --primary-hover: #28634b;
    --primary-light: #4caf50;
    --background-color: #f3f4f6;
    --card-background: #ffffff;
    --text-color: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #cdcdd1;
    --success-color: #10b981;
    --container-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    /* --gradient-hero: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); */
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Contenedor */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-png {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Header y navegación */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Toggle menu móvil */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0" stop-color="%23398e6a" stop-opacity="0.1"/><stop offset="1" stop-color="%23398e6a" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="200" fill="url(%23a)"/><circle cx="800" cy="800" r="300" fill="url(%23a)"/></svg>'); */
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    /* font-size: 1.2rem; */
    margin-top: 0.5rem;
}

/* App Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.app-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(5deg);
}

.app-frame {
    background: var(--card-background);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 400px;
    border: 1px solid var(--border-color);
}

.app-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.app-dots {
    display: flex;
    gap: 0.5rem;
}

.app-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.app-dots span:first-child {
    background: #ef4444;
}

.app-dots span:nth-child(2) {
    background: #f59e0b;
}

.app-dots span:last-child {
    background: #10b981;
}

.app-content {
    padding: 1.5rem;
}

.app-tab {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f1f5f9;
    color: var(--text-secondary);
}

.app-tab.active {
    background: var(--primary-color);
    color: white;
}

.conduct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.conduct-card {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.conduct-card:hover {
    transform: translateY(-2px);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
    border-radius: 2rem;
}

.app{
    /* border-color: black; */
    /* border-width: 2rem; */
    border: 2.5px solid #000000;
}

.mail{
    margin-top:2rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 2rem;
}

.btn-secondary:hover {
    background: var(--text-color);
    background: #273a83;
    color: white;
    border-color: var(--text-color);
    border-color: #273a83;;
}

.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* Secciones */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Características */
.features {
    padding: var(--section-padding);
    background: var(--card-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-img {
    width: auto;
    height: auto;
    /* background: var(--gradient-primary); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;

}


.feature-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    /* background-color: #ffefd5; */
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card .feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Cómo funciona */
.how-it-works {
    padding: var(--section-padding);
    background: var(--background-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Casos de uso */
.use-cases {
    padding: var(--section-padding);
    background: var(--card-background);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta .btn-primary:hover {
    background: var(--background-color);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-icon {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border-radius: 2rem;
}

.support-link:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .app-frame {
        width: 320px;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }

    .app-frame {
        width: 280px;
    }

    .conduct-grid {
        grid-template-columns: 1fr;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.step,
.case-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll revelación */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Estados de focus */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Utilidades */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }


/* .support-link {
    background: none;
    border: none;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #007bff;
    text-decoration: none;
} */

/* Modal de apoyo */
/* .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content h3 {
    margin: 0 0 20px 0;
    color: #333;
    text-align: center;
    font-size: 24px;
}

.support-modal-content {
    margin-bottom: 25px;
}

.support-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.support-options h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
}

.support-option {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-icon {
    font-size: 24px;
    margin-right: 10px;
}

.option-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.option-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.option-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.donation-amounts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.donation-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 60px;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #398e6a;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-sm {
    font-size: 14px;
}

.donation-btn .amount {
    font-weight: 600;
    font-size: 16px;
}

.donation-btn .label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.donation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    color: white;
}

.modal-buttons {
    text-align: center;
    margin-top: 20px;
}

.button-container {
    display: flex;
    justify-content: center;
}

.full-width {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.btn-secondary.full-width {
    background: #6c757d;
    color: white;
}

.btn-secondary.full-width:hover {
    background: #5a6268;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .donation-btn {
        flex-direction: row;
        justify-content: space-between;
        min-height: 48px;
        padding: 12px 16px;
    }
    
    .donation-btn .label {
        margin-top: 0;
        margin-left: 8px;
    }
} */

/* Modal de apoyo - Estilo actualizado */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.modal-content h3 {
    margin: 0 0 25px 0;
    color: #333;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.support-modal-content {
    margin-bottom: 25px;
}

.support-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-size: 15px;
}

.support-options h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.support-option {
    margin-bottom: 30px;
    padding: 25px;
    border: none;
    border-radius: 14px;
    background: #f8f9fa;
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.option-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.option-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.8rem;
    /* margin-top:-1rem; */
}

.option-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.donation-amounts {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 12px;
    margin-top: 0;
}

.donation-btn {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    /* min-height: 80px; */
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary.donation-btn {
    background: #a8c8b8;
    color: #2d4d3a;
    border: 1px solid #9bb8a8;
}

.btn-secondary.donation-btn {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #e0e0e0;
}

.donation-btn .amount {
    font-weight: 600;
    font-size: 20px;
    /* margin-bottom: 4px; */
    /* line-height: 1; */
}

.donation-btn .label {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.2;
    text-align: center;
}

.donation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-decoration: none;
}

.btn-primary.donation-btn:hover {
    background: #98b8a8;
    color: #2d4d3a;
}

.btn-secondary.donation-btn:hover {
    background: #e8e8e8;
    color: #666;
}

/* Botón de "Enviar feedback" */
.option-buttons .btn-secondary:not(.donation-btn) {
    background: #e9ecef;
    color: #495057;
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.option-buttons .btn-secondary:not(.donation-btn):hover {
    background: #dee2e6;
    text-decoration: none;
    color: #495057;
}

.modal-buttons {
    text-align: center;
    margin-top: 30px;
    /* padding-top: 20px; */
    /* border-top: 1px solid #f0f0f0; */
}

.button-container {
    display: flex;
    justify-content: center;
}

.full-width {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid #dee2e6;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
    color: #398e6a;
}

.full-width:hover {
    background: #f8f9fa;
    border-color: #398e6a;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 20px;
        margin: 20px;
        border-radius: 12px;
    }
    
    .support-option {
        padding: 20px;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .donation-btn {
        /* flex-direction: row; */
        /* justify-content: space-between; */
        min-height: 40px;
        padding: 5px 20px;
        text-align: left;
    }
    
    .donation-btn .amount {
        font-size: 16px;
    }
    
    .donation-btn .label {
        margin-top: 0;
        margin-left: 12px;
        text-align: right;
    }
}

.btn-primary.btn-sm {
    /* background-color: #adc7c4;
    color: rgb(0, 0, 0);
    border: none; */
    background-color: #ffd240;
    color: #003087;
    border: none;
    border-radius: 2rem;
}

.donation-btn .amount {
    font-weight: 600;
    font-size: 16px;
}