﻿/* ============================================
   SIMA - Sistema Integrado de Mejora Administrativa
   Archivo de estilos personalizados
   ============================================ */

/* ============================================
   Variables CSS (Design Tokens)
   ============================================ */
:root {
    /* Colores principales */
    --color-primary-dark: #002F2A;
    --color-primary: #1e5b4f;
    --color-primary-light: #2d7563;
    --color-secondary: #046639;
    /* Colores de estado */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-info: #17a2b8;
    /* Colores neutros */
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    /* Colores de fondo */
    --bg-body: #f5f5f5;
    --bg-sidebar-gradient-start: #1e5b4f;
    --bg-sidebar-gradient-end: #002f2a;
    --bg-header: #1E5B4F;
    --bg-header-secondary: #e8f5f3;
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-sidebar: 2px 0 6px rgba(0, 0, 0, 0.15);
    /* Espaciado */
    --spacing-xs: 0.25rem; /* 4px */
    --spacing-sm: 0.5rem; /* 8px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */
    --spacing-xxl: 3rem; /* 48px */
    /* Dimensiones del layout */
    --sidebar-width: 257px;
    --header-height: 85px;
    --header-secondary-height: 100px;
    /* Transiciones */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Tipografía */
    --font-family-primary: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-secondary: 'Montserrat', sans-serif;
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.25rem; /* 20px */
    --font-size-2xl: 1.5rem; /* 24px */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    /* Border radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
}

/* ============================================
   Reset y estilos base
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--color-gray-900);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Loading...
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(30, 41, 59, 0.35);     
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease-in-out;
}

.loader-card {
    background: #FAFAFA;
    border-radius: 8px;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.4);
    animation: scaleUp .35s ease;
}


.loader-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid var(--color-primary-dark); /* indigo */
    border-top-color: #d7ba7c;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}


.loader-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.loader-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   Header Principal - CORREGIDO
   ============================================ */
.header-main {
    background-color: var(--color-primary-dark) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    width: 100%;
    font-size: 1.2rem;
    color: #fff;    
}

    .header-main .navbar {
        padding: 0.5rem 0;
        min-height: 70px;
        width: 100%;
    }

    .header-main .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-direction: row !important; /* Forzar dirección horizontal */
        width: 100%;
    }

    /* Contenedor del logo - en línea horizontal */
    .header-main .navbar-brand {
        display: inline-flex !important;
        align-items: center;
        margin: 0;
        padding: 0;
        flex-shrink: 0; /* Evita que se encoja */
    }

.header-main__logo {
    max-height: 50px;
    top: 0px;
    height: 50px;
    margin: 1px auto 0 auto;
    width: 150px;
    background-repeat: no-repeat;
    background-size: 95%
}

/* Menú derecho - Desktop - EN LÍNEA HORIZONTAL */
.header-main .d-none.d-lg-flex {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important; /* Horizontal */
    gap: 2rem;
    margin-left: auto;
    white-space: nowrap;
}

/* Links de navegación - en línea */
.nav-link-custom {
    display: inline-block !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: white !important;
    padding: 0.5rem 0;
    background: transparent !important;
    border: none !important;
    white-space: nowrap;
    line-height: normal;
}

/* Toggle button para móvil */
.navbar-toggler {
    display: none; /* Oculto por defecto, se muestra en móvil */
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    background: transparent !important;
}

/* Menú móvil */
#navbarMain {
    background: transparent !important;
}

    #navbarMain .navbar-nav {
        background: #0A4B3C;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        border-radius: 8px;
    }

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block !important; /* Mostrar botón hamburguesa en móvil */
    }

    .header-main .d-none.d-lg-flex {
        display: none !important; /* Ocultar menú desktop en móvil */
    }

    .header-main .container-fluid {
        padding: 0 1rem;
    }

    .header-main__logo {
        max-height: 35px;
    }

    #navbarMain .nav-link {
        color: white !important;
        padding: 0.75rem 1rem !important;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important; /* Ocultar botón hamburguesa en desktop */
    }

    #navbarMain {
        display: none !important; /* Ocultar menú móvil en desktop */
    }
}

/* Eliminar cualquier estilo que pueda estar causando el apilamiento */
.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.w-100 {
    width: 100%;
}

