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

/* ============================= */
/* 🎨 BASE STYLES               */
/* ============================= */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: url('assets/bg-tech.jpg') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  background-color: #f9f9f9;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* ============================= */
/* 🔝 HEADER                    */
/* ============================= */
.site-header {
  background-color: #f4f6f8;
  transition: all 0.3s ease-in-out;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.5rem 0;
}

.site-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
}

/* Logo */
.logo-area .logo {
  height: 60px;
  object-fit: contain;
  margin-right: 2rem;
}

/* ============================= */
/* 📌 NAVIGATION                */
/* ============================= */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-nav a {
  font-size: 1.05rem;
  padding: 0.4rem 0;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover {
  color: #25D366;
}

/* ============================= */
/* ☎️ CONTACT TOPBAR           */
/* ============================= */
.top-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: #333;
  flex-wrap: wrap;
}

.top-contact span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-contact a {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
}

/* ============================= */
/* 💬 WHATSAPP ICON BUTTON     */
/* ============================= */
.whatsapp-icon {
  height: 90px;
  width: 90px;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* ============================= */
/* 🦸 HERO SECTION             */
/* ============================= */
.hero {
  background-color: #e6f0ff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  background-color: #007bff;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.cta:hover {
  background-color: #0056b3;
}

/* ============================= */
/* 💼 SERVICES                 */
/* ============================= */
section {
  padding: 4rem 0;
}

section.light {
  background-color: #fff;
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.service-card i {
  width: 48px;
  height: 48px;
  color: #007bff;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: #007bff;
}

/* Destaque para Virtualização */
.service-card.destaque {
  border-left: 4px solid #25D366;
}

.service-card.destaque i {
  color: #25D366;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 200px;
  padding: 1.8rem 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.services-list li i {
  color: #007bff;
  margin-bottom: 0.8rem;
  width: 48px;
  height: 48px;
}

.services-list li span {
  display: block;
  font-weight: 500;
  color: #222;
  margin-top: 0.5rem;
}

/* ============================= */
/* 📬 FORMS                    */
/* ============================= */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

form button {
  background-color: #007bff;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}

/* ============================= */
/* 🧱 FOOTER                   */
/* ============================= */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

