/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* GLOBAL */
h1, h2, h3 {
  text-transform: uppercase;
  font-weight: 900;
}
button {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  
}
button:hover { background: #b50710; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* HERO */
.hero {
  text-align: center;
  padding: 3rem 1rem;
}
.hero .logo {
  width: 120px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 40px;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 24px;
  margin-bottom: 2rem;
  color: #555;
}
.hero .btn-group {
  justify-content: center;
}

/* ABOUT */
.about {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.about h2 { margin-bottom: 1rem; 
 font-size: 36px; }


/* PRODUCTS */
.products {
  padding: 3rem 1.5rem;
}
.products h2 { margin-bottom: 0.5rem; }
.products p { margin-bottom: 2rem; color: #444; }
.products .grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.product {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}
.product img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.product h3 { font-size: 1rem; }

/* SOLUTIONS */
.solutions {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.solutions div {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.solutions h2 {
  margin-bottom: 1rem;
  font-size: 28px;
}
.solutions p {
  margin-bottom: 1.5rem;
  color: #444;
}

/* SERVICES */
.services {
  padding: 5rem 2rem;
  text-align: center;
  background: #f4f4f4;
}
.services h2 {
  font-size: 32px;
  margin-bottom: 0.8rem;
}
.services p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 3rem;
  color: #555;
}
.services .grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.card h3 {
  margin-bottom: 0.5rem;
}
.cta {
  margin-top: 2.5rem;
}
.cta h3 {
  margin-bottom: 1rem;
  font-size: 24px;
}

.cta p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* HERO FINAL */
.hero-final {
  background: #64060a;
  color: #fff;
  padding: 5rem 2rem;
  display: grid;
  gap: 3rem;
  max-width: 1300px;
  margin: auto;
  border-radius: 20px 20px 0 0;
}
.hero-final h2 {
  margin-bottom: 1rem;
  font-size: 38px;
  line-height: 1.2;
}
.hero-final p {
  margin-bottom: 2rem;
  font-size: 20px;
  color: #f1f1f1;
}
.hero-final .btn-group {
  gap: 1.5rem;
}
.hero-final .location {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* DESKTOP AJUSTES */
@media (min-width: 768px) {
  .solutions {
    grid-template-columns: 1fr 1fr;
  }
  .services .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-final {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}