/* Forzar que todo esté en una línea en desktop */
@media (min-width: 992px) {
    .header-main .navbar .container-fluid {
        flex-wrap: nowrap !important;
    }

    .header-main .navbar-brand {
        flex: 0 0 auto;
    }

    .header-main .d-flex.align-items-center {
        flex: 1 1 auto;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-direction: row !important;
    }
}

/* Asegurar centrado en pantallas grandes */
@media (min-width: 1400px) {
    .header-main .container-fluid {
        padding: 0 4rem; 
    }
}

/* Para pantallas muy grandes */
@media (min-width: 1800px) {
    .header-main .container-fluid {
        max-width: 1600px; /* Ajusta según necesites */
        padding: 0;
    }
}

/* ============================================
   Header Principal
   ============================================ */

.header-main-system {
    background: linear-gradient(90deg, var(--bg-header) 0%, #005c3e 100%);
    box-shadow: var(--shadow-md);
    z-index: 1030;
}

    .header-main-system .navbar {
        padding: 0.75rem 0;
        min-height: 50px;
    }

.header-main__logo-system {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-link-custom-system {
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: opacity var(--transition-fast);
}

    .nav-link-custom-system:hover {
        opacity: 0.8;
    }


/* ============================================
   Header Principal
   ============================================ */
/* Segunda línea del header */
.header-main__secondary {
    background: var(--color-primary-dark);
    padding: 0.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-header-dropdown {
    background: transparent;
    font-size: 0.813rem;
    padding: 0.15rem 0.4rem;
    transition: background-color var(--transition-fast);
    border-radius: var(--border-radius-md);
}

    .btn-header-dropdown:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .btn-header-dropdown:focus {
        box-shadow: none;
    }

/* Botón toggle sidebar en header */
.btn-toggle-sidebar {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    padding: 0.15rem 0.3rem;
    transition: background-color var(--transition-fast);
    border-radius: var(--border-radius-md);
    line-height: 1;
}

    .btn-toggle-sidebar:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .btn-toggle-sidebar:focus {
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

.header-main .navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
}

    .header-main .navbar-toggler:focus {
        box-shadow: none;
    }

.header-main .navbar-collapse {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
}

    .header-main .navbar-collapse .nav-link {
        color: var(--color-white);
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .header-main .navbar-collapse .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .header-main .navbar-collapse .nav-link:last-child {
            border-bottom: none;
        }

.header-main .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-xs);
    min-width: 200px;
}

.header-main .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    transition: background-color var(--transition-fast);
}

    .header-main .dropdown-item:hover {
        background-color: var(--color-gray-100);
    }

    .header-main .dropdown-item i {
        width: 20px;
    }






/* ============================================
   Header Secundario
   ============================================ */
.header-secondary {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
    z-index: 1020;
    top: var(--header-height);
    padding: 1rem 0;
}

.header-secondary__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

.header-secondary__subtitle {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.25rem;
    line-height: 1.2;
}

/* Botón nuevo AIR */
.btn-new-air {
    background-color: var(--color-primary);
    border: none;
    font-weight: var(--font-weight-semibold);
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all var(--transition-fast);
}

    .btn-new-air:hover {
        background-color: var(--color-primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* ============================================
   Layout Principal
   ============================================ */
.main-layout {
    position: relative;
    display: flex;
    min-height: 100vh;
    padding-top: 0;
}


/* ============================================
   Sidebar
   ============================================ */
.sidebar {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    min-height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, var(--bg-sidebar-gradient-start) 44.231%, var(--bg-sidebar-gradient-end) 100%);
    box-shadow: var(--shadow-sidebar);
    border-bottom-right-radius: var(--border-radius-2xl);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

    .sidebar.show {
        transform: translateX(0);
    }

/* Header del sidebar */
.sidebar__header {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.sidebar__subtitle {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    opacity: 0.95;
    margin: 0;
}

/* Menú del sidebar */
.sidebar__menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md) 0;
}

.sidebar__menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    transition: background-color var(--transition-fast);
    position: relative;
    border-left: 4px solid transparent;
}

    .sidebar__menu-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--color-white);
    }

