/* custom_style_2.css - Estilos personalizados para renovaciones ICETEX */

:root {
    --primary-color: #004563;
    --secondary-color: #0077b6;
    --accent-color: #00b4d8;
    --light-blue: #a1d6ff;
    --dark-blue: #003049;
    --success-color: #2e7d32;
    --warning-color: #f9a825;
    --danger-color: #c62828;
    --info-color: #0277bd;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.main-title {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.card {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-header {
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.alert {
    border-left: 4px solid;
    border-radius: 8px;
}

.btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-bold {
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-bold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: none;
    padding: 1rem;
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: rgba(0, 69, 99, 0.05);
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
}

.list-group-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.img-container {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.img-container img {
    transition: transform 0.5s ease;
}

.img-container:hover img {
    transform: scale(1.02);
}

.feature-icon {
    font-size: 1.75rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

.footer {
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--light-blue) !important;
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.balanced-item {
    margin-bottom: 1rem;
}

.balanced-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-content {
        text-align: center;
    }

    .logo-container {
        margin-bottom: 1.5rem;
        justify-content: center;
    }
}