* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body {
  background: linear-gradient(180deg, #c2ebf8 20%, #9bcbd9 100%);
  color: #033331;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  position: relative;
}

main {
    max-width: 1200px;
    width: 94%;
    margin: 0 auto;
    padding: 40px 0;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.logo img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);

    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 30px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

    border: 1px solid rgba(255,255,255,0.4);
}

.card h3 {
    color: #0a6d77;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0a6d77;
  margin-bottom: 20px;
}

h2 {
  color: #013032c1;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 25px;
}

.parrafo p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;;
 
}
ul, ol {
    margin-left: 20px;
    margin-bottom: 25px;
}
li {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.datos-solicitud {
  margin-left: 0;
  list-style-type: none;
}

.capturas {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
} 
/* 1. Formato de tarjeta para el recuadro de la lista */
ul.principal {
  background: rgba(74, 192, 232, 0.5); /* Fondo blanco semitransparente que se funde con tu gradiente */
  border-left: 5px solid #1c7b6a; 
  border-radius: 4%;       /* Barra lateral con el color oscuro de tus textos */
  padding: 25px 20px 25px 35px;          /* Espaciado interno para que respire */
  border-radius: 0 10px 10px 0;          /* Bordes suavizados a la derecha */
  list-style-type: none;                 /* Volamos el puntito negro por defecto */
  margin: 20px 0 35px 0;
  box-shadow: 0 4px 15px rgba(3, 51, 49, 0.04); /* Sombra muy sutil */
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: black;
    text-shadow:
        -1px -1px 0 white,
         1px -1px 0 white,
        -1px  1px 0 white,
         1px  1px 0 white;
}

.footer div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 20px; 
    padding: 40px 20px;
}

.logo-ig-footer,
.logo-footer {
    width: 24px;
    height: 24px;
    display: block;
    transition: transform .2s;
}

.logo-ig-footer:hover,
.logo-footer:hover {
    transform: scale(1.1);
}



/* MARCA DE AGUA CENTRAL */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Lo centra matemáticamente en la pantalla */
  
 
  background-image: url('../Graficos/Logo.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Hace que se adapte sin deformarse */
  
  /* Control de tamaño y opacidad */
  width: 600px;         /* Va a ocupar el 40% del ancho de la pantalla */
  height: 600px;        /* Va a ocupar el 40% del alto de la pantalla */
  opacity: 0.15;       /* Súper sutil (4%) para que no compita con el texto. Ajustalo a gusto */
  
  z-index: -1;         /* Fundamental: lo manda al fondo de todo para que no tape los clics */
  pointer-events: none; /* Hace que sea invisible a los clics del usuario */
}
