/* Estilo del footer */


.footer {
    background-color: #015289;
    width: 100%;
    /* Flexbox para centrar el contenido hijo (.parent) */
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    padding: 20px 0;
    /* Un poco de aire arriba y abajo */
}

.parent {
    display: grid;
    /* Cambiado a 4 columnas porque es lo que realmente usas */
    /* Puedes usar una medida fija (ej. 250px) o porcentaje */
    grid-template-columns: repeat(4, 1fr);

    /* grid-template-rows: auto es mejor para que se adapte al contenido */
    grid-template-rows: auto auto;

    grid-column-gap: 0px;
    grid-row-gap: 0px;

    /* Controla el ancho máximo del contenido central */
    width: 100%;
    max-width: 1000px;

    /* Ajusta esto al ancho que prefieras para tu tabla */
}

/* --- Tus clases internas (sin cambios, solo confirmando áreas) --- */

.div4 {
    /* Ocupa columnas 1, 2 y 3 */
    grid-area: 1 / 1 / 2 / 4;
    background-color: #015289;
    display: flex;
    /* Centrar logo o texto dentro del bloque verde si quieres */
    align-items: center;
    padding: 10px;
    color: white;

}

.div5 {
    grid-area: 1 / 4 / 3 / 5;
    background-color: #015289;

    /* Agrega esto para centrar el contenido */
    display: flex;
    flex-direction: column;
    /* Alinea los elementos verticalmente (columna) */
    justify-content: center;
    /* Centra en el eje principal (vertical en este caso) */
    align-items: center;
    /* Centra en el eje secundario (horizontal) */
}


.div1 {
    grid-area: 2 / 1 / 3 / 2;
    background-color: #015289;
    color: rgb(190, 190, 190);
}

.div2 {
    grid-area: 2 / 2 / 3 / 3;
    background-color: #015289;
    list-style-type: none;
    color: rgb(190, 190, 190);
}

.div3 {
    grid-area: 2 / 3 / 3 / 4;
    background-color: #015289;
    color: rgb(190, 190, 190);
}

.logoA {
    width: 50px;
    height: 50px;
}

.textoFooter {
    font-size: small;
}

.div1 a,
.div2 a,
.div3 a,
.div4 a,
.div5 a {
    color: rgb(197, 197, 197);
    /* Fuerza el color blanco */

    /* Quita el subrayado (opcional) */
}

.footer a:hover {
    text-decoration: underline;
    /* Agrega subrayado al pasar el mouse */
    color: #e0e0e0;
    /* Un blanco ligeramente grisáceo */
}


/* Estilo del footer */


.header-container {
    background-color: #e0e0e0;
    /* Gris claro de fondo */
    padding: 20px 40px;
    /* Padding generoso a los lados */
    font-family: Arial, sans-serif;

    /* FLEXBOX MÁGICO */
    display: flex;
    justify-content: space-between;
    /* Separa los elementos a los extremos */
    align-items: center;
    /* Centra verticalmente */
}

/* --- ESTILOS DEL LOGO IZQUIERDO --- */
.logo-section {
    padding-left: 190px;
    display: flex;
    align-items: center;
    gap: 15px;
    /* Espacio entre el sello y el texto */
}

.uscis-seal {
    width: 80px;
    /* Ajusta el tamaño del sello */
    height: auto;
}

.logo-text {
    font-family: 'Merriweather', serif;
    /* Fuente serif oficial */
    color: #003366;
    /* Azul oscuro institucional */
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
}

/* --- ESTILOS DE REDES SOCIALES (DERECHA) --- */
.social-section {
    text-align: right;
    padding-right: 189px;
}

.social-icons {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 5px;
}

.icon-box {
    background-color: #d0d0d0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-size: 22px;
    transition: background-color 0.2s;
}

.icon-box:hover {
    background-color: #b0b0b0;
    color: black;
}

.contact-link {
    display: inline-block;
    color: #005ea2;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #005ea2;
    margin-top: 5px;
}

.contact-link:hover {
    color: #003a63;
    border-bottom-color: #003a63;
}


