/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}


.info {
    position: relative;
    background-color: rgba(255, 255, 255, 0.85); /* Ligero fondo para mejorar la lectura */
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    z-index: 1;
}

/* Fondo repetido y difuminado */
body::before {
    content: "";
    position: fixed; /* Se mantiene fijo en la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/img/logo-2.png') repeat;
    background-size: 250px; /* Tamaño del logo en la repetición */
    opacity: 0.1; /* Ajusta la opacidad */
    filter: blur(3px); /* Difuminado */
    z-index: -1;
}


.background-container {
    position: relative;
    padding: 40px;
}

.background-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px; /* Ajusta el tamaño */
    height: 800px;
    background: url('../assets/img/logo-2.png') no-repeat center;
    background-size: contain;
    opacity: 0.15; /* Ajusta la opacidad */
    filter: blur(6px); /* Ajusta el desenfoque */
    transform: translate(-50%, -50%);
    z-index: -1;
}


/* Encabezado */
header {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Contenedor del logo y nombre */
.logo-container {
    display: flex;
    flex-direction: column; /* Acomoda el nombre debajo del logo */
    align-items: center;
    margin-bottom: 15px;
}

/* Logo más pequeño */
.logo {
    width: 50px; /* Ajustado a un tamaño más pequeño */
    height: auto;
}

/* Nombre de la empresa más grande */
.company-name {
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
}

/* Secciones */
main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

section {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

/* Efecto hover en secciones */
section:hover {
    transform: translateY(-5px);
}

/* Titulos */
h1, h2 {
    font-weight: bold;
}

h1 {
    font-size: 26px;
}

h2 {
    color: #293d8c;
    font-size: 22px;
}

/* Lista de consejos */
.tips ul {
    list-style-type: square;
    padding-left: 25px;
}

.tips li {
    margin: 10px 0;
    font-size: 16px;
}

/* Pie de página */
footer {
    background: #293d8c;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 14px;
}

/* Estilo para la lista de definiciones */
.definition-list {
    list-style-type: disc; /* Puntos en la lista */
    padding-left: 20px;
}

.definition-list li {
    margin-bottom: 15px; /* Aumentamos el espacio entre ítems */
    font-size: 16px;
    color: #333;
    text-align: left; /* Alineado a la izquierda */
    line-height: 1.6; /* Mejora la separación entre líneas */
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.styled-table th, .styled-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.styled-table th {
    background-color: #293d8c;
    color: white;
    font-weight: bold;
}

.styled-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.styled-table tr:hover {
    background-color: #ddd;
}


footer {
    background: #312783;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 10px 0;
}

.social-links a {
    margin: 0 10px;
    font-size: 30px;
    color: white;
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #ffcc00;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}


.custom-list {
    list-style-type: disc; 
    padding-left: 20px;
}

.custom-list li {
    margin-bottom: 8px; /* Espaciado entre los elementos */
}
