/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: linear-gradient(to bottom right, var(--gray-50), #e0f2fe);
  color: var(--gray-700);
  line-height: 1.6;
}

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #0891b2;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green: #16a34a;
  --yellow: #eab308;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(to bottom right, var(--gray-50), #e0f2fe);
  color: var(--gray-700);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-icon {
  background: var(--blue);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--blue);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-900);
}

.hamburger,
.close {
  display: block;
}

.close {
  display: none;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 5rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Sections comuns */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-header h2 span {
  color: var(--blue);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Serviços */
.services {
  background: var(--white);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: linear-gradient(to bottom right, var(--gray-50), #e0f2fe);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.stats-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: linear-gradient(to right, var(--blue), var(--cyan));
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.stat {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Sobre */
.about {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--gray-50), #e0f2fe);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.about-text h2 span {
  color: var(--blue);
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-item span {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.feature-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Depoimentos */
.testimonials {
  padding: 5rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(to bottom right, var(--gray-50), #e0f2fe);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stars {
  color: gold;
  margin-bottom: 1rem;
}

.client {
  margin-top: 1rem;
  font-weight: 600;
}

.client small {
  color: var(--gray-600);
  font-weight: 400;
}

/* Contato */
.contact {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--blue), var(--cyan));
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.contact h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact h2 span {
  color: var(--yellow);
}

.contact p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1.125rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  color: var(--gray-900);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-about p {
  margin: 1rem 0;
  color: #94a3b8;
}

.footer-links h3,
.footer-hours h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-links ul,
.footer-hours ul {
  list-style: none;
}

.footer-links li,
.footer-hours li {
  margin-bottom: 0.5rem;
  color: #94a3b8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  z-index: 99;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}


.contact-info {
  color: white;
  /* Opcional: se quiser centralizar ou ajustar espaçamento */
}

.contact-info .cta-link {
  color: white;
  text-decoration: none; /* Remove o sublinhado */
  font-weight: 600;
}

.contact-info .cta-link:hover {
  text-decoration: underline; /* Opcional: sublinhado ao passar o mouse para feedback visual */
  /* ou mantenha sem sublinhado: text-decoration: none; */
}


/* Responsividade */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .nav-mobile {
    display: none !important;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-banner {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* Estilos para redes sociais */
.social-media {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Cores oficiais */
.social-media a[href*="instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}
.social-media a[href*="wa.me"],
.social-media a[href*="whatsapp"] {
  background-color: #25D366;
  color: white;
}
.social-media a[href*="facebook"] {
  background-color: #1877F2;
  color: white;
}

.social-media a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Ícones SVG */
.social-media svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Logo PNG */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px; /* ou o tamanho desejado */
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;       /* borda branca (opcional) */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* sombra suave */
}