/* Estilos de la Barra de Navegación */
.main-navbar {
    background-color: #f1f1f1;
    /* Fondo gris muy claro, casi blanco */
    padding: 15px 40px;
    /* Mismo padding lateral que el header para alinear */
    border-top: 1px solid #dcdcdc;
    /* Línea sutil separadora arriba */
    font-family: Arial, sans-serif;
    /* O 'Source Sans Pro' si la importaste */
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    /* Quita los puntos de lista */
    margin: 0;
    padding: 0;
    display: flex;
    /* Elementos en fila */
    flex-wrap: wrap;
    /* Permite que bajen a la siguiente línea si no caben */
    gap: 40px;
    /* Espacio generoso entre cada palabra */
}

.nav-menu li a {
    text-decoration: none;
    /* Quita el subrayado por defecto */
    color: #000000;
    /* Texto negro */
    font-weight: 700;
    /* Negrita gruesa */
    font-size: 16px;
    transition: color 0.2s;
}

/* Efecto al pasar el mouse (Hover) */
.nav-menu li a:hover {
    text-decoration: underline;
    /* Subraya al pasar el mouse */
    color: #005ea2;
    /* Azul oficial al interactuar */
}



/* 1. Pantallas Grandes (Desktop normal) - Ya definido por defecto */


/* 2. Pantallas Medianas (Tablets / Laptops pequeños - menos de 992px) */





@media (max-width: 3000px) {
    .social-section {

        padding-right: 930px;

    }

    .logo-section {
        padding-left: 870px;

    }
}




@media (max-width: 2560px) {
    .social-section {

        padding-right: 730px;

    }

    .logo-section {
        padding-left: 730px;

    }
}




@media (max-width: 1920px) {
    .social-section {

        padding-right: 390px;

    }

    .logo-section {
        padding-left: 390px;

    }
}


@media (max-width: 992px) {
    .social-section {

        padding-right: 0px;

    }

    .logo-section {
        padding-left: 0px;

    }
}

/* 3. Pantallas Pequeñas (Móviles - menos de 768px) */
@media (max-width: 768px) {

    .social-section {

        padding-right: 0px;

    }

    .logo-section {
        padding-left: 0px;

    }
}


/* codigo del card */









body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
}

.case-status-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* CAJA PRINCIPAL */

.status-box {
    background-color: #e9e9e9;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.status-box h2 {
    margin-top: 0;
}

.status-box input {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #aaa;
}

.status-box button {
    display: block;
    background-color: #c9c9c9;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.account-links {
    margin-top: 15px;
}

.account-links a {
    color: #005ea2;
    text-decoration: none;
    font-weight: bold;
}

/* LINKS INFERIORES */

.privacy-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 20px 0;
}

.privacy-links a {
    text-decoration: none;
    color: #005ea2;
}

/* FEATURED CARD */

.featured-card {
    display: flex;
    background-color: #e9e9e9;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-card img {
    width: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 20px;
}

/* GRID DE CARDS */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background-color: #e9e9e9;
    border-radius: 6px;
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    padding: 15px 15px 0 15px;
}

.card p {
    padding: 0 15px;
}

/* BOTONES */

.primary-btn {
    margin: 15px;
    background-color: #005ea2;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.primary-btn:hover {
    background-color: #003f73;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .featured-card {
        flex-direction: column;
    }

    .featured-card img {
        width: 100%;
        height: 250px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .status-box input {
        width: 100%;
    }

    .privacy-links {
        flex-direction: column;
        gap: 10px;
    }
}

.status-box,
.featured-card,
.card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
}

.status-box button {
    background-color: #e1e1e1;
    color: #666;
    cursor: not-allowed;
}

.status-box input {
    width: 320px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 14px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

.status-box h2 {
    font-size: 20px;
    font-weight: 600;
}

.featured-card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 0;
}

.featured-content {
    padding: 30px;
}

.card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    padding-bottom: 25px;
}

.card img {
    height: 180px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
}

.case-status-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
}

.status-box,
.featured-card,
.card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
}

.status-box {
    padding: 30px;
}

