html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.content {
    flex: 1;
    /* Empuja el footer hacia abajo */
}

.nav-link lord-icon {
    vertical-align: middle;
}

.container lord-icon {
    vertical-align: middle;
}

.card-modern {
    border: none;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    background: white;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.hov:hover{
    transition: transform .25s ease, box-shadow .25s ease;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-modern .icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background: #2da4ba15; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 18px;
}

.card-modern .icon-wrapper-lg{
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: #2da4ba15; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 18px;
}

.card-modern .card-title {
    font-weight: 600;
    color: #13838E;
}

.card-modern .card-text {
    color: #555;
    font-size: 0.95rem;
}


.bg-track {
    background-image: url('/images/tracking.png');
    background-size: cover;        /* cubre todo el ancho y alto */
    background-position: center;   /* centra lo importante */
    background-repeat: no-repeat;  /* evita repeticiones */
    padding: 60px 20px;            /* espacio alrededor del contenido */
    border-radius: 12px;           
    color: #fff;                 
}

.square-box {
    width: 80px;
    height: 80px;
    /*background-color: #fff; */
}


/* Pequeñas personalizaciones */
.contact-card {
    max-width: 900px;
    margin: 1.5rem auto;
}

.avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: .75rem;
}

@media (max-width: 575.98px) {
    .avatar {
        width: 100px;
        height: 100px;
    }
}