/* Reset y configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    width: 100%;
    max-width: 600px;
}

.content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    text-align: center;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: #f59e0b;
}

.icon svg {
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-message {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.main-message strong {
    color: #dc2626;
}

.info-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    text-align: left;
}

.info-box h2 {
    font-size: 20px;
    color: #92400e;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    font-size: 16px;
    color: #78350f;
    line-height: 1.5;
}

.contact-info {
    background: #f3f4f6;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.contact-info li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4b5563;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.footer p {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .main-message {
        font-size: 16px;
    }
    
    .icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .contact-info ul {
        text-align: center;
    }
}