.sidebar__menu-item--active {
    background-color: rgba(255, 255, 255, 0.2);
    border-left-color: var(--color-white);
}

    .sidebar__menu-item--active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 56px;
        background-color: var(--color-white);
        opacity: 0.8;
        border-top-right-radius: var(--border-radius-xl);
        border-bottom-right-radius: var(--border-radius-xl);
    }

.sidebar__menu-icon {
    font-size: 1.5rem;
    width: 24px;
    flex-shrink: 0;
}

.sidebar__menu-text {
    flex: 1;
    line-height: 1.3;
}

/* Scrollbar personalizado para sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

    .sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

/* Overlay del sidebar (móvil) */
.sidebar-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

    .sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* ============================================
   Contenido Principal
   ============================================ */
.main-content {
    flex: 1;
    top: var(--header-height);
    padding: var(--spacing-lg);
    width: 100%;
    margin-top: calc(var(--header-height));
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Sección de búsqueda
   ============================================ */
.search-section {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

    .search-section .input-group-text {
        border-right: none;
    }

    .search-section .form-control {
        border-left: none;
    }

        .search-section .form-control:focus {
            border-color: var(--color-gray-300);
            box-shadow: none;
        }

            .search-section .form-control:focus + .input-group-text {
                border-color: var(--color-gray-300);
            }

/* ============================================
   Estado Vacío
   ============================================ */
.empty-state {
    padding: 4rem 2rem;
}

.empty-state__icon {
    animation: fadeIn 0.6s ease;
}

.empty-state__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-800);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state__text {
    font-size: var(--font-size-base);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   Tabla de datos
   ============================================ */
.table-section {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.data-table {
    margin-bottom: 0;
}

    .data-table thead {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

        .data-table thead th {
            font-weight: var(--font-weight-semibold);
            font-size: var(--font-size-sm);
            padding: var(--spacing-md);
            border: none;
            white-space: nowrap;
            vertical-align: middle;
        }

            .data-table thead th.sortable {
                cursor: pointer;
                user-select: none;
                transition: background-color var(--transition-fast);
            }

                .data-table thead th.sortable:hover {
                    background-color: var(--color-primary-light);
                }

    .data-table tbody tr {
        transition: background-color var(--transition-fast);
    }

        .data-table tbody tr:hover {
            background-color: var(--color-gray-100);
        }

    .data-table tbody td {
        padding: var(--spacing-md);
        vertical-align: middle;
        font-size: var(--font-size-sm);
        color: var(--color-gray-700);
    }

/* Botón de opciones en tabla */
.btn-options {
    background: none;
    border: none;
    color: var(--color-gray-600);
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-md);
}

    .btn-options:hover {
        background-color: var(--color-gray-200);
        color: var(--color-primary);
    }

/* ============================================
   Badges de estado
   ============================================ */
.badge-status {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    min-width: 100px;
}

.badge-status--published {
    background-color: #fef3cd;
    color: #997404;
    border: 1px solid #ffeeba;
}

.badge-status--draft {
    background-color: #e7f3ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.badge-status--review {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.badge-status--rejected {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.badge-status--approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}




/* ==========================================
   PAGINACIÓN
========================================== */
.pagination {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: Arial, sans-serif;
    padding: 15px 0;
    justify-content: center;
}

    .pagination .page-link {
        color: var(--color-primary-dark) !important;
        border: none !important;
        background: transparent !important;
        font-size: 15px;
        text-decoration: none;
    }

    /* --- Página activa --- */
    .pagination .page-item.active .page-link {
        background: var(--color-primary-dark) !important;
        color: var(--white) !important;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- Deshabilitado --- */
    .pagination .page-item.disabled .page-link {
        opacity: 0.4 !important;
        pointer-events: none;
    }

    /* ---- ANTERIOR ---- */
    .pagination .page-item[area-label="Previous"] .page-link span[area-hidden="true"]::before {
        content: "Anterior";
        font-weight: 600;
        text-decoration: underline;
        font-size: 15px;
    }

    .pagination .page-item[area-label="Previous"] .page-link span[area-hidden="true"] {
        font-size: 0 !important; /* oculta flecha ‹ */
    }


    /* ---- SIGUIENTE ---- */
    .pagination .page-item[area-label="Next"] .page-link span[area-hidden="true"]::before {
        content: "Siguiente";
        font-weight: 600;
        text-decoration: underline;
        font-size: 15px;
    }

    .pagination .page-item[area-label="Next"] .page-link span[area-hidden="true"] {
        font-size: 0 !important; /* oculta flecha › */
    }

    .pagination .page-link::after {
        content: '' !important;
    }




/* ============================================
   Paginación
   ============================================ */
/*.pagination {
    margin-bottom: 0;
}

    .pagination .page-link {
        color: var(--color-primary);
        border: 1px solid var(--color-gray-300);
        padding: var(--spacing-sm) var(--spacing-md);
        transition: all var(--transition-fast);
    }

        .pagination .page-link:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }

    .pagination .page-item.active .page-link {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .pagination .page-item.disabled .page-link {
        color: var(--color-gray-400);
        pointer-events: none;
        background-color: var(--color-gray-100);
    }*/

/* ==========================================
   FOOTER GOBMX
========================================== */

.footer-gobmx {
    background-color: #0A4B3C;
    color: white;
    padding: 3rem 2rem;
    font-family: Arial, sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 2000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 100fr 100fr 100fr;
    gap: 10rem;  
    
}

/* Columnas */
.footer-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Logo */
.logo-gobmx {
    width: 160px;
    height: auto;
}

/* Títulos */



.footer-col h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.8rem 0;
    color: white;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1.2rem 0 0.8rem 0;
    color: white;
}

    .footer-col h4:first-of-type {
        margin-top: 0;
    }

/* Texto */
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    color: white;
    opacity: 0.9;
}

/* Listas */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

/* Links */
.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.9;
}

    .footer-col a:hover {
        text-decoration: underline;
        opacity: 1;
    }

/* Enlace Leer más */
.footer-col p a {
    text-decoration: underline;
    font-weight: normal;
}

/* Denuncia */
.denuncia {
    
    color: white;
    
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-weight:bold;
}

/* Redes sociales */
.redes {
    display: flex;
    gap: 0.8rem;
    margin: 0.5rem 0 1.5rem 0;
}

.icon-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .icon-red:hover {
        transform: translateY(-2px);
        background-color: #f0f0f0;
    }

    .icon-red svg {
        width: 16px;
        height: 16px;
        fill: #0A4B3C;
    }

/* ============================================
   Contacto 079 - Logo arriba, texto a la derecha
   ============================================ */
.contacto {
    display: flex;
    align-items: center;
    gap: 1rem;    
    max-width: 300px;
}

    /* Contenedor del logo y 079 */
    .contacto .logo-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

        .contacto .logo-group img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .contacto .logo-group strong {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

    /* Texto a la derecha */
    .contacto p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        color: white;
        opacity: 0.9;
        flex: 1;
    }


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .logo-gobmx {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .footer-gobmx {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
        align-items: center;
    }

        .footer-col ul {
            width: 100%;
            text-align: center;
        }

    .redes {
        justify-content: center;
    }

    .contacto {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-gobmx {
        padding: 1.5rem 1rem;
    }

    .logo-gobmx {
        width: 150px;
    }

    .contacto strong {
        font-size: 1.8rem;
    }
}
/*EMD FOOTER*/

/* ============================================
   Footer
   ============================================ */
/*.footer {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0;
    margin-top: auto;
}

.footer__logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer__title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.footer__text {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    opacity: 0.9;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer__list li {
        margin-bottom: var(--spacing-sm);
    }

.footer__link {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-sm);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

    .footer__link:hover {
        opacity: 1;
        color: var(--color-white);
        text-decoration: underline;
    }

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

    .footer__social-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: var(--color-white);
        transform: translateY(-2px);
    }

.footer__contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-md);
}

    .footer__contact strong {
        font-size: var(--font-size-2xl);
        display: block;
    }*/

/* ============================================
   Responsive - Breakpoints
   ============================================ */

/* Desktop Large (≥1200px) - Sidebar siempre visible */
@media (min-width: 1200px) {
    .sidebar {
        transform: translateX(0);
        position: absolute;
    }

    .main-content {
        margin-left: var(--sidebar-width);
    }

    .btn-toggle-sidebar {
        display: none;
    }

    .sidebar-overlay {
        display: none;
    }
}

/* Desktop (≥992px y <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar {
        transform: translateX(0);
        position: absolute;
    }

    .main-content {
        margin-left: var(--sidebar-width);
    }

    .btn-toggle-sidebar {
        display: none;
    }
}

/* Tablet (≥768px y <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --sidebar-width: 280px;
        --header-secondary-height: 90px;
    }

    .sidebar {
        position: fixed;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        min-height: auto;
    }

    .header-main__secondary {
        padding: 0.22rem 0;
    }

    .btn-toggle-sidebar {
        font-size: 1.35rem;
        padding: 0.12rem 0.28rem;
    }

    .header-secondary__title {
        font-size: var(--font-size-lg);
    }

    .main-content {
        padding: var(--spacing-md);
    }

    .table-section,
    .search-section {
        padding: var(--spacing-md);
    }

    .data-table thead th,
    .data-table tbody td {
        padding: var(--spacing-sm);
        font-size: var(--font-size-xs);
    }
}

/* Mobile Large (≥576px y <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    :root {
        --sidebar-width: 280px;
        --header-height: 88px;
        --header-secondary-height: 90px;
    }

    .sidebar {
        position: fixed;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        min-height: auto;
    }

    .header-main__logo {
        max-height: 35px;
    }

    .header-main .navbar {
        padding: 0.6rem 0;
    }

    .header-main__secondary {
        padding: 0.22rem 0;
    }

    .btn-header-dropdown {
        font-size: 0.813rem;
        padding: 0.15rem 0.35rem;
    }

        .btn-header-dropdown span {
            font-size: 0.813rem;
        }

    .btn-toggle-sidebar {
        font-size: 1.35rem;
        padding: 0.12rem 0.28rem;
    }
}



.header-secondary__title {
    font-size: var(--font-size-base);
}

.main-content {
    padding: var(--spacing-sm);
}

.search-section,
.table-section {
    padding: var(--spacing-sm);
}

.table-responsive {
    border-radius: var(--border-radius-md);
}

.data-table {
    font-size: var(--font-size-xs);
}

.footer {
    padding: var(--spacing-xl) 0;
}


/* Mobile (< 576px) */
@media (max-width: 575.98px) {
    :root {
        --sidebar-width: 85vw;
        --header-height: 90px;
        --header-secondary-height: 80px;
        --spacing-lg: 0.75rem;
    }

    .sidebar {
        position: fixed;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        min-height: auto;
    }

    .header-main .navbar {
        min-height: auto;
        padding: 0.5rem 0;
    }

    .header-main__secondary {
        padding: 0.2rem 0;
    }

    .btn-header-dropdown {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
    }

        .btn-header-dropdown span {
            display: none;
        }

        .btn-header-dropdown i.bi-chevron-down {
            display: none;
        }

    .btn-toggle-sidebar {
        font-size: 1.25rem;
        padding: 0.1rem 0.25rem;
    }

    .header-main {
        padding: 0 var(--spacing-sm);
    }

    .header-main__logo {
        max-height: 30px;
    }

    .header-main .nav-link {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .header-secondary {
        padding: var(--spacing-sm) 0;
    }
    .header-secondary {
        padding: var(--spacing-md) 0;
    }
    .header-secondary__title {
        font-size: var(--font-size-sm);
    }

    .header-secondary__subtitle {
        font-size: var(--font-size-xs);
    }

    .btn-new-air {
        font-size: var(--font-size-xs);
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .main-content {
        padding: var(--spacing-xs);
    }

    .search-section,
    .table-section {
        padding: var(--spacing-sm);
        border-radius: var(--border-radius-md);
    }

    .sidebar__header {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .sidebar__title {
        font-size: var(--font-size-lg);
    }

    .sidebar__subtitle {
        font-size: var(--font-size-sm);
    }

    .sidebar__menu-item {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }

    /* Tabla responsiva en móvil */
    .data-table thead {
        display: none;
    }

    .data-table tbody tr {
        display: block;
        margin-bottom: var(--spacing-md);
        border: 1px solid var(--color-gray-300);
        border-radius: var(--border-radius-md);
        padding: var(--spacing-sm);
    }

    .data-table tbody td {
        display: block;
        text-align: right;
        padding: var(--spacing-xs) 0;
        border: none;
        position: relative;
        padding-left: 50%;
    }

        .data-table tbody td::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            width: 45%;
            padding-left: var(--spacing-sm);
            font-weight: var(--font-weight-semibold);
            text-align: left;
        }

    .pagination .page-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: var(--font-size-xs);
    }

    .footer {
        padding: var(--spacing-lg) 0;
    }

    .footer__logo {
        max-width: 140px;
    }

    .footer__title {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   Utilidades adicionales
   ============================================ */

/* Animaciones */
@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideIn 0.3s ease;
}

/* Estados de carga */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

    .loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 0.6s linear infinite;
    }


/* Focus visible para accesibilidad */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Ocultar elementos visualmente pero mantenerlos accesibles */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Print styles */
@media print {
    .header-main,
    .header-secondary,
    .sidebar,
    .sidebar-overlay,
    .btn-toggle-sidebar,
    .footer,
    .pagination {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .data-table {
        font-size: 10pt;
    }
}

/* css de wisard */
.wizard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header - Botón Regresar */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e5b4f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .back-button:hover {
        opacity: 0.8;
    }

.back-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .back-arrow svg {
        width: 16px;
        height: 16px;
        stroke: #1e5b4f;
        stroke-width: 2;
    }

/* Título Principal */
.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e5b4f;
    margin-bottom: 16px;
    line-height: 1;
}

/* Contenedor del Stepper */
.stepper-container {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

/* Cada paso del wizard */
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Barra horizontal del paso */
.step-bar {
    height: 8px;
    border-radius: 100px;
    background-color: #dddddd;
    width: 100%;
}

.step-item.active .step-bar {
    background-color: #a57f2c;
}

/* Texto debajo de la barra */
.step-label {
    font-size: 14px;
    font-weight: 400;
    color: #767676;
    text-align: center;
    line-height: 19px;
}

.step-item.active .step-label {
    color: #161a1d;
}

/* Contenedor del contenido */
.content-card {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    height: auto !important;
    min-height: unset !important;
}

.content-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e5b4f;
    margin-bottom: 32px;
}

.question-label {
    font-size: 15px;
    color: #161a1d;
    margin-bottom: 16px;
    font-weight: 500;
}

.required-fields {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 24px;
    display: block;
}

.required-fields span {
    color: #dc2626;
}

.error-msg {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

.costo-error-msg {
    color: red;
    font-size: 13px;
    display: block;
    margin-top: 3px;
}

.required-star {
    color: #dc2626;
    margin-right: 2px;
}

/* Radio buttons */
.radio-option {
    display: flex;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 6px;
}

    .radio-option:hover {
        background-color: #f9fafb;
    }

    .radio-option input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        cursor: pointer;
        accent-color: #1e5b4f;
    }

    .radio-option label {
        font-size: 14px;
        color: #161a1d;
        cursor: pointer;
        margin: 0;
    }

/* Form controls */
.form-control, .form-select {
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #161a1d;
    font-family: 'Noto Sans', sans-serif;
}

    .form-control:focus, .form-select:focus {
        border-color: #a57f2c;
        box-shadow: 0 0 0 3px rgba(165, 127, 44, 0.1);
        outline: none;
    }

.form-label {
    font-size: 14px;
    color: #161a1d;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-wizard {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Noto Sans', sans-serif;
}

.btn-secondary {
    background-color: #dddddd;
    color: #161a1d;
}

    .btn-secondary:hover {
        background-color: #c9c9c9;
    }

.btn-primaryatdt {
    background-color: #1e5b4f;
    color: white;
}

    .btn-primaryatdt:hover {
        background-color: #164739;
        color: #fff;
    }

.btn-wizard:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hide steps by default */
.step-content {
    display: none;
}

    .step-content.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox style */
.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #1e5b4f;
}

.form-check-label {
    font-size: 14px;
    color: #161a1d;
    cursor: pointer;
}

/* Success message */
.success-container {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 64px;
    color: #1e5b4f;
    margin-bottom: 24px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e5b4f;
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: #767676;
}

.btn-bordegreen {
    background-color: #FFFFFF;
    color: #2F5D50; /* Verde del texto */
    border: 2px solid #2F5D50;
    border-radius: 14px;
    padding: 14px 32px;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn-bordegreen:hover {
        background-color: #2F5D50;
        color: #FFFFFF;
    }

    .btn-bordegreen:active {
        transform: scale(0.98);
    }

/*.sin-hover {
    color: #ffffff !important;
    
}*/

.sin-hover:hover {
    color: #ffffff !important;
        
}

.navigation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.navigation-header-firma {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.back-button-firma {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e5b4f;
    text-decoration: none;    
    font-weight: 600;    
    cursor: pointer;
    transition: opacity 0.2s;
}

.titulo-firma {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e5b4f;
    text-decoration: none;    
    font-weight: 600;    
    transition: opacity 0.2s;
}

.content-card-firma {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    height: auto !important;
    min-height: unset !important;
}



/* =====================================================
       ESTILOS PARA VISOR DOCUMENTO PDF
===================================================== */

.documento-anexo-section {
    margin: 2rem 0;
}

.documento-label {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.documento-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

    .documento-card:hover {
        border-color: #002F2A;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    }

.documento-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.documento-icon {
    font-size: 1.5rem;
    color: #EF4444;
}

.documento-nombre {
    font-size: 0.95rem;
    color: #1F2937;
    font-weight: 500;
}

.documento-ver-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #002F2A;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: underline;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

    .documento-ver-btn:hover {
        background: rgba(16, 185, 129, 0.1);
        color: #002F2A;
        text-decoration: none;
    }

    .documento-ver-btn i {
        font-size: 1rem;
    }

.ocultar {
    display: none;
}


.swal2-title {
    font-weight: 500 !important;
    font-size: 1.3rem !important;
    margin: 2rem 0 0 0 !important;
    color: #1e5b4f !important;
}



/*ESTILOS FORMULARIO AGENDA REGULATORIA*/

.btn-grn {
    background-color: #083B34 !important;
    border-color: #01302A !important;
    color: #ffffff;
}

.btn-dr {
    background-color: #A4802C !important;
    border-color: #A4802C !important;
    color: #ffffff;
}


.icon-doc-eye-sm {
    position: relative;
    display: inline-block;
    font-size: 18px; /* tamaño del documento */
    line-height: 1;
}

    .icon-doc-eye-sm .eye-sm {
        position: absolute;
        bottom: -1px;
        right: -2px;
        font-size: 11px; /* tamaño del ojo */
        background: #fff;
        border-radius: 50%;
        padding: 1px;
    }


.two-btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.two-btn-secondary {
    background-color: #ffffff;
    color: #164739;
    border: 2px solid #164739;
}

    .two-btn-secondary:hover {
        background-color: #164739;
        color: #ffffff;
    }




/* Base para todos los estados */
.air-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

/* Colores según estado */
.air-status-pendiente {
    background-color: #FFF3CD; /* amarillo suave */
    color: #856404;
}

.air-status-requerimiento {
    background-color: #FFE5B4; /* naranja suave */
    color: #8A4B00;
}

.air-status-proceso {
    background-color: #E7F1FF; /* azul claro para en proceso */
    color: #0C63E4;
}

.air-status-publicado {
    background-color: #D1E7DD; /* verde */
    color: #0F5132;
}

.air-status-eliminado {
    background-color: #F8D7DA; /* rojo */
    color: #842029;
}

.air-status-sin {
    background-color: #E2E3E5; /* gris para sin dictaminación */
    color: #41464B;
}

/* Estilos del modal */
#modalActualizarDOF .modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#modalActualizarDOF .close {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.5;
}

    #modalActualizarDOF .close:hover {
        opacity: 0.8;
    }

/* Estilos del switch */
.switch-dof {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch-dof input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider-dof {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider-dof:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider-dof {
    background-color: #2c5f5d;
}

input:focus + .slider-dof {
    box-shadow: 0 0 1px #2c5f5d;
}

input:checked + .slider-dof:before {
    transform: translateX(26px);
}

.slider-dof.round {
    border-radius: 34px;
}

    .slider-dof.round:before {
        border-radius: 50%;
    }

/* Botón actualizar */
.btn-actualizar-dof {
    background-color: #0d4d4a;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 40px;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .btn-actualizar-dof:hover {
        background-color: #0a3a38;
        color: white;
    }

.air-status-reiterado {
    background-color: #D1F2EB; /* turquesa suave */
    color: #148F77;
}

