:root {

  /* ===============================
     🎨 CORES BASE
  =============================== */
  --background: 0 0% 100%;
  /* Branco puro */
  --foreground: 222 47% 11%;
  /* Texto principal (#111827) */
  --muted-foreground: 220 9% 46%;
  /* Texto secundário (#6b7280) */
  --border: 220 13% 91%%;
  /* Bordas claras (#e5e7eb) */
  --card: 0 0% 100%;
  /* Fundo de cartões */
  --trust: 194 100% 50%;
  /* Aqua (ícones de confiança) */
  --shadow-color: 0 0% 0% / 0.15;
  /* Sombra leve */

  --gradient-bg: linear-gradient(to bottom right, #fff, #f0f4ff);

  /* ===============================
     🔵 CORES PRINCIPAIS
  =============================== */
  --primary: 221 83% 53%;
  /* Azul principal (hsl(var(--primary))) */
  --primary-dark: 226 72% 28%;
  /* Azul escuro (#1e40af) */
  --primary-light: 221 90% 63%;
  /* Azul claro (#3b82f6) */
  --primary-foreground: 0 0% 100%;
  /* Texto sobre azul (branco) */
  --zap-color: 130, 71%, 55%;
  /* verde zap */
  --zap-color-hover: 142, 71%, 45%;

  /* =========================
     FONTES
  ========================== */
  --font-primary: 'Inter', sans-serif;
  /* Textos e botões */
  --font-secondary: 'Playfair Display', serif;
  /* Títulos e destaques */

  /* =========================
     PESOS PADRÃO
  ========================== */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* =========================
     TAMANHOS DE FONTE (Responsivos)
     clamp(min, ideal, max) -> garante boa leitura em telas pequenas e grandes
  ========================== */
  --fs-h1: clamp(2rem, 4vw + 1rem, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  --fs-body: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  --fs-small: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  --fs-cta: clamp(1rem, 2vw + 0.5rem, 1.25rem);

  /* bordas */
  --radius: .75rem;

}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;

}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--clr-text);

}



h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

button,
.cta {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-cta);
  letter-spacing: 0.5px;
}


.header {
  background: hsl(var(--background));
  backdrop-filter: blur(4px);
  /* leve desfoque */
  border-bottom: 1px solid #e5e7eb;
  /* linha inferior */
  width: 100%;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}

/* bloco: classes globais que estão presentes em mais de um container */

/* Container (.hero-container, .about-container, .header-container) */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width:640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width:1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* card */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 20px hsl(var(--shadow-color));
  border: 1px solid hsl(var(--border));
}

/* grids (.hero-grid, .about-grid ) */
.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width:1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* fim do bloco classes globais */



/*cabeçalho  */
/* Flexbox para alinhamento do conteúdo */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.logo {
  font: bold 1.6rem sans-serif;
  color: hsl(var(--primary-dark));
}

/* Botão CTA */
.cta-button {
  background: hsl(var(--primary-dark));
  color: hsl(var(--background));
  font: 500 14px sans-serif;
  padding: .75rem 2rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
}

.cta-button:hover {
  background: #2E67B8
}

/* fim cabeçalho */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */


/* HERO */
/* Seção principal */
.hero {
  padding: 6rem 0 4rem;
  /* pt-24 pb-16 */
  background: var(--gradient-bg);
  /* gradiente */
}

@media(min-width:1024px) {
  .hero {
    padding: 8rem 0 6rem;
  }
}

/* Texto */
.hero-content {
  text-align: center
}

@media(min-width:1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-title {
  font: bold clamp(2rem, 5vw, 4rem)/1 sans-serif;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: hsl(var(--primary-dark));
}

.text-aqua {
  color: hsl(180, 65%, 55%);
}

.hero-subtitle {
  font: normal 20px sans-serif;
  line-height: 33px;
  color: rgb(99, 114, 136);
}

/* Botões */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: stretch;
  /* faz os itens ocuparem toda a largura do pai */
  margin-top: 5%;
  width: 100%;
  margin-left: auto;
  /* centraliza horizontalmente */
  margin-right: auto;
  /* centraliza horizontalmente */
  box-sizing: border-box;
}

.hero-buttons .btn {
  width: 100%;
}

@media(min-width:640px) {
  .hero-buttons {
    flex-direction: row;
    margin: 1.5rem 0;
    justify-content: center;
  }
}

@media(min-width:1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.btn {
  padding: .75rem 1rem;
  border-radius: .5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s;
  font-size: 18px;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 500;
}

.btn-primary {
  background: hsl(var(--primary-dark));
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af
}

.btn-outline {
  border: 1px solid hsl(var(--primary-dark));
  color: hsl(var(--primary-dark));
  background: transparent;
}

.btn-outline:hover {
  background: hsl(var(--primary-dark));
  color: #fff;
}

/* Indicadores de confiança */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  font-size: .875rem;
  color: #6b7280;
  justify-content: center;
}

@media(min-width:1024px) {
  .hero-trust {
    justify-content: flex-start
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dot {
  width: .5rem;
  height: .5rem;
  background: #06b6d4;
  border-radius: 50%;
}

/* Imagem */
.hero-image {
  position: relative
}

.image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 99, 235, .15), transparent);
}

.floating-card {
  padding: 1.5rem;
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
}

.card-title {
  font: bold 1.5rem sans-serif;
  color: hsl(var(--primary));
}

.card-text {
  font-size: .875rem;
  color: #6b7280;
}

