/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    pointer-events: auto;
    user-select: none;
}

.whatsapp-pulse-ring {
    position: absolute;
    border: 3px solid #25D366;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.whatsapp-pulse-ring.delay-1 {
    animation-delay: 0.33s;
}

.whatsapp-pulse-ring.delay-2 {
    animation-delay: 0.66s;
}

.whatsapp-icon {
    position: relative;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a202c;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: #1a202c;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.tooltip-title {
    font-weight: 600;
    font-size: 14px;
}

.tooltip-subtitle {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #18327C 0%, #24509A 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pulse-green .badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.title-main {
    display: block;
    font-weight: 600;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.5;
}

.confidence-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* Contact Form */
.hero-right {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    text-align: center;
}

.form-description {
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
}

.form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #24509A;
    box-shadow: 0 0 0 3px rgba(36, 80, 154, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #18327C, #24509A);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(36, 80, 154, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.loading {
    pointer-events: none;
}

.btn-loading {
    display: none;
}

.btn-primary.loading .btn-text {
    display: none;
}

.btn-primary.loading .btn-loading {
    display: inline;
}

.security-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    animation: float 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 14px;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Why Now Section */
.why-now {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #18327C, #24509A);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title strong {
    background: linear-gradient(135deg, #18327C, #24509A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.opportunity-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #18327C, #24509A);
}

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

.card-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.card-badge.stable {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.card-badge.profitable {
    background: rgba(251, 146, 60, 0.1);
    color: #ea580c;
}

.card-badge.exclusive {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.card-statistic {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #18327C, #24509A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
}

/* Urgency CTA */
.urgency-cta {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
}

.pulse-red .badge-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.urgency-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.urgency-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    position: relative;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.trust-dot.pulse-green {
    background: #22c55e;
    animation: pulse 2s infinite;
}

.trust-dot.pulse-blue {
    background: #3b82f6;
    animation: pulse 2s infinite 0.5s;
}

.trust-dot.pulse-purple {
    background: #8b5cf6;
    animation: pulse 2s infinite 1s;
}

/* CTA Final Section */
.cta-final {
    padding: 120px 0;
    background: white;
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: center;
}

.cta-left {
    position: relative;
}

.section-badge.conversation {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-title strong {
    background: linear-gradient(135deg, #18327C, #24509A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 48px;
    line-height: 1.5;
}

.benefits-section {
    margin-bottom: 48px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-icon.priority {
    background: rgba(34, 197, 94, 0.1);
}

.benefit-icon.exclusive {
    background: rgba(59, 130, 246, 0.1);
}

.benefit-icon.response {
    background: rgba(251, 146, 60, 0.1);
}

.benefit-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.5;
}

/* Social Proof */
.social-proof {
    border-top: 1px solid #e2e8f0;
    padding-top: 32px;
}

.proof-stat {
    font-size: 18px;
    font-weight: 600;
    color: #18327C;
    margin-bottom: 16px;
}

.proof-quote {
    font-size: 18px;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.proof-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    color: #d1d5db;
    line-height: 1;
}

.proof-source {
    color: #64748b;
    font-size: 16px;
}

/* Final Form */
.cta-right {
    position: relative;
}

.vip-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    z-index: 10;
}

.vip-badge.static {
    /* Removed rotation animation */
}

.final-form {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.final-trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    justify-content: center;
}

.trust-final-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.full-width {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .opportunity-card {
        padding: 32px 24px;
    }
    
    .urgency-cta {
        padding: 40px 24px;
    }
    
    .urgency-title {
        font-size: 28px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .confidence-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .final-form {
        padding: 32px 24px;
    }
    
    .urgency-cta {
        padding: 32px 20px;
    }
    
    .final-trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
}

/* WhatsApp Modal Styles */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-modal.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}


.modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(50px) scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.whatsapp-modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}


.modal-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.modal-header p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 0;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e2e8f0;
    color: #374151;
    transform: scale(1.1);
}

.modal-form {
    margin-bottom: 24px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.modal-form .form-input:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.modal-form .form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-form .btn-primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modal-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.modal-security {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.modal-security .security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    justify-content: center;
}

/* Responsive modal */
@media (max-width: 640px) {
    .whatsapp-modal {
        padding: 20px;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 0;
        width: calc(100% - 40px);
        max-width: none;
        border-radius: 20px;
    }
    
    .modal-header h3 {
        font-size: 24px;
    }
    
    .modal-close {
        top: -5px;
        right: -5px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* Success Notification */
.success-notification {
    display: none;
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
    z-index: 3000;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-notification.show {
    display: flex;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.success-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.success-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.success-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.success-notification.hiding {
    animation: slideOutRight 0.5s ease-out forwards;
}

/* Responsive success notification */
@media (max-width: 640px) {
    .success-notification {
        top: 20px;
        right: 20px;
        left: 20px;
        min-width: auto;
        padding: 16px 20px;
    }
    
    .success-text strong {
        font-size: 14px;
    }
    
    .success-text p {
        font-size: 13px;
    }
}