.status-box input {
    width: 320px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.status-box button {
    background-color: #e1e1e1;
    color: #666;
    border: none;
    padding: 10px 20px;
    cursor: not-allowed;
}

.privacy-links {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 20px 0;
}

.featured-card {
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-card img {
    width: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 30px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.primary-btn {
    margin: 15px;
    background-color: #005ea2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
}

.case-status-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
}

.status-box,
.featured-card,
.card {
    background-color: #ffffff;
    border: 1px solid #dcdcdc;
}

.case-status-container {
    box-shadow: 0 0 0 1px #e5e5e5;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    min-height: 100%;
}

.case-status-container {
    margin: 60px auto;
}

body {
    background-color: rgb(238, 237, 237) !important;
}

.case-status-container {
    font-family: Arial
}

.uscis-header {
    background-color: #ffffff;
    border-bottom: 1px solid #dcdcdc;
}

.uscis-topbar {


    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

/* HEADER */
.uscis-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dcdcdc;
    font-family: Arial, Helvetica, sans-serif;
}

/* BARRA DEL LOGO */
.uscis-logo-bar {
    display: flex;
    justify-content: center;
    padding: 18px 0 8px;

    display: flex;
    justify-content: flex-start;
    /* 👈 izquierda */
    padding: 10px 20px;
}

/* LOGO */
.uscis-logo {

    align-items: start;
    gap: 10px;
    width: 100%;
    background-color: rgb(255, 255, 255);
}

.uscis-logo img {
    height: 70px;
    background-color: rgb(255, 255, 255);
    padding-left: 300px;
}

.uscis-logo span {

    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #005ea2;
}

/* NAV */
.uscis-nav {
    width: 100%;
}

.uscis-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 10px 0 14px;
}

.uscis-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #005ea2;
    text-decoration: none;
}

.uscis-nav a:hover {
    text-decoration: underline;
}


@media (max-width: 2560) {
    .uscis-logo img {
        height: 70px;

        padding-left: 300px;
    }
}


@media (max-width: 1920px) {
    .uscis-logo img {

        padding-left: 500px;
    }
}



@media (max-width: 1200px) {
    .uscis-logo img {
        height: 70px;

        padding-left: 150px;
    }
}



@media (max-width: 992px) {
    .uscis-logo img {
        height: 70px;

        padding-left: 20px;
    }
}

/* 3. Pantallas Pequeñas (Móviles - menos de 768px) */
@media (max-width: 768px) {

    .uscis-logo img {
        height: 70px;

        padding-left: 10px;
    }

}


/* NAV DESKTOP */
.uscis-nav {
    width: 100%;
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 14px 0;
}

/* BOTÓN HAMBURGUESA */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #005ea2;
    margin: 5px 0;
}










/* DESKTOP */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 14px 0;
}

.hamburger {
    display: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-menu {
        display: none;
        /* 👈 CERRADO */
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 1px solid #dcdcdc;
    }

    .nav-menu.active {
        display: flex;
        /* 👈 SOLO AL ACTIVAR */
    }

    .hamburger {
        display: block;
        margin: 10px auto;
    }
}



/* =========================
   HEADER USCIS
========================= */

.uscis-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #dcdcdc;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   LOGO
========================= */

.uscis-logo-bar {
    display: flex;
    justify-content: flex-start;
    /* izquierda */
    align-items: center;
    padding: 12px 20px;
}

.uscis-logo img {
    height: 70px;
}

/* NAV BASE */
.uscis-nav {
    position: relative;
}

/* MENÚ DESKTOP */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    gap: 28px;
}

/* LINKS */
.nav-menu a {
    color: #005ea2;
    font-weight: 600;
    text-decoration: none;
}

/* HAMBURGUESA */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin: 10px auto;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #005ea2;
    margin: 5px 0;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        /* 👈 CERRADO */
        flex-direction: column;
        align-items: center;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 1px solid #dcdcdc;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
        /* 👈 SOLO CUANDO SE DA CLICK */
    }
}

/* 🔒 FIX DEFINITIVO MENU MOBILE */

@media (max-width: 768px) {

    .uscis-nav .nav-menu {
        display: none !important;
    }

    .uscis-nav .nav-menu.active {
        display: flex !important;
    }
}

.menu-button {
    display: none;
    /* oculto en desktop */
    background-color: #0071bc;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-button {
        display: block;
        margin: 10px auto;
    }
}


/* =========================
   GOV BANNER
========================= */

.gov-banner {
    background-color: #ebebeb;
    color: #000000;
    font-size: 13px;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
}

.gov-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gov-left img {
    width: 18px;
    height: auto;
}

.gov-toggle {
    background: none;
    border: none;
    color: #383bff;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
}

.gov-toggle:hover {
    text-decoration: underline;
}

.gov-right a {
    color: #383bff;
    text-decoration: n
}


.textoNegrita{
    font-weight: bold;
}
.case-status-container {
    margin: 0 auto;
}.uscis-header {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1000;
}
.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none; /* correcto para navegación */
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #005ea2;      /* Azul USCIS */
    font-weight: 600;
    text-decoration: none;
}
