@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400&display=swap');

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  color:#222;
  background:#fff;
}

/* GRID LÍNEAS (CLAVE VISUAL) */
.background-lines{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:0;
  background:
    repeating-linear-gradient(
      to right,
      transparent,
      transparent 200px,
      rgba(0, 0, 0, 0.150) 201px
    );
}

/* SIDEBAR */
.sidebar{
  position:fixed;
  right:0;
  top:0;
  width:80px;
  height:100%;
  background:#0064C8;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  padding:30px 0;
  z-index:10;
}

.sidebar .top,
.sidebar .bottom{
  color: white;
  font-size: 24px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sidebar a{
  color:white;
  text-decoration:none;
  font-size:16px;
}

/* HEADER */
header{
  position:relative;
  z-index:2;
  padding:40px 100px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:11px;
  letter-spacing:2px;
  line-height:1.5;
}

nav{
  display:flex;
  gap:50px;
}

nav a{
  text-decoration:none;
  color:#aaa;
  font-size:14px;
}

nav a.active{
  color:#0064C8;
}

/* CONTENEDOR PRINCIPAL */
.container{
  position:relative;
  z-index:2;
  padding:120px 100px;
}

/* HERO */
.hero{
  max-width:800px;
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:72px;
  line-height:1.2;
  font-weight:400;
}

.hero span{
  color:#0064C8;
}

.hero p{
  margin-top:20px;
  color:#777;
}

.hero a{
  display:inline-block;
  margin-top:30px;
  color:#0064C8;
  text-decoration:none;
}

/* GRID GENERAL */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:100px;
}

/* TITULOS */
h1,h2{
  font-family:'Playfair Display', serif;
  font-weight:400;
}

h1{font-size:60px;}
h2{font-size:48px;}

p{
  color:#777;
  line-height:1.8;
}

/* SERVICIOS */
.services-left h3{
  margin:30px 0;
  font-weight:400;
}

/* PIE */
.footer{
  position:relative;
  z-index:2;
  padding:40px 100px;
  font-size:12px;
  color:#aaa;
}

/* TEAM */
.team{
  display:flex;
  gap:40px;
  margin-top:40px;
}

.team img{
  width:100%;
}

/* CONTACTO */
.contact-info{
  margin-bottom:40px;
}

form input,
form textarea{
  width:100%;
  border:none;
  border-bottom:1px solid #ccc;
  padding:10px 5px;
  margin-bottom:20px;
  background:transparent;
}

form button{
  background:none;
  border:none;
  cursor:pointer;
}

/* MAPA */
.map iframe{
  width:100%;
  height:500px;
  border:0;
}

/* RESPONSIVE */
@media(max-width:900px){
  .grid{
    grid-template-columns:1fr;
  }

  header{
    flex-direction:column;
    gap:20px;
  }

  .container{
    padding:60px 30px;
  }

  .hero h1{
    font-size:40px;
  }
}