/* ============================================================
   TRANSPALET — style.css
   Fonte: Poppins | Primário: #003d68 | Secundário: #2981c2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --primary:       #003d68;
  --primary-dark:  #002a4a;
  --secondary:     #2981c2;
  --secondary-light: #3a9ad4;
  --white:         #ffffff;
  --off-white:     #f6f6f6;
  --text-main:     #1a1a2e;
  --text-muted:    #5a6a7a;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 4px 16px rgba(0,61,104,.08);
  --shadow-md:     0 8px 32px rgba(0,61,104,.13);
  --shadow-lg:     0 16px 48px rgba(0,61,104,.18);
  --transition:    0.3s ease;
  --font:          'Poppins', sans-serif;
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* ── UTILIDADES GLOBAIS ─────────────────────────────────────── */
.rounded-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.section-title span {
  color: var(--secondary);
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ── BOTÕES ─────────────────────────────────────────────────── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(41,129,194,.35);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,129,194,.45);
}

.btn-hero-cta {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(41,129,194,.4);
  display: inline-block;
}

.btn-hero-cta:hover {
  background: var(--secondary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(41,129,194,.5);
}

.btn-cta-final {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 16px 44px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  display: inline-block;
}

.btn-cta-final:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  border: none;
  padding: 9px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ── BOTÃO ENVIAR DO FORM (PHP) ─────────────────────────────── */
/* Cobre tanto <button> quanto <input type="submit"> dentro do form box */
.hero-form-box button[type="submit"],
.hero-form-box input[type="submit"],
.hero-form-box .btn-enviar,
.hero-form-box button:not([class]),
.hero-form-box button {
  background: var(--secondary) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(41,129,194,.35);
  cursor: pointer;
  width: 100%;
}

.hero-form-box button[type="submit"]:hover,
.hero-form-box input[type="submit"]:hover,
.hero-form-box button:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,129,194,.45);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-transpalet {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,61,104,.08);
  padding: 12px 0;
  transition: box-shadow var(--transition), padding var(--transition);
  z-index: 1050;
}

.navbar-transpalet.scrolled {
  box-shadow: 0 4px 24px rgba(0,61,104,.12);
  padding: 8px 0;
}

.navbar-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-transpalet .nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--primary) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.navbar-transpalet .nav-link:hover {
  background: rgba(41,129,194,.08);
  color: var(--secondary) !important;
}

/* Hambúrguer custom */
.navbar-toggler {
  border: none;
  background: none;
  padding: 4px 6px;
}

.navbar-toggler:focus { box-shadow: none; }

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 991.98px) {
  #navbarMenu {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-top: 10px;
    padding: 16px;
  }

  #navbarMenu .nav-link {
    padding: 10px 16px;
    border-radius: 8px;
  }

  .btn-nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,29,51,.82) 0%,
    rgba(0,61,104,.70) 50%,
    rgba(0,29,51,.55) 100%
  );
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--white);
}

.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.hero-title span {
  color: #5eb8ff;
}

.hero-form-box {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

/* ── SECTION: PROBLEMA ──────────────────────────────────────── */
.section-problema {
  background: var(--white);
  padding: 96px 0;
}

.section-img-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── SECTION: PRODUTOS ──────────────────────────────────────── */
.section-produtos {
  background: var(--off-white);
  padding: 96px 0;
}

.section-header { padding-bottom: 8px; }

.produto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.produto-nome {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

/* ALTERAÇÃO 2: wrapper da imagem totalmente branco e maior */
.produto-img-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);       /* era var(--off-white), agora branco */
  min-height: 220px;              /* era 180px, agora maior */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,61,104,.06);
}

.produto-img {
  width: 100%;
  height: 220px;                  /* era 180px, agora maior */
  object-fit: contain;
  padding: 16px;                  /* era 12px, um pouco mais de respiro */
}

