/* Jenrax - Servicio Suspendido Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores corporativos Jenrax */
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-orange: #f97316;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --white: #ffffff;
    --success-green: #10b981;
    --whatsapp-green: #25d366;
    
    /* Shadows */
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--dark-gray);
}

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

.content-wrapper {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    text-align: center;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 40px 30px 30px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

.icon-wrapper {
    margin-bottom: 24px;
}

.icon-wrapper i {
    font-size: 3rem;
    color: var(--accent-orange);
    background: #fef3e2;
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
}

.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.message {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.sub-message {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 32px;
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    min-width: 140px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-btn i {
    font-size: 1.5rem;
}

.contact-btn span {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: var(--white);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, #22c55e 100%);
    color: var(--white);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: var(--white);
}

/* Info Section */
.info-section {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-text i {
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background: var(--light-gray);
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
}

.footer p {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 30px 20px 20px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: 100%;
    }
    
    .title {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* Click effects */
.contact-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

/* Focus states for accessibility */
.contact-btn:focus {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}
