body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #131313;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h1, h2, h3, .subtitle, .highlight{
font-family: 'Inter', sans-serif;
  font-weight: 700; 
  line-height: 1.1em; 
}

p, li, a, button {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.45em;
}

/* ===== BOTÕES ===== */
.btn {
  background: linear-gradient(135deg, #ff9ebd 0%, #ff72a4 40%, #ff4f8d 70%, #e63c78 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 35px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 22px rgba(255, 120, 160, 0.5);
  border: 1px solid rgba(255, 180, 210, 0.25);
}

.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 35px rgba(255, 120, 160, 0.75);
}

@media (max-width: 768px) {
  .btn {
    font-size: 0.95rem;
    padding: 12px 22px;
  }
}

/* ===== SEÇÕES GERAIS ===== */
.vsl-section,
.final-cta {
  background: #EFA0AE;
  color: #fff;
  padding: 60px 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: #131313;
  color: #fff;
  padding: 20px;
  font-size: 0.9em;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

/* ===== HERO DESKTOP ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100vh;
  color: #fff;
  text-align: right;
  background-image: url('assets/hero-desktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #131313;
  overflow: hidden;
}

.hero-content {
  padding: 70px 6% 40px 10%;
  z-index: 1;
}

.text-area {
  max-width: 500px;
}

/* ===== LOGO MOBILE ===== */
.mobile-logo {
  display: none;
}

/* ===== HERO MOBILE ===== */
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
    width: 200px;
    margin: 0 auto 0;
  }

  .hero {
    background: #131313;
    background-image: url('assets/hero-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    padding: 0px 20px 40px; 
}

  .hero .subtitle {
    font-size: 1.2em;
    line-height: 1.2em;
  }

  .hero .description {
    font-size: 1em;
    line-height: 1.4em;
  }
}

/* ===== BENEFÍCIOS ===== */
.benefits {
  background: #EFA0AE;
  color: #131313;
  padding: 80px 20px;
}

.benefits h2 {
  color: #131313;
  font-size: 2em;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
  }
}

.benefit-item {
  background: linear-gradient(135deg, #1e1e1e 0%, #111 35%, #000 50%, #151515 70%, #1d1d1d 100%),
              radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 70%);
  background-blend-mode: overlay, normal;

  border: 1px solid rgba(255, 160, 185, 0.25);
  border-radius: 14px;
  padding: 28px;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.25s ease;
  box-shadow: 0 0 16px rgba(0,0,0,0.45);

  backdrop-filter: blur(3px);
}

.benefit-item h3 {
  color: #ee89a4;
  font-size: 1.28em;
  margin-bottom: 12px;
  text-align: center;
}

.benefit-item p {
  text-align: center;
  font-size: 0.95em;
  line-height: 1.45em;
}

/* HOVER — desktop */
@media (min-width: 769px) {
  .benefit-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255,140,160,0.55);
    box-shadow: 0 0 32px rgba(255,130,160,0.35);

    background: linear-gradient(135deg, #262626 0%, #171717 35%, #000 55%, #1d1d1d 75%, #262626 100%),
                radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 60%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.10), transparent 75%);
  }
}

/* ===== CONSULTORIA ===== */
.consultoria {
  background-image: url('assets/foto-bg.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.consultoria h2 {
  color: #ee7288;
  font-size: 2em;
  margin-bottom: 15px;
}

/* =======================
   TRANSFORMAÇÕES - SLIDER
   ======================= */

.transformacoes {
  width: 100%;
  padding: 40px 0;
  background: #131313;
  text-align: center;
}

.transformacoes h2 {
  color: #ee7288;
  font-size: 2em;
  margin-bottom: 10px;
}

.transformacoes-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.slide-track {
  display: flex;
  gap: 40px;
  width: calc(330px * 10);
  animation: slideLoop 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 330px; 
  height: 330px; 
  border-radius: 12px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 12px;
}

/* ANIMAÇÃO */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-330px * 5 - 40px * 5));
  }
}

/* ===== HERO ULTRAWIDE FIX ===== */
@media (min-aspect-ratio: 18/9) {
  .hero {
    background-size: cover;
    background-position: top center;
  }
}

/* ===== SOBRE A GLACY (FOTO + TEXTO) ===== */
.sobre-glacy {
  background: #131313;
  color: #fff;
  padding: 60px 20px;
  border-top: 1px solid rgba(230, 138, 138, 0.2);
}

.sobre-glacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.glacy-foto {
  grid-column: 1;
}

