@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ----------------------------------------
   Evita recuo horizontal em qualquer tela
---------------------------------------- */
html, body {
  overflow-x: hidden;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fdfdfd;
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 20px;
    font-weight: 600;
    color: #fdfdfd;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease-in-out;
    width: 300px;
}

.btn-default:hover {
    background-color: #FDE8C9;
    color: black;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: white;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease-in-out;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.whatsapp-fixo:hover {
    transform: scale(1.1);
}

.whatsapp-fixo img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-contato {
    background-color: black;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-contato:hover {
    opacity: 0.9;
    font-weight: 500;
    background-color: #DEECDD;
    color: #000;
}

/* === footer.css (dentro de styles.css) === */

/* Shape Full-Width */
.full-width-shape {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    background: #f2f2f2;
    padding: 40px 0;
    text-align: center;
}
.shape-text h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

/* Footer Geral */
footer {
    background: #fff;
    padding: 40px 20px 20px;
    font-size: 12px;
    color: #333;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 140px;
    padding: 0 10px;
}
.logo-col {
    flex: 2;
}
.footer-logo-icon {
    max-width: 80px;
    vertical-align: middle;
}
.footer-logo-text {
    max-width: 120px;
    vertical-align: middle;
    margin-left: 8px;
}
.footer-tagline {
    font-weight: 300;
    margin-top: 8px;
    line-height: 1.4;
}
.footer-col-title {
    font-weight: 600;
    margin-bottom: 8px;
}
.footer-link {
    display: block;
    color: #333;
    font-weight: 300;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #000;
}
.footer-bottom {
    text-align: center;
    margin-top: 24px;
    border-top: 1px solid #eee;
    padding-top: 12px;
    color: #777;
}

@media (max-width: 1024px) {
    .footer-inner {
      gap: 30px;
    }
    .footer-col {
      flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: center;
    }
    .footer-col {
      flex: none;
      width: 100%;
      max-width: 400px;
      text-align: center;
      margin-bottom: 24px;
    }
    .logo-col {
      order: -1;
      margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .shape-text h2 {
      font-size: 20px;
      padding: 0 16px;
    }
}

/* --------------------------------------------------
   Ajusta dinamicamente o top do header
-------------------------------------------------- */
:root {
  --promo-banner-height: 80px;
  --header-height: 68px;
}

header {
  top: calc(var(--promo-banner-height));
}

body {
  padding-top: calc(var(--promo-banner-height) + var(--header-height));
}

/* --------------------------------------------------
   Espaçamento entre o shape e as seções vizinhas
-------------------------------------------------- */
.shape {
  background: #f2f2f2;
  padding: 80px 8%;
  margin: 0;
  position: relative;
  z-index: 0;
}
.shape-content-final {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.shape-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.shape-description {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.benefits-shape {
  margin-top: 40px;
}

/* --------------------------------------------------
   Quebras para tablets e celulares
-------------------------------------------------- */
@media (max-width: 992px) {
  :root {
    --promo-banner-height: 72px;
    --header-height: 60px;
  }
  .shape-title {
    font-size: 1.75rem;
  }
  .shape-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  :root {
    --promo-banner-height: 64px;
    --header-height: 56px;
  }
  .promo-banner .promo-text { font-size: 16px; }
  .promo-banner .promo-subtext { font-size: 24px; }
  .shape-title {
    font-size: 1.5rem;
    padding: 0 16px;
  }
  .shape-description {
    font-size: 0.9rem;
    padding: 0 16px;
  }
}

.btn-comecar {
  background-color: black;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.btn-comecar:hover {
  
    opacity: 0.9;
    font-weight: 500;
    background-color: #DEECDD;
    color: #000;
}

/* Centraliza todo o container de ícones */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem; /* espaçamento opcional entre os ícones */
  margin: 1.5rem 0; /* margem superior/inferior, ajuste a gosto */
}

/* Ajusta cada imagem para 50% do seu tamanho natural */
.footer-social img {
  width: 50%;
  height: auto;
  max-width: 40px; /* opcional: limita a largura para não ficar muito grande */
} 
  


  
