

     :root {
            --primary: #0056A6;
            --secondary: #009639;
            --accent: #F2B705;
            --warning: #D0342C;
            --light: #F5F5F5;
            --dark: #333333;
            --gray: #6C757D;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .content-section {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            margin-bottom: 30px;
        }
        
        h2 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 28px;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
        }
        
        .process-intro {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
            padding: 15px;
            background-color: #f0f8ff;
            border-left: 4px solid var(--primary);
            border-radius: 4px;
        }
        
        .process-steps {
            counter-reset: step-counter;
        }
        
        .step {
            position: relative;
            margin-bottom: 40px;
            padding-left: 40px;
            border-left: 3px solid var(--primary);
        }
        
        .step:before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: -20px;
            top: 0;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary);
        }
        
        .step-content {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .step-content:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 22px;
        }
        
        h4 {
            color: var(--secondary);
            margin: 15px 0 10px;
            font-size: 18px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        

        
        li:before {
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: -10px;
        }
        
        .contact-info {
            background-color: #e8f4fd;
            padding: 15px;
            border-radius: var(--border-radius);
            margin: 15px 0;
            border-left: 4px solid var(--primary);
        }
        
        .contact-info a {
            color: var(--primary);
            font-weight: bold;
            text-decoration: none;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        .highlight {
            background-color: #fff9e6;
            padding: 15px;
            border-radius: var(--border-radius);
            margin: 15px 0;
            border-left: 4px solid var(--accent);
        }
        
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .payment-method {
            flex: 1;
            min-width: 250px;
            background: #f9f9f9;
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid #eaeaea;
        }
        
        .alert {
            padding: 15px;
            margin: 15px 0;
            border-radius: var(--border-radius);
            font-weight: 500;
        }
        
        .alert-warning {
            background-color: #fff3cd;
            border-left: 4px solid var(--accent);
            color: #856404;
        }
        
        .alert-danger {
            background-color: #f8d7da;
            border-left: 4px solid var(--warning);
            color: #721c24;
        }
        
        .alert-info {
            background-color: #d1ecf1;
            border-left: 4px solid var(--primary);
            color: #0c5460;
        }
        
        .alert-success {
            background-color: #d4edda;
            border-left: 4px solid var(--secondary);
            color: #155724;
        }
        
        .timeline {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            position: relative;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            transform: translateY(-50%);
        }
        
        .timeline-item {
            background: white;
            padding: 15px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1;
            border: 3px solid var(--primary);
        }
        
        .timeline-date {
            font-weight: bold;
            color: var(--primary);
            font-size: 14px;
        }
        
        .timeline-desc {
            font-size: 12px;
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .step {
                padding-left: 30px;
            }
            
            .step:before {
                left: -15px;
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
            
            .payment-methods {
                flex-direction: column;
            }
            
            .timeline {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .timeline:before {
                display: none;
            }
        }
        
        /* Footer b¨¢sico */
        .basic-footer {
            background-color: #727279d7;
            color: white;
            padding: 30px 0;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 50px;
        }
        
        .footer-contact {
            margin-bottom: 20px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
        }
        
        .footer-contact a {
            color: white;
            text-decoration: none;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .footer-social a {
            color: white;
            font-size: 1.5rem;
        }
        
        .footer-legal {
            font-size: 0.8rem;
            opacity: 0.8;
            max-width: 800px;
        }
        
        /* Mejoras para dispositivos m¨®viles */
        @media (max-width: 768px) {
           
            .basic-footer {
                padding: 20px 0;
            }
            
            .footer-content {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
           
            
            .footer-social {
                gap: 10px;
            }
            
            .footer-social a {
                font-size: 1.3rem;
            }
        }
