/**
 * International Checkout Module - Information Page Styles
 * Versión: 1.0
 * Fecha: 2025-01-19
 */

.international-orders-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
}

.international-orders-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.international-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.international-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

.international-header .subtitle {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.international-content {
    padding: 2rem;
}

.info-section {
    margin-bottom: 2.5rem;
}

.info-section h2 {
    color: #1E3A8A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #1E3A8A;
    padding-bottom: 0.5rem;
}

.info-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #1E3A8A;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.info-box h3 {
    color: #1E3A8A;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.info-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin: 1.5rem 0;
    padding-left: 3rem;
    position: relative;
    line-height: 1.8;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #1E3A8A;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 5px;
}

.warning-box h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.warning-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin: 0.5rem 0;
    color: #856404;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 1rem 0;
    padding: 0.5rem 0;
}

.contact-list a {
    color: #1E3A8A;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #1E3A8A;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
}

.btn-outline:hover {
    background: #1E3A8A;
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .international-header h1 {
        font-size: 2rem;
    }
    
    .international-content {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

