/* RESET UNIVERSAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* CONFIGURACIÓN DEL CUERPO */
body {
    margin: 0;
    background-image: url('fondo.png'); 
    background-repeat: repeat; 
    background-attachment: fixed; 
    background-size: auto;
    background-color: #f4f7f6; 
    min-height: 100vh;
    display: block; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('fondo.png');
    backdrop-filter: blur(3px);
    background-position: center center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
} 

.form-container, 
.servicios-detallados {
    background: transparent !important;
    padding: 60px 10%;
}

/* VARIABLES */
:root {
    --azul-oscuro: #003366;
    --azul-brillante: #0052cc;
    --celeste: #00d4ff;
    --blanco: #ffffff;
    --gris-suave: #f4f7f6;
    --gradiente-movil: linear-gradient(270deg, #003366, #0052cc, #8342a1);
}

/* HEADER */
.site-header,
header {
    background: var(--azul-oscuro);
    color: white;
    padding: 1rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Menú móvil (checkbox): oculto en escritorio */
.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.nav-burger-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

header .logo {
    display: flex;
    align-items: center; 
    gap: 10px; 
}

.logo-img {
    height: 40px; 
    width: auto; 
    object-fit: contain;
}

.site-header .logo h2,
header .logo h2 {
    font-size: 1.2rem; 
    margin: 0;
    white-space: nowrap;  
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}

/* Solo la lista principal es flex; si usamos `nav ul`, el submenú hereda flex en fila y se rompe */
.main-nav > ul > li > a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.main-nav > ul > li > a:hover {
    color: var(--celeste);
}

/* NAVEGACIÓN RESPONSIVA */
.main-nav > ul,
nav > ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
}

.main-nav > ul > li,
nav > ul > li {
    margin: 0; 
    position: relative;
}

@media (max-width: 900px) {
    .site-header .logo h2,
    header .logo h2 {
        white-space: normal;
        font-size: clamp(0.85rem, 2.8vw, 1.1rem);
        line-height: 1.2;
    }
}

/* SUBMENU: bloque en columna (nunca hereda flex del menú principal) */
.submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    min-width: 220px;
    width: max-content;
    max-width: min(280px, calc(100vw - 24px));
    background: #fff;
    flex-direction: column;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1002;
}

.submenu li {
    display: block;
    width: 100%;
}

.submenu li a {
    color: #333;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    font-weight: 500;
}

.submenu li a:hover {
    background: #f0f4fa;
    color: var(--azul-oscuro);
}

/* Botón «Servicios» (mismo aspecto que enlaces del menú) */
.dropdown-trigger {
    background: none;
    border: none;
    color: #fff;
    font: inherit;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    transition: color 0.3s;
}

.dropdown-trigger:hover,
.dropdown-trigger[aria-expanded="true"] {
    color: var(--celeste);
}

@media (min-width: 769px) {
    .dropdown:hover .submenu,
    .dropdown:focus-within .submenu {
        display: flex;
    }
}

