@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ===== Reset básico de estilos ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
   font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 1em;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
}

/* Eliminar estilos predeterminados de listas */
ul, ol {
  list-style: none;
}

/* Quitar subrayado y color predeterminado a enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* Estilos básicos para imágenes */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Botones sin estilos del navegador */
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* Tablas sin espacios ni bordes predeterminados */
table {
  border-collapse: collapse;
  width: 100%;
}


header{position: relative;}
.box{background: rgba(0,0,0,0.8); padding: 30px; color: #fff; width: 450px; position: absolute; top: 150px; right:0px; border-radius: 40px 0 40px 40px;  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);}

article{max-width: 1000px; width: 100%; margin: 0 auto; position: relative;}
.cont01 section{max-width: 60%; padding-right:30px; float: left; position: relative;}
.col70{float: left; width: 60%;}
.col30{float: left; width: 40%;}
.back{background: #71c7e9; padding: 40px 20px; float: left; width: 100%;}
h1{font-size: 4em; line-height: 1em; color: #69badf;}
.box02{background: rgba(0,0,0,0.8); padding: 30px; color: #fff; border-radius: 40px 0 40px 40px; margin-top: 50px;}
.contact{max-width: 80%; float: left;}
.social{float: right;}
.social img{ width: 60px;}

/* =============================
   BREAKPOINTS (Media Queries)
   ============================= */

/* Teléfonos (hasta 600px) */
@media (max-width: 700px) {
  body {
    font-size: 14px;}
    h1{margin-top: 150px;}
    header{overflow-x: hidden; overflow-y: visible;}
    header img{width: 130%; max-width: 130%;}
    .box{right: 0;width:calc(100% - 40px); margin: 20px; top: 250px;}
    .cont01 section{max-width: 100%; padding:80px 0 0 0;}
    .box02{padding: 20px !important; margin: 0 0 20px 0; width: 100%; text-align: center;}
    article{padding: 0 20px;}
    .social img{width: 45px}

}

/* Tablets (601px a 900px) */
@media (min-width: 701px) and (max-width: 1000px) {
  body {
    font-size: 16px;  }
    article{padding:0 20px;}
}

/* Laptops (901px a 1200px) */
@media (min-width: 901px) and (max-width: 1200px) {
  body {
    font-size: 17px;
  }
}

/* Pantallas grandes (más de 1200px) */
@media (min-width: 1201px) {
  body {
    font-size: 18px;
  }
}



