/* style.css */

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

body{
  background:#050505;
  color:white;
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

.page{
  width:100%;
  max-width:1120px;
  margin:auto;
  padding:35px 24px;
}

/* HERO */

.hero{
  position:relative;
  height:680px;
  margin-bottom:35px;
  overflow:hidden;
  border-radius:24px;
}

.hero-img{
  position:absolute;
  top:0;
  right:0;
  width:78%;
  height:100%;

  object-fit:cover;
  object-position:center;

  filter:
    brightness(.72)
    contrast(1.1);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    #050505 0%,
    #050505 30%,
    rgba(5,5,5,.78) 50%,
    rgba(5,5,5,.25) 75%,
    rgba(5,5,5,0) 100%
  );

  z-index:1;
}

.hero-content{
  position:absolute;
  z-index:5;

  left:40px;
  top:50%;

  transform:translateY(-50%);

  width:70%;
}

.hero-content h2{
  font-size:54px;
  letter-spacing:24px;
  font-weight:300;
}

.hero-content h1{
  font-size:118px;
  line-height:.85;

  color:#ff1b1b;

  font-weight:900;
  font-style:italic;
  text-transform:uppercase;

  text-shadow:
    0 0 25px rgba(255,27,27,.25);
}

.slogan{
  margin-top:20px;

  font-size:22px;
  letter-spacing:6px;

  font-style:italic;
  font-weight:700;
}

.slogan span,
.desc span,
.card span,
.coupon strong,
.footer span{
  color:#ff1b1b;
}

.desc{
  margin-top:26px;

  font-size:18px;
  font-weight:700;

  color:#e5e5e5;
}

/* LINKS */

.links{
  margin-top:38px;
}

.links p{
  font-size:20px;
  letter-spacing:5px;
  font-weight:700;

  margin-bottom:18px;
}

.links a{
  display:inline-flex;
  align-items:center;
  gap:12px;

  padding:18px 30px;

  border:1px solid #2b2b2b;
  border-radius:14px;

  color:white;
  text-decoration:none;
  font-weight:700;

  transition:.25s ease;

  background:#0d0d0d;
}

.links a i{
  font-size:22px;
}

.links a:hover{
  background:#ff1b1b;
  border-color:#ff1b1b;

  box-shadow:
    0 0 25px rgba(255,27,27,.25);
}

/* CARDS */

.card{
  min-height:250px;

  border:1px solid #1b1b1b;
  border-radius:22px;

  padding:26px;
  margin-bottom:22px;

  display:grid;
  grid-template-columns:28% 42% 30%;
  align-items:center;

  gap:24px;

  background:linear-gradient(
    90deg,
    #0a0a0a,
    #121212
  );

  overflow:hidden;
  position:relative;

  transition:.25s ease;
}

.card::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top left,
      rgba(255,27,27,.08),
      transparent 28%
    );

  pointer-events:none;
}

.card:hover{
  border-color:rgba(255,27,27,.45);

  transform:translateY(-2px);

  box-shadow:
    0 12px 35px rgba(255,27,27,.12);
}

/* IMAGEM */

.card img{
  width:100%;
  height:210px;

  object-fit:cover;

  object-position:center 20%;

  border-radius:16px;

  background:#080808;

  filter:
    brightness(.84)
    contrast(1.08);

  transition:.25s ease;
}

.card:hover img{
  transform:scale(1.015);

  filter:
    brightness(.92)
    contrast(1.1);
}

/* TEXTOS */

.card h3{
  font-size:38px;

  font-style:italic;
  font-weight:900;

  margin:8px 0;

  color:#fff;
}

.card p{
  color:#d5d5d5;

  line-height:1.6;
  font-size:17px;
}

.card span{
  font-size:14px;
  letter-spacing:2px;
  font-weight:bold;
}

/* COUPON */

.coupon{
  border-left:1px solid #202020;
  padding-left:28px;
}

.coupon small{
  font-size:16px;
  letter-spacing:2px;
}

.coupon strong{
  display:block;

  font-size:36px;

  font-style:italic;

  margin:8px 0;

  text-shadow:
    0 0 18px rgba(255,27,27,.22);
}

.coupon h4{
  font-size:42px;
  line-height:1;

  color:#fff;
}

.coupon a{
  display:inline-block;

  margin-top:16px;

  padding:12px 24px;

  border:1px solid #ff1b1b;
  border-radius:10px;

  color:#ff1b1b;

  text-decoration:none;
  font-weight:bold;

  transition:.25s ease;
}

.coupon a:hover{
  background:#ff1b1b;
  color:white;

  box-shadow:
    0 0 25px rgba(255,27,27,.25);
}

/* FOOTER */

.footer{
  margin-top:60px;
  padding-bottom:40px;
}

.footer-line{
  width:100%;
  height:1px;

  background:linear-gradient(
    90deg,
    transparent,
    #ff1b1b,
    transparent
  );

  margin-bottom:35px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:30px;
}

.footer-left h3{
  font-size:28px;
  letter-spacing:4px;
  font-weight:300;
}

.footer-left span{
  color:#ff1b1b;
  font-weight:900;
  font-style:italic;
}

.footer-left p{
  margin-top:10px;

  color:#888;

  letter-spacing:3px;
  font-size:12px;
}

.footer-center a{
  display:flex;
  align-items:center;
  gap:10px;

  color:white;
  text-decoration:none;

  border:1px solid #2a2a2a;

  padding:14px 26px;

  border-radius:12px;

  transition:.25s ease;

  font-weight:700;

  background:#0d0d0d;
}

.footer-center a i{
  font-size:20px;
}

.footer-center a:hover{
  border-color:#ff1b1b;
  color:white;
  background:#ff1b1b;
}

.footer-right p{
  color:#666;

  font-size:13px;
  letter-spacing:2px;
}

/* MOBILE */

@media(max-width:768px){

  .page{
    padding:24px 16px;
  }

  .hero{
    height:auto;
    padding-top:360px;
  }

  .hero-img{
    width:100%;
    height:360px;
  }

  .hero-content{
    position:relative;

    width:100%;

    transform:none;
    top:auto;
    left:auto;

    padding:28px 0;
  }

  .hero::after{
    background:linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      #050505 70%
    );
  }

  .hero-content h2{
    font-size:34px;
    letter-spacing:12px;
  }

  .hero-content h1{
    font-size:68px;
  }

  .slogan{
    font-size:16px;
    letter-spacing:3px;
  }

  .card{
    grid-template-columns:1fr;
    text-align:center;
    padding:22px;
  }

  .card img{
    height:240px;
  }

  .coupon{
    border-left:0;
    border-top:1px solid #1d1d1d;

    padding-left:0;
    padding-top:22px;
  }

  .footer-content{
    flex-direction:column;
    text-align:center;
  }

}