/* =========================================================
   WEAVE LOGIC - Estilo Principal
   Autor: Gabriel Dantas
   ========================================================= */

/* ======== RESET E BASE ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #10273a;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======== VARIÁVEIS ======== */
:root {
  --verde: #a5e482;
  --coral: #ca4e84;
  --texto: #333333;
  --branco: #ffffff;
  --fundo-escuro: #10273a;
  --sombra: rgba(0, 0, 0, 0.1);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--branco);
  box-shadow: 0 2px 5px var(--sombra);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  z-index: 1000;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fundo-escuro);
  letter-spacing: 1px;
}

.logo-highlight {
  color: var(--coral);
}

.logo-highlight2 {
  color: var(--verde);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--texto);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--coral);
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ======== MENU HAMBÚRGUER ======== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--texto);
  border-radius: 5px;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  background: linear-gradient(135deg, var(--verde) 0%, var(--branco) 50%, var(--coral) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  max-width: 900px;
  color: var(--fundo-escuro);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: var(--verde);
  color: var(--fundo-escuro);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(202, 78, 132, 0.2);
}

.btn-cta:hover {
  background-color: var(--coral);
  color: var(--branco);
  box-shadow: 0 0 15px rgba(202, 78, 132, 0.4);
}

/* =========================================================
   SEÇÃO: SERVIÇOS
   ========================================================= */
.services {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.services h2 {
  font-size: 2rem;
  color: var(--fundo-escuro);
  margin-bottom: 1rem;
}

.services h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--coral);
  margin: 10px auto 20px;
  border-radius: 3px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--branco);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px var(--sombra);
  border-top: 3px solid var(--coral);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px var(--sombra);
}

.card img {
  width: 60px;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--fundo-escuro);
}

/* =========================================================
   SEÇÃO: SOBRE NÓS
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem;
  background-color: var(--branco);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--sombra);
}

.about-text h2 {
  font-size: 2rem;
  color: var(--fundo-escuro);
  margin-bottom: 1rem;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--coral);
  margin: 10px 0 20px;
  border-radius: 3px;
}

/* =========================================================
   SEÇÃO: CONTATO
   ========================================================= */
.contact {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: var(--fundo-escuro);
  margin-bottom: 1rem;
}

.contact h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--coral);
  margin: 10px auto 20px;
  border-radius: 3px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  height: 120px;
}

.btn-enviar {
  display: block;
  width: 100%;
  background-color: var(--verde);
  color: var(--fundo-escuro);
  padding: 0.9rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(202, 78, 132, 0.2);
}

.btn-enviar:hover {
  background-color: var(--coral);
  color: var(--branco);
  box-shadow: 0 0 15px rgba(202, 78, 132, 0.4);
}

.form-message {
  text-align: center;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background-color: var(--fundo-escuro);
  color: var(--branco);
  text-align: center;
  padding: 2rem 1rem;
}

.footer p {
  margin-bottom: 1rem;
}

.footer strong {
  color: var(--coral);
}

.footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer ul li {
  position: relative;
}

.footer ul li::before {
  content: '•';
  color: var(--coral);
  margin-right: 5px;
}

.footer ul a {
  text-decoration: none;
  color: var(--branco);
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--coral);
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--branco);
    flex-direction: column;
    width: 220px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--sombra);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
/* ======== LOGOS ======== */
.logo-img {
  height: 55px;
  width: auto;
  margin-right: 10px;
  border-radius: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

/* ======== HERO LOGOS ======== */
.hero-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-logo {
  width: 180px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 35px rgba(56, 189, 248, 0.5);
}

/* ======== Responsividade ======== */
@media (max-width: 768px) {
  .hero-logo {
    width: 130px;
  }

  .logo-img {
    height: 45px;
  }
}

