/* ============================================
   VARIABLES Y ESTILOS GLOBALES
   ============================================ */

:root {
    --primary-color: #7c3aed;
    --secondary-color: #a78bfa;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--light-bg);
}

/* ============================================
   SECCIÓN SOBRE
   ============================================ */

.about {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   SECCIÓN DE USUARIOS
   ============================================ */

.users {
    padding: 80px 0;
    background-color: white;
}

.users h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.user-placeholder {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SECCIÓN DE DONACIONES
   ============================================ */

.donations {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.donations h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.donation-content {
    max-width: 900px;
    margin: 0 auto;
}

.donation-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.small-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.donation-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.donation-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.donation-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.donation-option p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1.5rem 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qr-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   SECCIÓN DE CONTACTO
   ============================================ */

.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem !important;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.requirements {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.requirements h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.requirements ul {
    list-style: none;
    text-align: left;
}

.requirements li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.requirements li:last-child {
    border-bottom: none;
}

/* ============================================
   SECCIÓN FAQ (CONTACTO)
   ============================================ */

.contact-info-section {
    padding: 80px 0;
    background-color: white;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    background-color: #f0f4ff;
    transform: translateY(-3px);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PÁGINA ABOUT - SECCIÓN DETALLADA
   ============================================ */

.about-detailed {
    padding: 0;
}

.about-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
}

.about-section:nth-child(odd) {
    background-color: var(--light-bg);
}

.about-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-section p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.reasons-list,
.process-list {
    margin: 1.5rem 0 0 0;
    padding-left: 2rem;
}

.reasons-list li,
.process-list li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

.reasons-list strong,
.process-list strong {
    color: var(--primary-color);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.data-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2);
}

.data-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.data-item p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.donation-info {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    margin-top: 1.5rem;
}

.donation-info p {
    margin-bottom: 0.8rem;
    color: #92400e;
    font-weight: 500;
}

.donation-info p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.cta-section h2 {
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* ============================================
   PÁGINA DESEOS
   ============================================ */

.search-section {
    background-color: var(--light-bg);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-button {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-tag {
    padding: 0.6rem 1.2rem;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-dark);
}

.filter-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #f0f4ff;
}

.filter-tag.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-color);
}

.wishes-section {
    padding: 80px 0;
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.wish-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.wish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.wish-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

.wish-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
}

.wish-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wish-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.wish-country {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.wish-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-view-profile {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.wish-card.placeholder {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border: 2px dashed var(--primary-color);
}

.wish-card.placeholder .wish-image-placeholder {
    display: none;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE DESEOS
   ============================================ */

@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }

    .search-input,
    .search-button {
        width: 100%;
    }

    .filter-tags {
        justify-content: center;
    }

    .wishes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .empty-icon {
        font-size: 2.5rem;
    }

    .empty-state h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   PÁGINA ENVIAR DESEO
   ============================================ */

.send-wish {
    padding: 80px 0;
}

.send-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.send-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.send-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* PASOS */
.steps-section {
    margin-bottom: 4rem;
}

.steps-section h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* INFORMACIÓN REQUERIDA */
.required-info {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.required-info h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* FORMATO EMAIL */
.email-format {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.email-format h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-format > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.code-block {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: auto;
}

.code-block p {
    margin: 0.5rem 0;
}

/* TIMELINE */
.timeline {
    margin-bottom: 4rem;
}

.timeline h3 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.timeline-items {
    position: relative;
    padding: 2rem 0;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 0;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 1rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 1rem);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    top: 0;
}

.timeline-dot {
    display: block;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}

.timeline-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* NOTAS IMPORTANTES */
.important-notes {
    background: #fef3c7;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-bottom: 4rem;
}

.important-notes h3 {
    font-size: 1.8rem;
    color: #92400e;
    text-align: center;
    margin-bottom: 2rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.note-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #f59e0b;
}

.note-card h4 {
    color: #92400e;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.note-card p {
    color: #5a3a0a;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA FINAL */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.final-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.final-cta p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* FAQ ENVIAR */
.send-faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.send-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .timeline-items::before {
        left: 10px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(-50%);
    }

    .code-block {
        font-size: 0.85rem;
        padding: 1.5rem;
    }

    .email-format {
        padding: 1.5rem;
    }

    .required-info {
        padding: 2rem;
    }

    .important-notes {
        padding: 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer {
    background: linear-gradient(135deg, #5b21b6 0%, #6d28d9 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 80px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .about h2,
    .users h2,
    .contact h2,
    .donations h2 {
        font-size: 1.8rem;
    }

    .about,
    .users,
    .contact {
        padding: 50px 0;
    }

    .about-card h3,
    .contact-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .about h2,
    .users h2,
    .contact h2,
    .donations h2 {
        font-size: 1.5rem;
    }

    .about,
    .users,
    .contact {
        padding: 40px 0;
    }
}

/* ============================================
   PÁGINA TÉRMINOS Y CONDICIONES
   ============================================ */

.terms-section {
    padding: 80px 0;
    background-color: white;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.terms-item:last-child {
    border-bottom: none;
}

.terms-item h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.terms-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.terms-item h3:first-of-type {
    margin-top: 0;
}

.terms-item p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--transition);
}

.inline-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.final-note {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    border-bottom: none;
    text-align: center;
}

.final-note p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.final-note p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* RESPONSIVE TÉRMINOS */
@media (max-width: 768px) {
    .terms-section {
        padding: 50px 0;
    }

    .terms-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .terms-item h2 {
        font-size: 1.5rem;
    }

    .terms-item h3 {
        font-size: 1.1rem;
    }

    .terms-list li {
        padding: 0.5rem 0 0.5rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   FORMULARIO DE DESEO
   ============================================ */

.form-section {
    padding: 80px 0;
    background-color: white;
}

.progress-container {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.4s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.wish-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.step-info {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.btn-prev,
.btn-next,
.btn-submit {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-prev {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-prev:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

/* FILE UPLOAD */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    background-color: #f0f4ff;
    cursor: pointer;
    transition: var(--transition);
}

.file-label:hover {
    background-color: #e0e7ff;
    border-color: var(--secondary-color);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.file-label p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.file-label small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.image-preview {
    margin-top: 1.5rem;
}

.preview-image {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.preview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-remove-image {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-remove-image:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* RESUMEN */
.form-summary {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.form-summary h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.summary-item {
    padding: 0.8rem;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.summary-item strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 120px;
}

/* NOTIFICACIONES */
.notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 9999;
    transition: transform 0.3s ease;
    max-width: 90%;
}

.notification.show {
    transform: translateX(-50%) translateY(0);
}

.notification-success {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.notification-error {
    background: #ef4444;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.notification-info {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* RESPONSIVE FORMULARIO */
@media (max-width: 768px) {
    .form-section {
        padding: 50px 0;
    }

    .form-step h3 {
        font-size: 1.4rem;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }

    .file-label {
        padding: 2rem 1rem;
    }

    .form-summary {
        padding: 1.5rem;
    }

    .notification {
        top: 90px;
        left: 10px;
        right: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}
