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

html {
  scroll-behavior: smooth;
}

body {
  background: #050507;
  color: #f5f1ff;
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 7, 0.8);
  z-index: 10;
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
}

.nav {
  display: flex;
  gap: 25px;
  font-size: 14px;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  padding: 160px 6% 80px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), #050507),
    radial-gradient(circle at 75% 30%, #1714ff, transparent 35%),
    radial-gradient(circle at 80% 70%, #7a2cff, transparent 35%),
    #050507;
}

.hero-texto {
  max-width: 950px;
}

.subtitulo {
  color: #a89bc9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(80px, 14vw, 190px);
  line-height: 0.9;
  margin-bottom: 25px;
}

h2 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.95;
  margin-bottom: 25px;
}

h3 {
  font-size: 38px;
  line-height: 1;
}

p {
  color: #ded3ff;
  font-size: 18px;
  line-height: 1.6;
}

.hero p {
  max-width: 650px;
}

.boton {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 24px;
  border-radius: 50px;
  background: #f5f1ff;
  color: #050507;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.seccion {
  padding: 110px 6%;
}

.portfolio-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proyecto {
  min-height: 300px;
  padding: 25px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(transparent, rgba(0, 0, 0, 0.8)),
    linear-gradient(135deg, #1714ff, #7a2cff, #111);
}

.proyecto.grande {
  grid-column: span 2;
  grid-row: span 2;
}

.proyecto.ancho {
  grid-column: span 2;
}

.proyecto span {
  color: #c5b8e8;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.servicios {
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.servicios article {
  padding: 35px 0;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.frase {
  padding: 130px 6%;
  text-align: center;
  background:
    radial-gradient(circle, #1714ff, transparent 35%),
    #100022;
}

.frase p {
  max-width: 650px;
  margin: auto;
}

.contacto {
  min-height: 70vh;
  padding: 120px 6%;
  text-align: center;
}

.contacto small {
  display: block;
  margin-top: 20px;
  color: #a89bc9;
}

.footer {
  padding: 30px 6%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
}

@media (max-width: 900px) {

  .header{
    flex-direction: column;
    gap: 15px;
  }

  .nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 12px;
  }

  .portfolio-grid{
    grid-template-columns: 1fr;
  }

  .proyecto.grande,
  .proyecto.ancho{
    grid-column: span 1;
    grid-row: span 1;
  }

  .servicios article{
    grid-template-columns: 1fr;
  }

  .footer{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.instagram-fijo{
    position: fixed;
    bottom: 40px;
    right: 25px;

    width: 55px;
    height: 55px;

    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 15px rgba(0,0,0,.35);
    z-index: 9999;
}

.instagram-fijo img{
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.portfolio-hero {
  min-height: 75vh;
}

.formulario-contacto{
  max-width:700px;
  margin:40px auto 0;
}

.campo{
  margin-bottom:20px;
}

.campo input,
.campo textarea{
  width:100%;
  padding:16px;
  border:1px solid rgba(255,255,255,.15);
  background:transparent;
  color:#fff;
  font-family:'Inter',sans-serif;
  border-radius:10px;
}

.campo textarea{
  resize:vertical;
}

.contacto-texto{
  max-width:600px;
  margin:0 auto 30px;
  opacity:.8;
}
.mensaje-envio{
  margin-top:18px;
  color:#a89bc9;
  font-size:14px;
  min-height:20px;
}
.header .logo img{
    height: 60px;
    width: auto;
    display: block;
}

.footer img{
    height: 40px;
    width: auto;
}
@media (max-width: 900px){

  .instagram-fijo{
      width: 45px;
      height: 45px;
      right: 10px;
      bottom: 10px;
  }

  .instagram-fijo img{
      width: 28px;
      height: 28px;
  }

}
.proyecto-marca{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/La\ sustancia.png");
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}.proyecto a{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}
.proyecto-corewell{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/sitioweb2.png");

  background-size:70%;
  background-position: center;
  background-repeat: no-repeat;
}
.proyecto-videoclip{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/videoclip.png");

  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
}
.proyecto-campaña{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/campaña.png");

  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.proyecto-fotografia{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/bebidas.png");
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.proyecto-redes{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/redes.png");
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.proyecto-contenido{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/contenido.png");
background-size: 90%;
  background-position: center top;
  background-repeat: no-repeat;
}
.proyecto-grupouno{
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.8)),
    url("imagenes/grupouno.png");
background-size: 90%;
  background-position: center top;
  background-repeat: no-repeat;
}