/* Escritorio / laptop: lista principal alineada a la derecha */
@media (min-width: 769px) {
    .main-nav > ul {
        justify-content: flex-end;
        flex-wrap: nowrap;
        align-items: center;
        gap: clamp(10px, 1.5vw, 22px);
    }

    .dropdown {
        z-index: 1001;
    }

    .dropdown .submenu {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

    .dropdown .submenu li:not(:last-child) {
        border-bottom: 1px solid #e8e8e8;
    }
}

/* Pantallas medianas: nombre de empresa puede partir línea sin romper el layout */
@media (min-width: 769px) and (max-width: 1200px) {
    .site-header .logo h2 {
        white-space: normal;
        font-size: clamp(0.8rem, 1.1vw + 0.55rem, 1.15rem);
        line-height: 1.2;
        max-width: min(100%, 20rem);
    }
}

/* Móvil: menú hamburguesa y submenú usable al tacto */
@media (max-width: 768px) {
    .site-header,
    header.site-header {
        flex-wrap: nowrap;
        align-items: center;
        padding: 0.75rem 4%;
        padding-left: max(4%, env(safe-area-inset-left));
        padding-right: max(4%, env(safe-area-inset-right));
    }

    .site-header .logo,
    header.site-header .logo {
        flex: 1;
        min-width: 0;
        margin-bottom: 0;
        justify-content: flex-start;
        text-align: left;
    }

    .nav-burger {
        display: flex;
    }

    .main-nav {
        flex: none;
        width: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .nav-toggle:checked ~ .main-nav {
        max-height: min(70vh, 420px);
        opacity: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 0 16px;
        width: 100%;
    }

    .main-nav > ul > li > a,
    .dropdown-trigger {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 12px;
        min-height: 44px;
        line-height: 1.3;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Panel cerrado: ocultar submenú por completo (evita que flote sobre el logo) */
    .nav-toggle:not(:checked) ~ .main-nav .submenu {
        display: none !important;
    }

    /* Solo el submenú en móvil: flujo normal, debajo de «Servicios», sin solapar cabecera */
    .nav-toggle:checked ~ .main-nav .dropdown {
        position: relative;
        z-index: 1;
    }

    .nav-toggle:checked ~ .main-nav .dropdown .submenu {
        display: flex !important;
        flex-direction: column !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        z-index: auto !important;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 0 0 8px 8px;
        overflow: hidden;
    }

    .submenu li a {
        color: #fff;
        padding: 12px 12px 12px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown-trigger {
        pointer-events: none;
        cursor: default;
        opacity: 0.95;
    }
}

/* HERO Y FONDO ANIMADO */
.hero {
    background: var(--gradiente-movil);
    background-size: 600% 600%;
    animation: gradientAnimation 10s ease infinite;
    padding: 60px clamp(14px, 4vw, 32px);
    text-align: center;
    color: white;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: min(100%, 56rem);
    margin-left: auto;
    margin-right: auto;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    font-size: clamp(1.15rem, 2.2vw + 0.85rem, 2.65rem);
    line-height: 1.18;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: min(100%, 42rem);
    padding: 0 clamp(6px, 2vw, 16px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: manual;
}

.hero > h2 {
    font-size: clamp(1rem, 1.2vw + 0.65rem, 1.65rem);
    line-height: 1.25;
    padding: 0 clamp(6px, 2vw, 16px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CARRUSEL DE LOGOS */
.carousel-container {
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.carousel-container::before { 
    left: 0; 
    background: linear-gradient(to right, #003366, transparent); 
}
.carousel-container::after { 
    right: 0; 
    background: linear-gradient(to left, #003366, transparent); 
}

.carousel-track {
    display: flex;
    width: max-content; 
    animation: scroll 35s linear infinite; 
}

.carousel-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 300px; 
    height: 180px;
    margin: 0 15px; 
    flex-shrink: 0; 
    background: rgba(255, 255, 255, 0.9); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide img {
    max-width: 80%; 
    max-height: 80%;  
    object-fit: contain; 
}

/* ANIMACIÓN ÚNICA */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* CONTENEDOR PRINCIPAL */
.hero-pills {
    display: flex;
    flex-wrap: nowrap; 
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 0 3%;
    margin-top: 30px;
}

.lateral-izquierdo {
    margin-right: auto; 
}

.lateral-derecho {
    margin-left: auto;  
}

.pill-item {
    display: inline-block;
    background-color: #002244;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.pill-item:hover {
    background-color: #ffffff;
    color: #002244;
    transform: translateY(-3px);
}

.cuadro-item {
    display: flex;
    flex-direction: column;
    background-color: #002244;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 135px;
    text-align: left;
    transition: 0.3s;
}

.cuadro-item span { font-size: 0.65rem; text-transform: uppercase; opacity: 0.8; }
.cuadro-item strong { font-size: 0.85rem; font-weight: bold; }

.cuadro-item:hover {
    background-color: #004488;
    transform: scale(1.05);
}

/* --- RESPONSIVO PARA CELULARES --- */
@media (max-width: 1024px) {
    .hero-pills {
        flex-wrap: wrap; /* En tablets permite que bajen */
        justify-content: center;
    }
    .lateral-izquierdo, .lateral-derecho {
        margin: 0; /* En pantallas chicas se centran normal */
    }
}

/* RECUADROS INFORMACIÓN */

.card h3 {
    font-size: 1.2rem; 
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.card p {
    font-size: 0.85rem; 
    line-height: 1.4; 
    color: #ffffff; 
}

/* Tamaño de los ICONOS (Emojis) */
.icon-placeholder {
    font-size: 2.5rem; 
    margin-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    padding: 30px 2%; 
    max-width: 100%; 
    margin: 0 auto; 
    background: transparent !important;
    width: 100%;
}

.card {
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.card h3 {
    font-family: 'Courier Prime', monospace;
    font-weight: 700; 
    font-size: 1.5rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #ffffff;
}

.card p {
    font-family: 'Courier Prime', monospace;
    font-size: 1.1rem;            
    line-height: 1.4;           
    color: #09003a;
    font-weight: 400;                   
    text-align: left;                    
    letter-spacing: 0.5px;              
    opacity: 0.9;               
    font-style: italic;
}

/* Iconos más chicos */
.icon-placeholder {
    font-size: 2rem;
    margin-bottom: 5px;
}

.card:hover { transform: translateY(-10px); }

.card-color-1 { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
.card-color-2 { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
.card-color-3 { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
.card-color-4 { background: linear-gradient(135deg, #2af598 0%, #009efd  100%); }

/* SECCIÓN QUIÉNES SOMOS */
.seccion-about {
    padding: 40px 2%;
    display: flex;
    justify-content: center;
}

.container-about {
    background: linear-gradient(135deg, #4b0082 0%, #6a5acd 100%); 
    color: white;
    padding: 50px;
    border-radius: 30px; 
    box-shadow: 0 15px 30px rgba(75, 0, 130, 0.3); 
    max-width: 1000px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.container-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.container-about h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #00d4ff; 
    margin: 10px auto 0;
    border-radius: 2px;
}

.container-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .container-about {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .container-about h2 {
        font-size: 1.8rem;
    }
}

/* --- SECCIÓN SERVICIOS DETALLADOS --- */
.servicios-detallados {
    padding: 80px 10%;
    text-align: center;
    background-color: #fff;
}

.titulo-animado h2 {
    font-size: 2.0rem;
    color: var(--celeste);
    margin-bottom: 10px;
}

.titulo-animado p {
    color: #20bffd;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.servicio-card {
    background: #fdfdfd;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    border: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,82,204,0.15);
    border-color: var(--celeste);
}

.servicio-header {
    margin-bottom: 20px;
}

/* Etiquetas de colores arriba de cada titulo */
.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #f7b9b9;
    color: #5e1515;
    margin-bottom: 10px;
}

.badge.servidor { background: #f7b9b9; color: #5e1515; }
.badge.plan { background: #cdf0cc; color: #318022; }

.servicio-card h3 {
    color: var(--azul-oscuro);
    font-size: 1.3rem;
    line-height: 1.2;
}

.lista-servicios {
    list-style: none;
    padding: 0;
}

.lista-servicios li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
}

.lista-servicios li:last-child {
    border-bottom: none;
}

.lista-servicios li strong {
    color: var(--azul-brillante);
}

/* Ajuste Celulares */
@media (max-width: 768px) {
    .servicios-detallados {
        padding: 50px 5%;
    }
}

/* FORMULARIO */
.form-container {
    padding: 60px 10%;
    background: #eef2f3;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.input-formulario {
    margin-bottom: 20px;
    text-align: left;
}

.input-formulario label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--azul-oscuro);
}

.input-formulario input, .input-formulario select, .input-formulario textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

.input-formulario input:focus { border-color: var(--azul-brillante); }

/* Estilo para el grupo de checkboxes */
.checkbox-group {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    max-height: 250px; 
    overflow-y: auto;  
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.checkbox-item:hover {
    background: #f0f4ff;
}

.checkbox-item input[type="checkbox"] {
    width: 18px; 
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 0.9rem;
    color: #444;
    font-weight: normal; 
    margin-bottom: 0;   
    cursor: pointer;
}

.checkbox-group::-webkit-scrollbar {
    width: 6px;
}
.checkbox-group::-webkit-scrollbar-thumb {
    background: var(--azul-brillante);
    border-radius: 10px;
}

.btn-submit {
    background: var(--azul-brillante);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    font-weight: bold;
    transition: 0.3s;
}

.btn-submit:hover { background: var(--azul-oscuro); }

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

footer .footer-content p {
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 0 4px;
}

/* ========== Celulares y pantallas estrechas ========== */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    /* Encabezado con menú hamburguesa: título alineado al inicio */
    .site-header .logo h2 {
        white-space: normal;
        font-size: clamp(0.72rem, 3.2vw, 0.95rem);
        line-height: 1.25;
        text-align: left;
    }

    .site-header .logo {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .hero {
        padding: 28px 14px 36px;
    }

    .hero h1 {
        font-size: clamp(1.05rem, 5.2vw, 1.65rem);
        line-height: 1.2;
        margin-bottom: 12px;
        padding: 0 6px;
        word-wrap: break-word;
    }

    .hero > h2 {
        font-size: clamp(1rem, 4.5vw, 1.35rem);
        line-height: 1.25;
        margin: 0.35em 0;
        padding: 0 8px;
    }

    .carousel-container {
        padding: 14px 0;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 36px;
    }

    .slide {
        width: 200px;
        height: 120px;
        margin: 0 10px;
    }

    .hero-pills {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }

    .pill-item {
        white-space: normal;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 14px;
        width: 100%;
        max-width: 320px;
    }

    .cuadro-item {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        padding: 20px 14px;
        gap: 12px;
    }

    .card p {
        font-size: 0.95rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .container-about:hover,
    .card:hover,
    .servicio-card:hover {
        transform: none;
    }

    .form-container,
    .servicios-detallados {
        padding: 36px 14px !important;
    }

    .form-card {
        padding: 22px 16px;
    }

    .titulo-animado h2 {
        font-size: clamp(1.15rem, 5vw, 1.65rem);
    }

    .titulo-animado p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .grid-servicios {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicio-card {
        padding: 20px 16px;
    }

    .servicio-card h3 {
        font-size: 1.15rem;
    }

    /* Evita zoom automático en Safari/iOS al enfocar campos */
    .input-formulario input,
    .input-formulario select,
    .input-formulario textarea {
        font-size: 16px;
    }

    .checkbox-group {
        max-height: min(50vh, 360px);
    }

    .hero {
        animation-duration: 14s;
    }

    .carousel-track {
        animation-duration: 48s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero {
        animation: none !important;
        background: linear-gradient(135deg, #003366, #0052cc, #8342a1);
    }

    .carousel-track {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .slide {
        width: 160px;
        height: 100px;
        margin: 0 8px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 24px;
    }

    .site-header,
    header.site-header {
        padding: 12px max(4%, env(safe-area-inset-right)) 12px max(4%, env(safe-area-inset-left));
    }
}
</think>
