*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial;
  background:#050505;
  color:#fff;
}

/* FUNDO */
.bg-glow{
  position:fixed;
  width:400px;
  height:400px;
  background:red;
  filter:blur(120px);
  top:50px;
  left:-100px;
  opacity:.2;
}

/* TOPO */
.top-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 40px;
}

.top-bar h1{
  font-size:30px;
}

.top-bar span{
  color:#ff0000;
}

.top-actions{
  display:flex;
  gap:10px;
}

/* BOTÕES */
.btn{
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.3s;
}

.btn.back{
  background:#111;
  border:1px solid #333;
}

.btn.orcamento{
  background:linear-gradient(135deg,#ff0000,#800000);
}

.btn img{
  width:20px;
  height:20px;
}

.btn:hover{
  transform:scale(1.05);
}

/* HERO */
.hero{
  text-align:center;
  margin-top:30px;
}

.hero h2{
  font-size:40px;
}

.hero span{
  color:#ff0000;
}

.hero p{
  color:#aaa;
  margin-top:10px;
}

/* GRID */
.grid-designers{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:40px;
}

/* CARD */
.designer-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
}

.designer-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:.4s;
}

/* OVERLAY */
.overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:15px;
  background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
}

.overlay h3{
  font-size:18px;
}

.overlay p{
  font-size:13px;
  color:#ccc;
}

/* HOVER */
.designer-card:hover img{
  transform:scale(1.1);
}

.designer-card:hover{
  box-shadow:0 0 25px rgba(255,0,0,.4);
}

/* RESPONSIVO */
@media(max-width:1000px){
  .grid-designers{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .grid-designers{
    grid-template-columns:1fr;
  }
}

/* FOOTER RED NETWORK */
.footer-red {
  margin-top: 60px;
  padding: 40px 20px 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 0 -10px 40px rgba(255, 0, 0, 0.1);
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-left h2 {
  font-size: 28px;
}

.footer-left span {
  color: #ff0000;
}

.footer-left p {
  margin-top: 10px;
  color: #aaa;
  line-height: 1.6;
}

/* LINKS */
.footer-center h3,
.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-center ul {
  list-style: none;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center a,
.footer-right a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
  color: #ff0000;
}

/* CONTATO */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVO */
@media(max-width:900px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right{
    align-items: center;
  }
}