/* fim da hero */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */



/* ABOUT */
.about {
  padding: 4rem 0;
  background: #fff
}

@media(min-width:1024px) {
  .about {
    padding: 6rem 0
  }
}

.about img {
  height: 600px;
}

.about-image {
  position: relative;
}

.about .image-overlay {
  background: linear-gradient(to top, rgba(37, 99, 235, .05), transparent)
}

.badge {
  position: absolute;
  padding: 1rem;
}

.badge.top-left {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
}

.badge.bottom-right {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem
}

.badge-title {
  font: bold 1.125rem sans-serif;
  color: hsl(var(--primary))
}

.badge-title.aqua {
  color: #06b6d4
}

.badge-text {
  font-size: .875rem;
  color: #6b7280
}

.about-title {
  font: bold 1.875rem/1.3 sans-serif;
  color: #111;
  margin-bottom: 1.5rem
}

@media(min-width:1024px) {
  .about-title {
    font-size: 2.25rem
  }
}

.about-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem
}

.list-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.dot {
  width: .5rem;
  height: .5rem;
  background: #06b6d4;
  border-radius: 50%;
  margin-top: .5rem;
  flex-shrink: 0;
}

.list-item h3 {
  font-weight: 600;
  color: #111;
  font-size: clamp(0.875rem, 1vw + 0.75rem, 1.25rem);
  line-height: 1.5rem;
  font-style: normal;
  font-family: ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}


.list-item p {
  color: #6b7280;
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1.125rem);
  line-height: 1.5;
  font-style: normal;
  font-family: ui-sans-serif, system-ui, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}


.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.stat {
  background: #d5e2f0;
  padding: 1rem;
  border-radius: .75rem;
  text-align: center
}

.stat-title {
  font: bold 1.5rem sans-serif;
  color: hsl(var(--primary))
}

.stat-text {
  font-size: .875rem;
  color: #6b7280
}

/* fim about */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */


/* SERVICES */
.services-section {
  padding: 4rem 1rem;
  background: #EBF2FA;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: bold;
}

.section-header .highlight {
  color: #0077cc;
}

.section-header p {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: bold;
  color: #0077cc;
}

.link-btn {
  background: none;
  border: none;
  color: #00bcd4;
  font-weight: 500;
  cursor: pointer;
}

.link-btn:hover {
  color: #0077cc;
}


.cta-box {
  text-align: center;
  margin: 4rem auto 0;
  padding: 2rem;
  box-sizing: border-box;
  width: clamp(200px, 70vw, 700px);
}

@media (max-width: 768px) {
  .cta-box {
    width: 100%;
  }

  .cta-box p { 
    text-align: left;
  }

}


.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-box .aqua {
  color: #00bcd4;
}

.cta-box p {
  color: #666;
  margin-bottom: 1.5rem; 
}

.cta-btn {
  background: hsl(var(--primary-dark));
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: #005fa3;
}

/* fim services */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */





/* testimonials */
.testimonials {
  padding: 5rem 1rem;
  background-color: hsl(var(--background));
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header>h2 {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-title {
  color: hsl(var(--primary-dark));
}

.testimonials-subtitle {
  font-size: 18px;
  line-height: 1.75rem;
  color: hsl(var(--muted-foreground));
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .testimonials-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* uma coluna para os cards, outra para a imagem */
    gap: 2rem;
    align-items: center;
    /* centraliza verticalmente o conteúdo de cada coluna */
  }

  .testimonials-image-container {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente a imagem */
    align-items: center;
    /* centraliza verticalmente a imagem */
    position: relative;
  }
}

.testimonial-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: #facc15;
  /* amarelo das estrelas */
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-info h4 {
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background-color: hsl(var(--aqua-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonials-image-container {
  position: relative;
}

.testimonials-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.testimonials-floating-card {
  position: absolute;
  padding: 1rem;
}

/* fim testimonials */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */





/* CTA final */
.cta {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, hsl(var(--primary-dark)), hsl(var(--primary)));
  text-align: center;
  color: hsl(var(--primary-foreground));
}

.cta-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-title span {
  color: hsl(var(--aqua));
}

.cta-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: hsl(var(--primary-foreground) / 0.9);
}

.cta-benefits {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .cta-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-benefit {
  background-color: hsl(var(--background) / 0.1);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--background) / 0.2);
}

.cta-benefit div:first-child {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.cta-benefit h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-benefit p {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.8);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-button-primary {
  background-color: hsl(var(--zap-color));
  color: white;
  padding: .75rem 1.75rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
  border: none;
  outline: none;
  font-weight: 600;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(34, 197, 94, 0.3);
  }
}

.cta-button-primary:hover {
  transform: scale(1.08);
  background-color: hsl(var(--zap-color-hover));
}

.cta-button-primary:focus,
.cta-button-primary:active {
  outline: none; 
  box-shadow: none; 
}


.cta-button-outline {
  background: none;
  border: 1px solid hsl(var(--background));
  color: hsl(var(--background));
  padding: .75rem 1.75rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.cta-button-outline:hover {
  background-color: hsl(var(--background));
  color: hsl(var(--primary));
}

.cta-contact {
  color: hsl(var(--primary-foreground) / 0.8);
  margin-bottom: 2rem;
}

.cta-contact p {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.cta-urgency {
  padding: 1rem;
  background-color: hsl(var(--background) / 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid hsl(var(--background) / 0.2);
  font-weight: 500;
}

/* fim CTA FINAL */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */