/* Estilos para PTEE - Programa de Transparencia y Ética Empresarial */

.ptee-header {
    padding: 2rem 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.ptee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.ptee-success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.ptee-title {
    font-family: 'DINProCondMedium', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ptee-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.ptee-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ptee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.ptee-card h3 {
    color: #007bff;
    font-family: 'DINProCondMedium', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.ptee-card h3 i {
    margin-right: 0.5rem;
}

.ptee-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    text-align: justify;
}

.ptee-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.ptee-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.ptee-list li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0;
}

.ptee-confirmation {
    padding: 3rem 2rem;
}

/* Estilos para formularios */
.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Estilos para alertas */
.alert-info {
    border-left: 4px solid #17a2b8;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-success {
    border-left: 4px solid #28a745;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Estilos para el card de autorización */
.card.border-warning {
    border-width: 2px;
}

.card-header.bg-warning {
    background-color: #ffc107 !important;
    border-bottom: 2px solid #e0a800;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ptee-card {
    animation: fadeInUp 0.6s ease-out;
}

.ptee-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ptee-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .ptee-title {
        font-size: 2rem;
    }
    
    .ptee-subtitle {
        font-size: 1.2rem;
    }
    
    .ptee-icon {
        font-size: 3rem;
    }
    
    .ptee-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ptee-text {
        font-size: 1rem;
    }
}

/* Estilos para links como botones */
a.btn {
    text-decoration: none;
    display: inline-block;
}

a.btn:hover {
    text-decoration: none;
}
