/* RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, thead, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

* {box-sizing:border-box;}


/*ESTILOS GENERALES
****************************************/

body {font-family: 'Lato', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;}
	
::-webkit-scrollbar {
	width: 10px;
	}
	
::-webkit-scrollbar-track { /*fondo-barra-scroll*/
	background-color: #E9E9E9;
	}

::-webkit-scrollbar-thumb { /*barra-scroll*/
	background-color: #0E6CB6;
	}
	
::-moz-selection {
	background-color:#E9E9E9;
	}
	
::selection {
	background-color:#E9E9E9;
	}
	
a {
	text-decoration:none;	
		
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	}


   /* Reset básico y cuerpo a pantalla completa */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow: hidden;
      font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    }

    /* Contenedor principal: ocupa toda la pantalla, relativo para posicionar el video */
    .hero {
      position: relative;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #0a0a0a; /* fallback por si el video no carga */
    }

    /* Video de fondo: objeto cover para llenar sin deformar */
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      pointer-events: none; /* Para que no interfiera con clics en el contenido */
    }

    /* Capa de filtro oscuro: semitransparente para dar contraste */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.55); /* Ajusta la opacidad para más o menos oscuridad */
      z-index: 2;
      /* También se puede aplicar un filtro de oscurecimiento adicional con backdrop-filter,
         pero es más ligero usar solo la capa rgba */
    }

    /* Contenido centrado: se apoya sobre el overlay */
    .content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: white;
      padding: 1.5rem 2rem;
      max-width: 90%;
      width: 700px; /* ancho máximo para legibilidad */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* Sombra sutil para mejorar legibilidad sobre video */
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(1px); /* pequeña ayuda visual, casi imperceptible */
      border-radius: 24px;
      background-color: rgba(0, 0, 0, 0.15); /* fondo muy ligero para resaltar el texto */
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Logotipo (imagen SVG o PNG) */
    .logo {
      width: 110px;
      height: 110px;
      margin-bottom: 0.5rem;
      filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5));
      transition: transform 0.3s ease;
    }
    .logo:hover {
      transform: scale(1.04);
    }

    /* Título principal */
    .title {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 0.2rem;
      text-transform: uppercase;      
    }

    /* Subtítulo */
    .subtitle {
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 1px;
      margin-bottom: 1.8rem;
      opacity: 0.9;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 0.7rem;
	  padding-top: 0.7rem;
      width: 80%;
    }

    /* Contenedor de datos de contacto: iconos + texto */
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.8rem 2.5rem;
      margin-top: 0.5rem;
      font-size: clamp(0.95rem, 2vw, 1.3rem);
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255, 255, 255, 0.07);
      padding: 0.5rem 1.2rem 0.5rem 1rem;
      border-radius: 40px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.2s ease;
    }
    .contact-item:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

    .contact-item svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .contact-item a {
      color: white;
      text-decoration: none;
      border-bottom: 1px dotted transparent;
      transition: border-color 0.2s;
    }
    .contact-item a:hover {
      border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
    }

    /* Separador responsivo para pantallas muy pequeñas */
    @media (max-width: 480px) {
      .content {
        padding: 1.2rem;
        width: 95%;
        background-color: rgba(0, 0, 0, 0.25);
      }
      .contact-info {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
      .contact-item {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.8rem;
      }
      .logo {
        width: 85px;
        height: 85px;
      }
      .subtitle {
        width: 100%;
      }
    }

    /* Ajuste para pantallas de escritorio grandes */
    @media (min-width: 1400px) {
      .content {
        padding: 2.5rem 3rem;
      }
      .logo {
        width: 140px;
        height: 140px;
      }
    }