.produto-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.produto-spec {
  font-size: .82rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.produto-spec i { font-size: 1rem; }

/* ── SECTION: ACESSÓRIOS ────────────────────────────────────── */
.section-acessorios {
  background: var(--white);
  padding: 96px 0;
}

.acessorios-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.acessorio-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.acessorio-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.acessorio-titulo {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.acessorio-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── MINI CTA INTERNO ───────────────────────────────────────── */
.section-mini-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 64px 0;
}

.mini-cta-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

.mini-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-top: 10px;
}

.section-mini-cta .btn-primary-custom {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.section-mini-cta .btn-primary-custom:hover {
  background: var(--off-white);
  color: var(--primary);
}

/* ── SECTION: POR QUE TRANSPALET ───────────────────────────── */
.section-porque {
  background: var(--off-white);
  padding: 96px 0;
}

.porque-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.porque-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* ALTERAÇÃO 3: remove o círculo/fundo, deixa só a imagem */
.porque-img-wrapper {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;        /* era var(--off-white) com borda circular */
  border-radius: 0;
  overflow: visible;
  padding: 0;
  flex-shrink: 0;
}

.porque-icone {
  width: 72px;                    /* um pouco maior já que não tem mais moldura */
  height: 72px;
  object-fit: contain;
}

.porque-titulo {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin: 0;
}

.porque-titulo small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: .8rem;
  margin-top: 4px;
}

/* ── SECTION: DEPOIMENTOS ───────────────────────────────────── */
.section-depoimentos {
  background: var(--white);
  padding: 96px 0;
}

.depoimento-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 4px solid var(--secondary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento-aspas {
  font-size: 4rem;
  line-height: 1;
  color: var(--secondary);
  font-family: Georgia, serif;
  opacity: .35;
  position: absolute;
  top: 14px;
  left: 20px;
}

.depoimento-texto {
  font-size: .9rem;
  color: var(--text-main);
  line-height: 1.7;
  padding-top: 24px;
  flex: 1;
  margin: 0;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.depoimento-avatar {
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1;
}

.depoimento-autor span {
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── SECTION: SOBRE ─────────────────────────────────────────── */
.section-sobre {
  background: var(--off-white);
  padding: 96px 0;
}

/* ── CTA FINAL ──────────────────────────────────────────────── */
.section-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,29,51,.88) 0%,
    rgba(0,61,104,.75) 100%
  );
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-transpalet {
  background: var(--primary);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-link { display: inline-flex; }

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-social-link:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── RESPONSIVIDADE ─────────────────────────────────────────── */

/* Tablets */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title { font-size: 1.7rem; }

  .hero-form-box { padding: 28px 20px; }

  .section-problema,
  .section-produtos,
  .section-acessorios,
  .section-porque,
  .section-depoimentos,
  .section-sobre { padding: 72px 0; }

  .section-cta { padding: 80px 0; }

  .section-img-placeholder { min-height: 260px; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .navbar-logo { height: 36px; }

  .hero-section { padding: 90px 0 60px; }

  .hero-title { font-size: 1.5rem; }

  .btn-hero-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: .9rem;
  }

  .hero-form-box { padding: 24px 16px; }

  .section-problema,
  .section-produtos,
  .section-acessorios,
  .section-porque,
  .section-depoimentos,
  .section-sobre { padding: 60px 0; }

  .section-title { font-size: 1.3rem; }

  .produto-card { padding: 22px 18px; }

  .produto-img-wrapper { min-height: 180px; }

  .produto-img { height: 180px; }

  .section-cta { padding: 72px 0; }

  .cta-title { font-size: 1.5rem; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .section-mini-cta { padding: 50px 0; }

  .mini-cta-text { font-size: 1.1rem; }

  .btn-primary-custom {
    width: 100%;
    text-align: center;
    padding: 13px 24px;
  }

  .depoimento-card { padding: 28px 20px; }

  .section-img-placeholder { min-height: 220px; }
}

/* Telas muito pequenas */
@media (max-width: 420px) {
  .hero-title { font-size: 1.35rem; }

  .navbar-logo { height: 30px; }

  .porque-card { padding: 24px 16px; }
}

.float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  transition: 0.5s;
}

.float:hover {
  transform: scale(1.1);
}

.float img {
  max-width: 110%;
}