/* Importamos las fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

/* Definición base de tipografías */
h1 {
    font-family: 'Inter', sans-serif;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* Un poco más bold para Space Grotesk */
    letter-spacing: -0.02em; /* Ajuste de tracking para mejor legibilidad */
}

h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

p, li {
    font-family: 'Space Grotesk', sans-serif;
}

/* Ajustes específicos */
.tagline {
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card h3,
.revolution-card h3,
.case-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.comparison h2,
.revolution h2,
.features h2,
.footer-left h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.highlight,
.revolution-subtitle,
.rethinking-text .highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

:root {
    /* Colores principales */
    --primary-color: #1E293B;      /* Azul oscuro para texto principal - más profesional */
    --secondary-color: #0EA5E9;    /* Azul brillante para CTA - transmite confianza */
    --accent-color: #38BDF8;       /* Azul claro para acentos - más amigable */
    
    /* Fondos y grises */
    --background-color: #FFFFFF;    /* Blanco para el fondo principal */
    --gray-50: #F8FAFC;            /* Gris muy claro para secciones */
    --gray-100: #F1F5F9;           /* Gris claro para bordes y divisores */
    --gray-200: #E2E8F0;           /* Gris para bordes más prominentes */
    --gray-700: #334155;           /* Gris oscuro para texto secundario */
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
    --gradient-hover: linear-gradient(135deg, #0284C7 0%, #0EA5E9 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header y Navegación */
header {
    padding: 1rem 2rem;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 80px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 60px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.tagline {
    font-size: 0.875rem;
    color: #666;
    padding-left: 1rem;
    border-left: 1px solid #ddd;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cta-button.secondary {
    background: transparent;
    color: #000;
    border: 1px solid #ddd;
}

.cta-button.secondary:hover {
    background: #f5f5f5;
    border-color: #000;
}

.cta-button.primary {
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.nav-right .cta-button {
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-right .cta-button.primary {
    min-width: 160px;
}

.nav-right .cta-button.primary span {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .tagline {
        font-size: 0.75rem;
        padding-left: 0;
        border-left: none;
        line-height: 1.2;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .nav-right .cta-button {
        padding: 0.625rem 1rem;
        min-width: 120px;
    }
    
    .nav-right .cta-button.primary {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 0.7rem;
    }
    
    .cta-button.secondary {
        display: none;
    }
}

/* Sección Hero */
.hero {
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.text-black {
    color: #000;
}

.text-gray {
    color: #00000040;
}

/* Grid de estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 80px;
}

.stat-item {
    text-align: left;
}

.stat-item h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Características */
.features {
    padding: 120px 5%;
}

.features h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 24px;
    color: #000;
}

.feature-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.feature-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* Colores de las cards */
.feature-card.blue {
    background: #F0F7FF;
}

.feature-card.yellow {
    background: #FDFAE5;
}

.feature-card.pink {
    background: #FFF0F6;
}

.feature-card.purple {
    background: #F3EFFF;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 80px 5%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

/* Sección de Transferencia */
.transfer {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.03) 0%, rgba(159, 122, 234, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid var(--gray-100);
}

.transfer h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Casos de Uso */
.use-cases {
    padding: 6rem 2rem;
}

.use-cases h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.case-card {
    background: var(--background-color);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.case-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-card p {
    color: var(--gray-700);
}

/* Footer */
.footer {
    padding: 120px 5%;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-left h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 24px;
    color: #000;
}

.footer-left p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    max-width: 500px;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
}

.footer-buttons .cta-button {
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-buttons .cta-button.primary {
    min-width: 160px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 5%;
    }

    .footer-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-buttons .cta-button {
        width: 100%;
    }
}

/* Agregar a los estilos existentes */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.popular {
    border: 2px solid var(--secondary-color);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: black;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.price {
    margin: 1.5rem 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.original {
    text-decoration: line-through;
    color: #666;
    margin-left: 0.5rem;
}

.period {
    color: #666;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.features-list li::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    background: black;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #333;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.hero-subtitle {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: left;
}

.subtitle-main {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 24px;
    color: #000;
}

.subtitle-highlight {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    margin-bottom: 16px;
    color: #000;
}

.subtitle-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .hero-subtitle {
        padding: 0 20px;
        margin-top: 60px;
    }
}

.rethinking {
    padding: 0px 5% 120px;
    background: linear-gradient(180deg, 
        #FFFFFF 0%,
        #FFF5F9 10%,
        #F3EFFF 90%,
        #FFFFFF 100%
    );
    position: relative;
    overflow: hidden;
}

/* Ajustamos los elementos decorativos para que no interfieran con las transiciones */
.rethinking::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF8FBA20 0%, #FF8FBA10 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.rethinking::after {
    content: '';
    position: absolute;
    bottom: 20%; /* Ajustado para no interferir con la transición inferior */
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #9747FF20 0%, #9747FF10 100%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.rethinking-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: right;
    position: relative;
    z-index: 1;
}

.rethinking h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
    text-align: right;
}

.rethinking-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.rethinking-text .highlight {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    margin-bottom: 24px;
    color: #000;
    font-weight: 500;
}

.rethinking-text .description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 768px) {
    .rethinking {
        padding: 40px 5% 80px;
    }
    
    .rethinking-text {
        padding: 0 20px;
    }
}

.comparison {
    padding: 120px 5%;
    /* Gradiente que transiciona desde blanco a través de tonos azules suaves */
    background: linear-gradient(180deg, 
        #FFFFFF 0%,
        #F0F7FF 10%,
        #EFF6FF 90%,
        #FFFFFF 100%
    );
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos similares a rethinking pero con otros colores */
.comparison::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #60A5FA20 0%, #60A5FA10 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.comparison::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3B82F620 0%, #3B82F610 100%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.comparison-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 80px;
    text-align: center;
}

.comparison-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #000;
    color: white;
    padding: 2rem;
    font-weight: 500;
    font-size: 1.125rem;
}

.table-header .col-feature,
.table-header .col-empatico,
.table-header .col-traditional {
    color: white;
    opacity: 0.9;
}

.table-header .col-empatico,
.table-header .col-traditional {
    font-weight: 400;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: #F8F9FF;
}

.col-feature {
    font-weight: 500;
    color: #000;
}

.col-empatico {
    color: #000;
    font-weight: 500;
}

.col-traditional {
    color: #666;
}

.check {
    display: inline-block;
    color: #22C55E;
    margin-right: 8px;
    font-weight: bold;
}

.cross {
    display: inline-block;
    color: #EF4444;
    margin-right: 8px;
    font-weight: bold;
}

.basic {
    display: inline-block;
    color: #F59E0B;
    margin-right: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .comparison {
        padding: 80px 5%;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.875rem;
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 480px) {
    .table-header, .table-row {
        font-size: 0.75rem;
        padding: 1rem 0.75rem;
    }
}

.revolution {
    padding: 120px 5%;
    background: white;
}

.revolution-content {
    max-width: 1400px;
    margin: 0 auto;
}

.revolution h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
}

.revolution-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.4;
    text-align: center;
    color: #666;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.revolution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.revolution-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.revolution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
}

.card-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.3s ease;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .revolution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .revolution {
        padding: 80px 5%;
    }
    
    .revolution-cards {
        grid-template-columns: 1fr;
    }
    
    .revolution-card {
        padding: 2rem;
    }
}

/* Textos específicos que necesitan Inter */
p,
.tagline,
.description,
.subtitle-text,
.col-traditional,
.footer-note,
.card-content p,
.feature-card p,
.feature-card li,
.revolution-card p,
.table-row .col-feature,
.table-row .col-empatico,
.table-row .col-traditional {
    font-family: 'Inter', sans-serif;
}

/* Elementos que necesitan Space Grotesk */
h3,
.highlight,
.subtitle-main,
.subtitle-highlight,
.revolution-subtitle,
.feature-card h3,
.revolution-card h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.footer-tagline {
    display: inline-block;
    margin-top: 16px;
    font-size: 1rem;
    color: #666;
    padding-left: 0;
    border-left: none;
}

@media (max-width: 768px) {
    .footer-tagline {
        font-size: 0.875rem;
    }
}

.hero-rethinking {
    background: linear-gradient(180deg, 
        #FFFFFF 0%,
        #FFFFFF 30%,
        #FFEEF6 45%,    /* Intermedio entre #FFF0F7 y #FFEDF5 */
        #F4EDFF 60%,    /* Intermedio entre #F5EEFF y #F3EBFF */
        #EFE7FF 70%,    /* Intermedio entre #F0E8FF y #EDE5FF */
        #F6EEFF 85%,    /* Intermedio entre #F7F0FF y #F5EDFF */
        #FFFFFF 100%
    );
    padding: 10rem 6rem;
    margin: 0;
    width: 100%;
}

.hero-rethinking h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.2;
    margin-bottom: 3rem;
}

.rethinking-content {
    max-width: 1400px;
    margin: 0 auto;
}

.text-center {
    text-align: start;
}

.highlight {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-rethinking {
        padding: 7rem 1rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #000;
}

.modal-description {
    font-family: 'Inter', sans-serif;
    color: #666;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    color: #000;
}

.form-group input {
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#waitlistForm .cta-button {
    grid-column: 1 / -1;
    text-align: center;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Notification */
.notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    color: #2C3E50;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.notification.success {
    background-color: #D1FAE5;  /* Verde pastel suave */
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.notification.error {
    background-color: #FEE2E2;  /* Rojo pastel suave */
    border: 1px solid #FECACA;
    color: #991B1B;
} 