.glacy-foto img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(230, 138, 138, 0.25);
  box-shadow: 0 0 20px rgba(230, 138, 138, 0.15);
  object-fit: cover;
}

.glacy-header,
.glacy-texto {
  grid-column: 2;
  text-align: left;
}

.glacy-header h2 {
  color: #ee7288;
  font-size: 2.1em;
  margin-bottom: 20px;
  font-weight: 600;
}

.glacy-texto p {
  font-size: 1.05em;
  line-height: 1.65em;
  margin-bottom: 16px;
  color: #e6e6e6;
}

.glacy-texto p strong {
  color: #fff;
}

.glacy-texto .final {
  margin-top: 20px;
  font-size: 1.15em;
  color: #ee7288;
  font-weight: 600;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .sobre-glacy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .glacy-texto h2,
  .glacy-texto p {
    text-align: center;
  }

  .glacy-foto img {
    max-width: 380px;
    margin: 0 auto;
    display: block;
  }
}

section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.benefits,
.transformacoes,
.consultoria,
.sobre-glacy{
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.final-cta {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  color: #131313;
}

/* ===== BENEFÍCIOS — SLIDER MOBILE ===== */
@media (max-width: 768px) {

  .benefits {
    position: relative;
  }

  .benefit-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 10px 25px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .benefit-grid::-webkit-scrollbar {
    display: none;
  }

  .benefit-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
    padding: 22px;
    max-height: none !important;
  }

  .drag-hint {
    position: absolute;
    right: 8px;
    
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 34px;
    opacity: 0.45;
    z-index: 50;
    pointer-events: none;

    animation: dragMove 1.5s infinite ease-in-out;
  }

  @media (min-width: 769px) {
  .drag-hint {
    display: none !important;
  }
}

  @keyframes dragMove {
    0% { transform: translate(0, -50%); opacity: .4; }
    50% { transform: translate(6px, -50%); opacity: .8; }
    100% { transform: translate(0, -50%); opacity: .4; }
  }
}

/* ESCONDE A SETA NO DESKTOP */
@media (min-width: 769px) {
  .drag-hint {
    display: none !important;
  }
}


/* ===== SOBRE A GLACY (DESKTOP + BASE) ===== */
.sobre-glacy {
  background: #131313;
  color: #fff;
  padding: 60px 20px;
}

.sobre-glacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  column-gap: 48px;
  row-gap: 20px;
  align-items: center;
}

.glacy-foto {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.glacy-foto img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  border: 1px solid rgba(230, 138, 138, 0.25);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

/* ===== SOBRE A GLACY — DESKTOP ===== */
.sobre-glacy {
  background: #131313;
  color: #fff;
  padding: 60px 20px;
  position: relative;
}

.sobre-glacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* FOTO — só desktop */
.glacy-foto {
  grid-column: 1;
}

.glacy-foto img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(230, 138, 138, 0.25);
  box-shadow: 0 0 20px rgba(230, 138, 138, 0.15);
  object-fit: cover;
}

.glacy-header {
  grid-column: 2;
  grid-row: 1;
}

.glacy-header h2 {
  color: #ee7288;
  font-size: 2.1em;
  margin: 0 0 20px;
  font-weight: 600;
  text-align: center; 
}

.glacy-texto {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
}

.glacy-texto p {
  font-size: 1.05em;
  line-height: 1.65em;
  margin-bottom: 16px;
  color: #e6e6e6;
}

.glacy-texto p strong {
  color: #fff;
}

.glacy-texto .final {
  margin-top: 20px;
  font-size: 1.1em;
  color: #ee7288;
  font-weight: 600;
}

@media (max-width: 900px) {

  .sobre-glacy {
    background: url('assets/foto-bg.png') center/cover no-repeat;
    padding: 60px 20px;
  }

  .glacy-foto {
    display: none;
  }

  .sobre-glacy-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .glacy-header {
    order: 1;
    width: 100%;
    margin-bottom: 16px;
  }

  .glacy-header h2 {
    text-align: center;
    font-size: 1.75em;
  }

  .glacy-texto {
    order: 2;
    text-align: center;
    width: 100%;
  }

  .glacy-texto p {
    margin-bottom: 16px;
    padding: 0 10px;
  }

  .glacy-texto .final {
    margin-top: 12px;
  }
}

/* BOTÃO DO BLOCO DE BENEFÍCIOS */
.benefits .btn {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #2a2a2a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 18px rgba(0,0,0,0.55);
}

.benefits .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(0,0,0,0.75);
}

