/* Importación de hojas de estilos*/
@import url(fonts.css);
@import url(header.css);
@import url(form.css);
@import url(contact.css);
@import url(footer.css);

/************ WEB ************/
:root {
    --primary-color: #384859;
    --secudary-color: #e8e8e8;
    --accent-color: green; 
    --background-color: whitesmoke;
    --border-color: #f1f1f1;
    --text-color: #212121;
    --header-background-color:#384859;
    --hover-color: #12f7ff;
	--altura-header: 60px;
	--ancho-maximo: 1200px;
	--padding-left-right: 2rem;
}
*{
	margin: 0; /* Eliminar márgenes por defecto */
	padding: 0;
	box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth; /* desplazamiento suave */
}
body {
    background-color: var(--background-color);
    color: var(--text-color);
	/* padding: 90px 0px 0; /* Espaciado por position: fixed; del header */
    
	font-family: system-ui, -apple sistem,BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;

}
h1{
    font-family: 'Architects Daughter', cursive;
    font-size: 1rem;
}
.full-width-header {
    width: 100vw; /* Ancho completo de la ventana */
    position: relative; /* Posicionamiento relativo para el flujo */
    left: 50%; /* Mover el contenedor al centro */
    right: 50%; /* Mover el contenedor al centro */
    margin-left: -50vw; /* Ajustar el margen para que empiece desde el borde */
    margin-right: -50vw; /* Ajustar el margen para que termine en el borde */
}

.titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background:none !important;
}

.linea {
    flex: 1;
    height: 0.2rem; /* Altura de la línea */
    background-color: var(--primary-color); /* Color de la línea */
    /* margin: 0 10px; /* Espacio entre la línea y el texto */
}


h2 {
    margin: 0; /* Eliminar márgenes del h2 */
    position: relative; /* Posicionamiento relativo para los pseudo-elementos */
    padding: 0 20px; /* Espacio para las líneas */
    text-align: center; /* Centrar el texto */
}

h3{
    z-index: 1;
}

h3::before {
  content: "";
  display: inline-block;
  position: relative;
  top: calc(-.1 * 1em);
  vertical-align: middle;
  height: calc(4px + .8em);
  margin-right: calc(5px + .2em);
  border-left: calc(2px + .16em) solid #e64577;
}

main{
    max-width: 1200px; /* Ancho máximo para pantallas grandes */
    min-width: 320px;  /* Ancho mínimo para pantallas pequeñas */
    margin: 0 auto;  /* Centra el elemento horizontalmente */
    padding: var(--padding-left-right);
}
p{
    padding: 1rem 0rem;
    text-align: justify;
}
.tel{
    padding-bottom: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    background-color:blue;
    color: var(--secudary-color);
}