


/* Estilos Globales */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4; /* Color de fondo ligero para contrastar el contenedor */
            color: #333;
        }

        /* Contenedor principal de ancho fijo para centrar el contenido */
        .site-container {
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-height: 100vh;
        }

        /* --- Barra de Navegación Superior (Azul oscuro) --- */
        .navbar {
            background-color: #1A2658; /* Azul oscuro */
            color: white;
            padding: 10px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 15px solid #CDD1D4;
            flex-wrap: wrap;
        }

        /* Área central del Logo y Título */
        .logo-title-container {
            padding-left: 20px;
            display: flex;
            align-items: center;
            gap: 15px; /* Espacio entre logo y texto */
        }

        /* Marcador de posición del logotipo circular */
        .logo-placeholder {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #ccc;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #ccc;
            text-align: center;
        }

        /* Texto del Título */
        .title-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .main-title {
            font-size: 18px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .subtitle {
            font-size: 14px;
            font-weight: normal;
        }

        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

      
        .home-button{
            font-size: 20px;
            color: #FFFFFF;
        }

        .search-placeholder {
            border: 1px solid #777;
            background-color: #2a3a4d;
            padding: 5px 10px;
            color: #ccc;
            font-size: 12px;
            width: 150px;
            text-align: right;
            position: relative;
        }
        
        .search-placeholder::after {
            content: "Bus"; 
            color: #ccc;
            position: absolute;
            left: 5px;
        }

        .container-column {
            display: flex;
            justify-content: center;
            padding: 20px;
          }

          .paragraph-text-colum {
            display: grid;
            grid-template-columns: repeat(2, auto);
            gap: 10px 40px; 
            text-align: center;
            font-family: sans-serif;
            max-width: 600px;
          }

          .colum-item {
            padding: 5px;
            list-style: none;
            font-weight: bold;
          }

          .logo-container-center{
            display: flex;
            justify-content: center;
            padding: 20px;
          }
          .text{
            justify-content: center;
          }
       
        .main-content {
                max-width: 1300px;    
                margin: 0 auto;      
                padding: 20px;      
            }

        .page-title {
            text-align: center;
            font-size: 28px;
            color: #333;
            margin-top: 0;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .section-header {
            font-size: 19px;
            font-weight: bold;
            color: #333;
            margin-bottom: 25px;
        }

       
        .sub-header {
            font-size: 17px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        
        .paragraph-text {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.4;
        }

       
        .link-list {
            list-style: none;
            padding: 0;
            margin: 0 0 50px 0;
            width: 100%;
            display: block;
        }

        .link-list li {
            border-top: 1px solid #eee; 
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        .link-list li:first-child {
            border-top: none;
        }

        .link-list a {
            font-size: 14px; 
            color: #337ab7; 
            text-decoration: none; 
            font-weight: normal;
        }

        .link-list a:hover {
            text-decoration: underline; 
        }

        .register-button-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .register-button {
            background-color: #5cb85c;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            width: 100%; 
            max-width: 200px;
            text-align: center;
        }

        .register-button:hover {
            background-color: #4cae4c; 
        }

        /* Contenedor principal */
        .document-grid {
            display: grid;
            /* Crea 3 columnas de igual tamaño */
            grid-template-columns: repeat(3, 1fr); 
            /* Espacio entre las tarjetas */
            gap: 20px; 
            padding: 20px 0;
        }

        /* Estilo para cada tarjeta/item */
        .grid-item {
            display: flex;
            flex-direction: column;
            align-items: center; /* Centra el icono y el texto */
            text-align: center;
            padding: 15px;
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            transition: transform 0.2s ease;
        }

        /* Efecto visual al pasar el ratón */
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        /* Estilo para los iconos */
        .grid-item img {
            width: 40px;
            height: auto;
            margin-bottom: 10px;
        }

        /* Estilo para el texto */
        .grid-item p {
            font-size: 14px;
            margin: 0;
            color: #337ab7; /* Color azul similar a los enlaces anteriores */
            font-weight: 500;
        }


        .social-grid {
            display: grid;
            /* 1fr (25%) y 3fr (75%) = 4 partes iguales */
            grid-template-columns: 1fr 3fr; 
            gap: 30px;
            margin-top: 20px;
            align-items: start;
        }

        /* Columna de la Lista (25%) */
        .grid-doc {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #001f3f; /* Detalle elegante en azul */
        }

        @media (max-width: 850px) {
            .social-grid {
                /* En pantallas pequeñas, ambos ocupan el 100% (se apilan) */
                grid-template-columns: 1fr;
            }
            
            .grid-doc {
                order: 2; /* Opcional: mueve la lista debajo del contenido en móvil */
            }
            
            .grid-content {
                order: 1;
            }
        }

        /* --- Adaptación para Móviles --- */
        @media (max-width: 768px) {
            .document-grid {
                /* En tablets o móviles cambia a 1 sola columna */
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        
        @media (min-width: 768px) {
            .navbar {
                padding: 10px 30px;
            }
            .logo-placeholder {
                width: 70px;
                height: 70px;
            }
            .main-title { font-size: 18px; }
            .subtitle { font-size: 14px; }
            .search-placeholder { width: 150px; }
            .main-content { padding: 40px 60px; }
            .page-title { font-size: 32px; }
            .register-button { width: auto; }
        }

        
        @media (max-width: 480px) {
            .navbar {
                justify-content: center;
                gap: 15px;
            }
            .nav-right {
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
            .logo-title-container {
                text-align: center;
            }
            .logo-enc-container {
                text-align: center;
            }
        }

         


