/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --primary-dark: #004c99;
  --secondary-color: #00c853;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: relative;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;     /* controle principal */
  width: auto;      /* mantém proporção */
  display: block;   /* evita espaços estranhos */
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.btn-whatsapp-nav {
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}

.btn-whatsapp-nav:hover {
  background: #00a844;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: 0.3s;
}

/* Hero */
.hero {
  color: var(--text-dark);
  padding: 6rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 1rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #077BDC;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background: #00a844;
  transform: translateY(-3px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}


.hero-content {
  flex: 1;
}



.img-hero {
  flex: 1;
  justify-content: center;
}

.img-hero img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
/* Produtos */
.produtos {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.produto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.produto-card {
  background: white;
  padding: 2rem;
  border-radius: 35px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  justify-content: center;
  text-align: center;
}

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

.produto-card .btn-secondary {
  margin-top: 3rem;
}

.produto-icon {
  margin-bottom: 1.5rem;
  text-align: center;
}

.produto-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.produto-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.produto-features {
  list-style: none;

}

.produto-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  gap: 0.5rem;
}

.produto-features li:before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
}

.img-hero-mobile {
  display: none;
}

/* Tamanhos */
.tamanhos {
  padding: 5rem 0;
  background: var(--bg-white);
}

.table-responsive {
  overflow-x: auto;
  margin-top: 2rem;
}

.tamanhos-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

.tamanhos-table thead {
  background: var(--primary-color);
  color: white;
}

.tamanhos-table th,
.tamanhos-table td {
  padding: 1rem;
  text-align: left;
}

.tamanhos-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}

.tamanhos-table tbody tr:hover {
  background: var(--bg-light);
}

.btn-table {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn-table:hover {
  background: var(--primary-dark);
}

/* Confiança */
.confianca {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.confianca-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.confianca-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.confianca-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.confianca-card p {
  color: var(--text-light);
}

/* CTA */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #00a844 100%);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-whatsapp {
  background: white;
  color: var(--secondary-color);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-phone {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contato */
.contato {
  padding: 5rem 0;
  background: var(--bg-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contato-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contato-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contato-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #00a844;
}

/* Responsivo */
@media (max-width: 768px) {

  /* ================= HEADER ================= */
  .menu-toggle {
    display: flex;
  }

  .logo-img {
    max-width: 150px;
    height: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  /* ================= HERO ================= */

  .hero {
    padding: 2rem 1rem;
  }

  .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "subtitle"
    "image"
    "buttons";
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
}
  .hero-content {
    display: contents;
    max-width: 100%;
  }

  .hero-title {
    grid-area: title;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    grid-area: subtitle;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: var(--text-light);
  }

  .img-hero {
    grid-area: image;
  }

  .img-hero img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }

  .hero-buttons {
    grid-area: buttons;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    justify-content: center;
  }

  /* TEXTO CONDICIONAL */
  .hero-text-desktop {
    display: none;
  }
  
  .ideal-para {
    display: none;
  }
  .hero-text-mobile {
    display: block;
  }

  /* ================= OUTRAS SEÇÕES ================= */

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

  .produto-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .tamanhos-table {
    font-size: 0.9rem;
    text-align: center;
  }

  .tamanhos-table th,
  .tamanhos-table td {
    padding: 0.7rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 0.5rem;
  }

  .hero-title {
    font-size: 1.4rem;
    margin: auto;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons .btn {
    font-size: 0.9rem;
  }

  .btn {
    padding: 1rem 1.5rem;
  }

  .section-title {
    font-size: 1.2rem
  }
   
  .produto-title {
    font-size: 1.2rem;
  }
  .produto-description {
   font-size: 0.9rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }

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

  .cta-text {
    font-size: 0.8rem;
  }

  .btn-whatsapp {
    font-size: 0.9rem;
  }
  .img-hero img {
    max-width: 290px;
  }

  .produtos,
  .tamanhos,
  .confianca,
  .cta,
  .contato {
    padding: 3rem 0;
  }

  .btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 100%;

    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: center;

    white-space: normal;   /* permite quebra controlada */
    word-break: break-word;

    border-radius: 999px;  /* mantém o pill bonito */
  }

  .tamanhos-table td:last-child {
    padding: 0.75rem;
  }
}



/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produto-card,
.confianca-card {
  animation: fadeIn 0.6s ease-out;
}