/* BOTÃO DO CTA FINAL */
.final-cta .btn {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #2a2a2a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 18px rgba(0,0,0,0.55);
}

.final-cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 28px rgba(0,0,0,0.75);
}

/* DESKTOP — escondido */
.fotos {
  display: none;
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}


@media (max-width: 769px) {

  .fotos {
    background-image: url('assets/foto-mobile.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

    width: 100%;
    height: 100vh; 
    max-height: 750px; 

    display: block !important;
    padding: 0 !important;
  }
}
/* DESKTOP — escondido */
.antesdepois {
  display: none !important;
}

/* MOBILE — carrossel manual */
@media (max-width: 769px) {

  .antesdepois {
    display: block !important;
    padding: 30px 0 50px;
    background: #131313;
    position: relative;
  }

  .antesdepois-titulo {
    font-size: 1.7em;
    color: #ee7288;
    text-align: center;
    margin-bottom: 18px;
  }

  .antesdepois-grid {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 10px 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .antesdepois-grid::-webkit-scrollbar {
    display: none;
  }

  /* CARD — ROSA METALIZADO */
  .antesdepois-card {
    flex: 0 0 80%; 
    scroll-snap-align: start;
    border-radius: 14px;
    overflow: hidden;

    background:
      linear-gradient(135deg, #ff9ebd 0%, #ff72a4 25%, #ff4f8d 50%, #e63c78 75%, #ff9ebd 100%),
      radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 60%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.15), transparent 70%);
    background-blend-mode: overlay, normal;

    border: 1px solid rgba(255, 200, 220, 0.45);
    padding: 6px;

    box-shadow:
      0 0 20px rgba(255, 120, 160, 0.45),
      inset 0 0 12px rgba(255, 255, 255, 0.12);

    transition: 0.25s ease;

    height: 70vh;             
    max-height: 520px;         
  }

  .antesdepois-card img {
    width: 100%;
    height: 100%;              
    object-fit: cover;         
    border-radius: 10px;
  }

  .antesdepois-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 0 28px rgba(255, 120, 160, 0.60),
      inset 0 0 18px rgba(255, 255, 255, 0.18);
  }

  .antesdepois .drag-hint.antes {
    display: block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 10;
    animation: antes-arrow 1.5s infinite ease-in-out;
  }

  @keyframes antes-arrow {
    0% { transform: translate(0, -50%); opacity: .3; }
    50% { transform: translate(-8px, -50%); opacity: .75; }
    100% { transform: translate(0, -50%); opacity: .3; }
  }
}

/* ============================
   DEPOIMENTOS — ESTILO GERAL
============================ */
.depoimentos {
  background: #EFA0AE !important; 
  color: #131313;
  padding: 60px 20px;
  position: relative;
}

.depoimentos h2 {
  font-size: 2em;
  color: #131313;
  margin-bottom: 40px;
}

/* DESKTOP – 5 COLUNAS */
@media (min-width: 769px) {
  .depoimentos-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* ============================
   CARTÃO METALIZADO + IMAGEM
============================ */
.depoimento-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #111 35%, #000 50%, #151515 65%, #1d1d1d 100%),
              radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 70%);
  background-blend-mode: overlay, normal;

  border: 1px solid rgba(255, 160, 185, 0.2);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;

  box-shadow: 0 0 18px rgba(0,0,0,0.55);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.depoimento-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* HOVER DESKTOP */
@media (min-width: 769px) {
  .depoimento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,150,170,0.55);
    box-shadow: 0 0 38px rgba(255,130,160,0.35);
    background: linear-gradient(135deg, #262626 0%, #171717 30%, #000 50%, #1a1a1a 70%, #262626 100%),
                radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 60%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.10), transparent 75%);
    background-blend-mode: overlay, normal;
  }
}

/* ============================
   MOBILE — SLIDER MANUAL
============================ */
@media (max-width: 768px) {

  .depoimentos-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 5px 25px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .depoimento-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .depoimentos-grid::-webkit-scrollbar {
    display: none;
  }

  .drag-hint.depo {
    display: block !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 10;
    animation: depo-arrow 1.5s infinite ease-in-out;
  }

  @keyframes depo-arrow {
    0% { transform: translate(0, -50%); opacity: .3; }
    50% { transform: translate(-8px, -50%); opacity: .75; }
    100% { transform: translate(0, -50%); opacity: .3; }
  }
}

@media (min-width: 769px) {
  .drag-hint.depo {
    display: none !important;
  }
}

.depoimentos .btn {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #2a2a2a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 18px rgba(0,0,0,0.55);
}