/* ===== Custom Video Player ===== */
.custom-video-player {
  position: relative;
  background: #181818;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 1002;
}
.custom-video-player video {
  display: block;
  width: 100%;
  background: #000;
}
.custom-video-player .controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.7);
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.custom-video-player.show-controls .controls {
  opacity: 1;
  pointer-events: auto;
}
/* Ajuste para engrenagem e dropdown */
.custom-video-player .settings-dropdown-wrapper {
  position: relative;
}
.custom-video-player .settings-dropdown {
  display: none;
  position: absolute;
  bottom: 40px;
  right: 0;
  background: #222;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 10;
  min-width: 120px;
  font-size: 15px;
}
.custom-video-player .settings-dropdown.show {
  display: block;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
  .custom-video-player {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    z-index: 1002;
  }
  .custom-video-player video {
    width: 100%;
    display: block;
    background: #000;
  }
  .custom-video-player .controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 32px 18px 18px;
    background: linear-gradient(90deg,rgba(0,0,0,0.7) 60%,rgba(0,0,0,0.2) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 2;
  }
  .custom-video-player.show-controls .controls {
    opacity: 1;
    pointer-events: auto;
  }
  .custom-video-player .controls button,
  .custom-video-player .controls input[type="range"],
  .custom-video-player .controls select {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    outline: none;
  }
  .custom-video-player .controls button {
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-video-player .controls button:hover {
    color: #FAEAB1;
  }
  .custom-video-player .progress-bar {
    flex: 1;
    margin: 0 18px;
    accent-color: #fff;
    height: 7px;
    border-radius: 4px;
    background: #fff2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  }
  .custom-video-player .volume-bar {
    width: 110px;
    accent-color: #fff;
    height: 7px;
    border-radius: 4px;
    background: #fff2;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  }
  .custom-video-player .current-time,
  .custom-video-player .duration {
    font-size: 18px;
    color: #fff;
    min-width: 56px;
    text-align: right;
    font-family: 'Segoe UI', Arial, sans-serif;
    opacity: 0.95;
  }
  .custom-video-player .settings-dropdown-wrapper {
    position: relative;
  }
  .custom-video-player .settings-btn {
    font-size: 26px;
  }
  .custom-video-player .settings-dropdown {
    display: none;
    position: absolute;
    bottom: 40px;
    right: 0;
    background: rgba(34,34,34,0.98);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 14px 22px;
    z-index: 10;
  }
  .custom-video-player .settings-dropdown.show {
    display: block;
  }
  .custom-video-player .settings-dropdown label {
    font-size: 16px;
    margin-right: 10px;
  }
  .custom-video-player .settings-dropdown select {
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 16px;
  }
  .custom-video-player .fullscreen-btn {
    font-size: 26px;
  }
  .custom-video-player .mute-btn {
    font-size: 26px;
  }
  .custom-video-player .play-pause {
    font-size: 32px;
    margin-right: 8px;
  }
  .custom-video-player .controls i {
    font-size: inherit;
    vertical-align: middle;
  }
.top-bar { 
  background: #34656D; 
  color: #fff; 
  overflow: hidden; 
  white-space: nowrap; 
  position: relative; 
  z-index: 10001; 
}

.top-bar-track { 
  display: flex; 
  width: max-content; 
  animation: marquee 30s linear infinite; 
}

.top-bar span { 
  padding: 12px 40px; 
  font-size: 14px; 
  flex-shrink: 0;
}

@keyframes marquee { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

/* ================= MENU DINÂMICO ================= */
.menu-wrapper { 
  position: static; 
  top: auto; 
  z-index: 9999; 
  padding: 0; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
  width: 100%;
}

.menu-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.menu-wrapper.scrolled { 
  top: 10px; 
}

.menu {
  background: transparent;
  border-radius: 40px;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: none;
  border: none;
  flex: 0 0 auto;
}

.menu-wrapper.scrolled .menu { 
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transform: scale(0.96); 
}

.logo-container {
  display: flex;
  align-items: center;
  transform: translateX(15%) translateY(35%);
  opacity: 1;
  animation: logoSlideIn 0.8s ease-out both;
}

@keyframes logoSlideIn {
  from {
    transform: translateX(-20%) translateY(35%);
    opacity: 0;
  }
  to {
    transform: translateX(15%) translateY(35%);
    opacity: 1;
  }
}

.logo-container img {
  max-height: 100px;
  width: auto;
  display: block;
  transition: max-height 0.3s ease;
}

.menu-center { 
    display: flex; 
    justify-content: center; 
    gap: 28px; 
    flex: 1; 
}

.menu-center a { 
  position: relative; 
  text-decoration: none; 
  color: #334443; 
  font-size: 15px; 
  font-weight: 700; 
  padding-bottom: 4px; 
}

.menu-center a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #34656d; transition: width 0.3s ease; }
.menu-center a:hover::after { width: 100%; }

.menu-right { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    justify-content: flex-end;
}

.menu-right .btn,
.menu-right .btn-outline {
  padding: 13px 32px;
  font-size: 14px;
  position: relative;
  top: -20%;
}

.btn { background: #34656D; color: #fff; border: none; padding: 16px 40px; border-radius: 35px; cursor: pointer; font-size: 18px; font-weight: 600; transition: transform 0.2s; white-space: nowrap; }
.btn:hover { transform: scale(1.05); }
.btn-outline { background: transparent; border: 3px solid #34656D; color: #34656D; padding: 16px 40px; border-radius: 35px; cursor: pointer; font-size: 18px; font-weight: 600;}

/* ================= MODAL LOGIN ================= */
.modal-login {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-login.show {
  display: flex;
}

.modal-login-content {
  background: #FAF8F1;
  padding: 50px;
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comment-replies-toggle {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #34656D;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}
.comment-hide-button {
  margin-top: 18px;
  border: none;
  background: transparent;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: #777;
}
    margin: 18px auto 0 auto;
    padding: 8px 26px;
    border-radius: 999px;
    border: 2px solid #707070;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #707070;
  }

  .comment-hide-button:hover {
    background: rgba(0, 0, 0, 0.03);
}
.modal-login-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  color: #34656D;
  cursor: pointer;
  line-height: 1;
}

.modal-login-title {
  font-family: 'Swirly Canalope', cursive;
  font-size: 42px;
  color: #34656D;
  margin-bottom: 10px;
  text-align: center;
}

.modal-login-subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}

.modal-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-login-input {
  padding: 18px 20px;
  border: 2px solid #34656D;
  border-radius: 35px;
  font-size: 18px;
  background: #FAF8F1;
}

.modal-login-input:focus {
  outline: none;
  border-color: #2D5F5D;
}

.modal-login-button {
  background: #34656D;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-login-button:hover {
  transform: scale(1.02);
}

.modal-login-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  color: #666;
}

.modal-login-footer a {
  color: #34656D;
  text-decoration: none;
  font-weight: 600;
}

.modal-login-footer a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #34656D;
  cursor: pointer;
  margin-left: 5px;
}

/* ================= MOBILE NAV OVERLAY ================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #FAF8F1;
  z-index: 10002;
  transition: 0.4s ease;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav.active { right: 0; }

.mobile-nav .close-menu {
  align-self: flex-end;
  font-size: 24px;
  color: #34656D;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-nav a {
  text-decoration: none;
  color: #334443;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 10px;
}

.mobile-nav .btn-mobile-login {
  margin-top: 10px;
  text-align: center;
}

.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  display: none;
}

.overlay-bg.active { display: block; }

/* ================= HERO CONTAINER ================= */
.hero-container {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -125px; 
}

.background-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img2-3.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  max-width: 1200px; 
  margin: 0 auto;
  padding: 240px 32px 60px 32px; 
  text-align: left; 
  width: 100%;
}

.hero h1 {
  color: #fff; 
  font-size: 64px; 
  line-height: 1.1; 
  margin-bottom: 20px; 
  max-width: 500px; 
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero .btn-hero {
  margin-left: 200px;
  font-size: 18px;
  margin-top: 250px;
  padding: 16px 40px;
  background: #af7c42; 
  color: #ffffff; 
  border-radius: 35px; 
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero .btn-hero:hover {
  background: #ffffff;
  box-shadow: #ffc076 0px 6px 15px;
  color: #af7c42;
}

/* ================= CTA BANNERS ================= */
.banners-cta-section {
  padding: 100px 32px 40px 32px;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banners-cta-section h2 {
  font-family: 'Yeseva One', serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  margin-top: -35px;
  margin-bottom: 40px;
  max-width: 850px;
  color: #34656D;
  margin-left: auto;
  margin-right: auto;
}

.banners-cta-section h2 span {
  color: #34656D;
}

.btn-cta-orange {
  background: #af7c42;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.8s ease, transform 0.8s ease, background 0.3s;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-20px);
}

.btn-cta-orange.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.btn-cta-orange:hover {
  background: #855c2d;
  transform: translateX(0) translateY(-2px);
}

/* ================= BANNERS EXPANSÍVEIS ================= */
.banner-grid-container {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 550px;
}

.banner-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  min-width: 0;
  opacity: 0;
  transform: translateX(-50px) translateY(-30px);
}

.banner-item.animate {
  animation: slideInBanner 0.8s ease-out forwards;
}

@keyframes slideInBanner {
  from {
    opacity: 0;
    transform: translateX(-50px) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.banner-item.animate:nth-child(1) {
  animation-delay: 0.2s;
}

.banner-item.animate:nth-child(2) {
  animation-delay: 0.4s;
}

.banner-item.animate:nth-child(3) {
  animation-delay: 0.6s;
}

.banner-item.animate:nth-child(4) {
  animation-delay: 0.8s;
}

.banner-item:hover {
  flex: 2.5;
}

.banner-img-container {
  width: 100%;
  height: 400px; 
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.banner-item:hover .banner-img {
  transform: scale(1.05);
}

.banner-content-outside {
  padding: 15px 5px;
  color: #333;
}

.banner-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #34656D;
}

/* Descrição escondida por padrão no Desktop */
.banner-description {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.banner-item:hover .banner-description {
  opacity: 1;
}

/* Navegação Mobile */
.banner-nav-mobile {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.nav-arrow {
  cursor: pointer;
  color: #34656D;
  font-size: 24px;
}

/* ================= SEÇÃO DO APP ================= */
.app-section {
  padding: 0px 32px 60px 32px;
  background: transparent;
  max-width: 1200px;
  margin: -50px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.app-content {
  flex: 1;
  max-width: 500px;
}

.app-content h2 {
  font-family: 'Yeseva One', serif;
  font-size: 48px;
  line-height: 1.2;
  color: #515151;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.method-title {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  color: #515151;
  display: inline-block;
  width: 0;
  overflow: hidden;
  border-right: 3px solid #515151;
  animation: none;
  position: relative;
  z-index: 2;
}

.method-title.animate {
  animation: typing 2s steps(20, end) forwards, blink-caret 0.75s step-end 2 forwards;
  animation-delay: 0s, 2s;
}

.method-highlight {
  background: #FAEAB1;
  padding: 2px 8px;
  border-radius: 4px;
}

.method-subtitle {
  font-family: 'Swirly Canalope', cursive;
  font-size: 85px;
  margin-top: -20px;
  white-space: nowrap;
  color: #34656D;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.btn-app {
  background: #34656d;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-section.animate-in .method-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.app-section.animate-in .btn-app {
  opacity: 1;
  transform: translateX(0);
}

.btn-app:hover {
  background: #333;
  transform: translateY(-2px);
}

.app-phone-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.app-cta-wrapper {
  text-align: center;
  background: transparent;
  margin-top: -30px;
  padding-bottom: 55px;
}

.phone-mockup {
  width: 275px;
  height: 550px;
  background: #334443;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  margin-top: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.phone-mockup.in-view {
  opacity: 1;
  transform: translateY(0);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #334443;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-info {
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}

.phone-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #34656D;
  margin-bottom: 10px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.phone-info p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.phone-info h3.fade-out,
.phone-info p.fade-out {
  opacity: 0;
  transform: translateX(-30px);
}

.phone-info h3.fade-in,
.phone-info p.fade-in {
  opacity: 1;
  transform: translateX(0);
}

.phone-info h3.slide-right,
.phone-info p.slide-right {
  transform: translateX(30px);
  opacity: 0;
}

.phone-nav-arrows {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.phone-nav-arrows .nav-arrow {
  cursor: pointer;
  color: #34656D;
  font-size: 24px;
  transition: transform 0.2s;
}

.phone-nav-arrows .nav-arrow:hover {
  transform: scale(1.1);
}

/* ================= SEÇÃO DE PLANOS ================= */
.pricing-section {
  padding: 80px 20px; 
  background: transparent;
  text-align: center;
  margin-top: 20px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  background: #34656D;
  border-radius: 30px;
  width: 320px;
  padding: 40px 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-80px);
}

.pricing-card.slide-down {
  animation: cardSlideDown 1s ease-out forwards;
}

.pricing-card:nth-child(1).slide-down {
  animation-delay: 0s;
}

.pricing-card:nth-child(2).slide-down {
  animation-delay: 0.5s;
}

.pricing-card:nth-child(3).slide-down {
  animation-delay: 1s;
}

@keyframes cardSlideDown {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card.side-card { transform: translateY(0); width: 350px; }
.pricing-card.featured { background: #34656D; width: 350px; padding: 40px 25px 25px 25px; z-index: 2; transform: translateY(0); border-radius: 0 0 30px 30px; overflow: visible; margin-top: 20px; }

.pricing-card.featured > :first-child {
  margin-top: -25px;
}
.pricing-card:hover { scale: 1.05; box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 60px rgba(255,255,255,0.5); z-index: 10; }

.featured-tag {
  background: #fff;
  color: #334443;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 15px 15px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 0;
}

.plan-name { font-family: 'Yeseva One', serif; font-size: 28px; margin-bottom: 25px; color: #FAEAB1; }
.pricing-card hr { border: 0; border-top: 1px solid rgba(255,255,255,0.5); margin-bottom: 25px; }

.features-list { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; }
.features-list li { margin-bottom: 12px; font-size: 15px; color: #FAF8F1; display: flex; align-items: center; gap: 10px; }
.features-list li i { color: #34656D; font-size: 12px; background: #FAEAB1; padding: 4px; border-radius: 50%; }

.price-box { margin-bottom: 25px; color: #FAEAB1; }
.price-main { font-family: 'Yeseva One', serif; font-size: 42px; color: #FAF8F1; }
.price-sub { display: block; font-size: 16px; font-weight: bold; color: #FAF8F1; }

.btn-plan { background: #fff; color: #334443; border: none; padding: 16px 40px; border-radius: 35px; font-size: 18px; font-weight: bold; text-decoration: none; transition: background 0.3s; text-align: center; }
.btn-plan:hover { background: #FAEAB1; color: #334443; }

/* ================= ÁREA LOGADA / DASHBOARD ================= */
#dashboard {
  display: none;
  min-height: 100vh;
  background: #FAF8F1;
}

/* Sidebar Desktop */
.sidebar-logged {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 100vh;
  background: #FAF8F1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #E5E5E5;
  z-index: 20000;
  overflow: visible;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-logged.collapsed {
  width: 70px;
  padding: 30px 10px;
  overflow: hidden;
}

.sidebar-logged.collapsed .sidebar-nav {
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidebar-logged.collapsed .sidebar-nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sidebar-link span {
  display: inline-block;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.sidebar-admin-toggle span {
  display: inline-block;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.sidebar-logged.collapsed .sidebar-link span {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sidebar-logged.collapsed .sidebar-admin-toggle {
  justify-content: center;
  gap: 0;
}

.sidebar-logged.collapsed .sidebar-admin-toggle span {
  opacity: 0;
  transform: translateX(-20px);
  width: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sidebar-logged.collapsed .sidebar-admin-menu {
  display: none;
}

.sidebar-link:nth-child(1) span { transition-delay: 0.05s; }
.sidebar-link:nth-child(2) span { transition-delay: 0.08s; }
.sidebar-link:nth-child(3) span { transition-delay: 0.11s; }
.sidebar-link:nth-child(4) span { transition-delay: 0.14s; }
.sidebar-link:nth-child(5) span { transition-delay: 0.17s; }
.sidebar-link:nth-child(6) span { transition-delay: 0.20s; }

.sidebar-logged.collapsed .sidebar-link:nth-child(1) span,
.sidebar-logged.collapsed .sidebar-link:nth-child(2) span,
.sidebar-logged.collapsed .sidebar-link:nth-child(3) span,
.sidebar-logged.collapsed .sidebar-link:nth-child(4) span,
.sidebar-logged.collapsed .sidebar-link:nth-child(5) span,
.sidebar-logged.collapsed .sidebar-link:nth-child(6) span {
  transition-delay: 0s;
}

.sidebar-footer .sidebar-link:nth-child(1) span { transition-delay: 0.23s; }
.sidebar-footer .sidebar-link:nth-child(2) span { transition-delay: 0.26s; }

.sidebar-logged.collapsed .sidebar-logo img {
  max-width: 50px;
}

.sidebar-toggle {
  position: fixed;
  left: calc(220px - 15px);
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #34656D;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20000;
}

.sidebar-logged.collapsed .sidebar-toggle {
  left: calc(70px - 15px);
}

.sidebar-toggle:hover {
  background: #2a5158;
}

.sidebar-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.sidebar-logged.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}

.sidebar-logo {
  margin-bottom: 40px;
  text-align: center;
}

.sidebar-logo img {
  max-width: 144px;
}

.sidebar-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  text-decoration: none;
  color: #34656D;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: #34656D;
  color: white;
}

.sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-admin {
  position: relative;
}

.sidebar-admin-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  text-decoration: none;
  color: #34656D;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-admin-toggle i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.sidebar-admin-toggle:hover,
.sidebar-admin:hover .sidebar-admin-toggle {
  background: #34656D;
  color: #fff;
}

.sidebar-admin-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #FAF8F1;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 10px;
  min-width: 190px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20001;
}

.sidebar-admin:hover .sidebar-admin-menu {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sidebar-admin-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #34656D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-admin-item:hover {
  background: #34656D;
  color: #fff;
}

.sidebar-admin-item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px dashed #c9d0cf;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  color: #34656D;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.sidebar-user:hover {
  background: #34656D;
  color: white;
}

.sidebar-user i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.sidebar-settings {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  text-decoration: none;
  color: #34656D;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.sidebar-settings:hover {
  background: #34656D;
  color: white;
}

.sidebar-settings i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Menu Mobile (rodapé) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #34656D;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-nav-item.active {
  background: #FAEAB1;
  color: #34656D;
}

/* Conteúdo Principal */
.dashboard-content {
  margin-left: 220px;
  padding: 0;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

.dashboard-view {
  display: none;
}

.dashboard-view.active {
  display: block;
}

.sidebar-logged.collapsed ~ .dashboard-content {
  margin-left: 70px;
}

/* Banner Hero */
.dashboard-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-logo-mobile {
  display: none;
}

.dashboard-hero-text {
  max-width: 600px;
  color: white;
  z-index: 2;
  position: relative;
  margin-left: 0;
}

.dashboard-hero-text h1 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 400;
}

.dashboard-hero-text h1 strong {
  color: #FAEAB1;
  font-weight: 700;
}

.dashboard-hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.dashboard-plan-select {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
}

.dashboard-plan-select select {
  background: rgba(52, 101, 109, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 8px 36px 8px 14px;
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.dashboard-plan-select select:focus {
  outline: none;
  border-color: #FAEAB1;
}

.dashboard-plan-select::after {
  content: '\25BC';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
  font-size: 10px;
}

.dashboard-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.dashboard-hero .draggable-text {
  cursor: default;
  pointer-events: none;
}

.hero-nutritionist {
  width: 100%;
  height: 170%;
  object-fit: cover;
  object-position: center bottom;
  transform: translateY(0);
}

.admin-banner-card.editing .hero-nutritionist {
  cursor: grab;
}

.admin-banner-card.editing .hero-nutritionist.dragging {
  cursor: grabbing;
  user-select: none;
}

/* Admin Area */
.admin-page {
  padding: 40px 80px 80px;
  background: #FAF8F1;
}

.admin-section {
  margin-bottom: 40px;
}

.admin-section-title {
  font-size: 28px;
  color: #34656D;
  margin-bottom: 6px;
}

.admin-section-subtitle {
  color: #7a8b8a;
  margin-bottom: 20px;
}

.admin-banner-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  padding: 60px 80px;
  width: 100%;
  max-width: none;
}

.admin-page .admin-banner-card {
  margin-left: -80px;
  margin-right: -80px;
  width: calc(100% + 160px);
}

.admin-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  text-align: left;
}

.draggable-text {
  display: inline-block;
  cursor: grab;
  position: relative;
}

.draggable-text.dragging {
  cursor: grabbing;
  user-select: none;
}

.draggable-text.selected {
  outline: 1px dashed #FAEAB1;
  outline-offset: 4px;
}

.admin-banner-card:not(.editing) .draggable-text {
  pointer-events: none;
}

.admin-banner-card.editing .draggable-text {
  pointer-events: auto;
}

.banner-custom-texts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.banner-custom-texts .draggable-text {
  position: absolute;
  pointer-events: auto;
}

.admin-banner-content h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 500;
}

.admin-banner-content strong {
  color: #FAEAB1;
}

.admin-banner-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
}

.admin-banner-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  object-fit: cover;
  z-index: 0;
}

.admin-action-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  max-width: 620px;
}

.admin-pill-button {
  background: #34656D;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.admin-pill-button.secondary {
  background: #2d2d2d;
}

.admin-pill-button.full {
  grid-column: 1 / -1;
}

.admin-edit-form {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  max-width: 620px;
}

.admin-edit-form.active {
  display: grid;
}

.admin-input {
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  color: #334443;
  width: 100%;
}

.admin-input.full {
  grid-column: 1 / -1;
}

.admin-style-panel {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 12px;
}

.admin-style-panel.active {
  display: grid;
}

.admin-style-title {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 600;
  color: #34656D;
}

.admin-style-hint {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #7a8b8a;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.admin-empty {
  max-width: 620px;
  font-size: 13px;
  color: #7a8b8a;
  padding: 10px 0;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #cfd8d8;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  color: #334443;
  width: 100%;
}

.admin-row.dragging {
  opacity: 0.6;
}

.admin-row-handle {
  color: #34656D;
  opacity: 0.7;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.admin-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-row-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9efee;
  color: #34656D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.admin-row-tag {
  background: #f1f5f4;
  color: #34656D;
  border: 1px solid #cfd8d8;
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 11px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
  max-width: 620px;
}

.admin-delete {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ff5c4d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Modal - Adicionar módulo (Admin) */
.admin-module-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10005;
  padding: 20px;
}

.admin-module-modal.active {
  display: flex;
}

.admin-module-modal-content {
  width: 100%;
  max-width: 980px;
  background: #f7f2ea;
  border-radius: 18px;
  padding: 28px 32px 32px;
  position: relative;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.admin-module-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: none;
  font-size: 24px;
  color: #34656D;
  cursor: pointer;
}

.admin-module-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.admin-module-title {
  font-size: 26px;
  color: #34656D;
  margin-bottom: 4px;
}

.admin-module-subtitle {
  color: #7a8b8a;
  margin-bottom: 20px;
}

.admin-module-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.admin-module-label {
  font-size: 12px;
  font-weight: 600;
  color: #334443;
}

.admin-module-input {
  border: none;
  border-bottom: 1px solid #c8d1d0;
  padding: 8px 4px;
  background: transparent;
  font-size: 14px;
  color: #334443;
}

.admin-plan-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-plan-error {
  font-size: 12px;
  color: #c0392b;
  display: none;
}

.admin-plan-pill {
  padding: 8px 18px;
  border-radius: 22px;
  border: 1px dashed #94a9a8;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: #34656D;
  cursor: pointer;
}

.admin-plan-pill.active {
  background: #fde7a7;
  border-color: transparent;
}

.admin-module-dropzone {
  .admin-delete {
  border: 2px dashed #a4b8b7;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #6e7d7c;
  cursor: pointer;
  background: #faf7f0;
}

.admin-module-dropzone.dragover {
  border-color: #34656D;
  background: #f1ede3;
}

.admin-module-preview-card {
  background: #0f0f0f;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #fff;
  min-height: 260px;
}

.admin-module-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-module-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.75) 100%);
}

.admin-module-preview-tag {
  position: absolute;
  left: 18px;
  bottom: 70px;
  background: #f9e7b1;
  color: #2f2f2f;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  text-transform: lowercase;
}

.admin-module-preview-title {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.admin-module-preview-label {
  font-size: 12px;
  font-weight: 600;
  color: #6e7d7c;
  text-align: right;
  margin-bottom: 8px;
}

.admin-video-section {
  margin-top: 24px;
}

.admin-video-title {
  font-size: 20px;
  color: #34656D;
  margin-bottom: 4px;
}

.admin-video-subtitle {
  font-size: 13px;
  color: #7a8b8a;
  margin-bottom: 12px;
}

.admin-video-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.admin-video-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 18px;
  background: #467982;
  color: #fff;
  font-size: 12px;
  cursor: grab;
}

.admin-video-edit {
  background: #f1f5f4;
  border: none;
  color: #34656D;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.admin-delete {
  background: #ff5c4d;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
}
.admin-delete i {
  font-size: 14px;
}
}

.admin-video-edit {
  background: #f1f5f4;
  border: none;
  color: #34656D;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.admin-delete {
  background: #ff5c4d;
  border: none;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
}
.admin-delete i {
  font-size: 14px;
}

.admin-video-pill.dragging {
  opacity: 0.6;
}

.admin-video-handle {
  font-size: 12px;
  opacity: 0.8;
}

.admin-video-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-video-actions .admin-pill-button.secondary {
  background: #9aa5a6;
}

.admin-video-edit {
  background: #f1f5f4;
  border: none;
  color: #34656D;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.admin-video-pill-title {
  white-space: nowrap;
  color: #fff;
}

.admin-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10006;
  padding: 20px;
}

.admin-video-modal.active {
  display: flex;
}

.admin-video-modal-content {
  width: 100%;
  max-width: 720px;
  background: #f7f2ea;
  border-radius: 20px;
  padding: 28px 30px 26px;
  position: relative;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.admin-video-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: none;
  background: none;
  font-size: 24px;
  color: #34656D;
  cursor: pointer;
}

.admin-video-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.admin-video-label {
  font-size: 12px;
  font-weight: 600;
  color: #334443;
}

.admin-video-input {
  border: none;
  border-bottom: 1px solid #c8d1d0;
  padding: 8px 4px;
  background: transparent;
  font-size: 14px;
  color: #334443;
}

.admin-video-dropzone {
  border: 2px dashed #a4b8b7;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
  color: #6e7d7c;
  cursor: pointer;
  background: #faf7f0;
}

.admin-video-dropzone.dragover {
  border-color: #34656D;
  background: #f1ede3;
}

.admin-video-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.admin-video-tool {
  width: 28px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #c8d1d0;
  background: #fff;
  color: #34656D;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.admin-video-editor {
  min-height: 160px;
  border: 1px solid #c8d1d0;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  color: #334443;
  font-size: 13px;
}

.admin-video-attachments {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #6e7d7c;
}

.admin-video-modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.admin-video-modal-actions .admin-pill-button {
  min-width: 120px;
}

.admin-module-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.admin-module-save {
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  background: #34656D;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .admin-module-grid {
    grid-template-columns: 1fr;
  }
  .admin-module-preview-label {
    text-align: left;
  }
}

/* Plano Essencial */
.plan-section {
  padding: 80px 80px;
  background: #FAF8F1;
}

.plan-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  color: #34656D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.plan-label {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  color: #515151;
  background: #FAEAB1;
  padding: 6px 14px;
  border-radius: 0px;
  font-size: 0.5em;
  line-height: 1;
}

.plan-highlight {
  font-family: 'Swirly Canalope', cursive;
  color: #34656D;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 0.9;
  transform: translateY(-50%);
}

.plan-highlight.plan-elite {
  transform: translateY(-40%);
}

.modules-carousel {
  position: relative;
  margin-bottom: 40px;
}

.modules-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
}

.modules-container::-webkit-scrollbar {
  display: none;
}

.module-card {
  flex: 0 0 336px;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.module-card:hover {
  transform: scale(1.05);
}

.module-image {
  width: 100%;
  height: 380px;
  background: #E5E5E5;
  position: relative;
}

.module-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-tag {
  position: absolute;
  bottom: 60px;
  left: 15px;
  background: #FAEAB1;
  padding: 8px 20px;
  border-radius: 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: bold;
  color: #34656D;
  z-index: 2;
  transform: translateY(-60%);
}

.module-tag.spaced {
  bottom: 80px;
}

.module-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 0;
  font-size: 23px;
  font-style: italic;
  color: white;
  line-height: 1.3;
  z-index: 2;
  margin: 0;
  max-width: 75%;
}

.module-title.multiline {
  bottom: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #34656D;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: #2D5F5D;
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.upgrade-btn {
  display: block;
  margin: 0 auto;
  padding: 15px 50px;
  background: transparent;
  color: #34656D;
  border: 2px solid #34656D;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.upgrade-btn:hover {
  background: #34656D;
  color: white;
}

/* Ferramentas */
.tools-section {
  padding: 80px 80px 100px;
  background: #FAF8F1;
}

.tools-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 50px;
  color: #34656D;
  font-family: 'Georgia', serif;
}

.tools-highlight {
  font-family: 'Georgia', serif;
  font-style: italic;
  color: #34656D;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.tool-card {
  background: #34656D;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tool-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.tool-card h3 {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .sidebar-logged {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  .dashboard-content {
    margin-left: 0;
    padding-bottom: 80px;
  }

  .dashboard-hero {
    flex-direction: column;
    padding: 40px 20px;
    min-height: auto;
    text-align: left;
  }

  .hero-logo-mobile {
    display: block;
    max-width: 80px;
    margin: 0 0 20px 0;
  }

  .dashboard-hero-text {
    max-width: 100%;
    margin-left: 0;
    z-index: 2;
    position: relative;
  }

  .dashboard-hero-text h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .dashboard-hero-text p {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.5;
  }

  .dashboard-hero-image {
    position: relative;
    height: 250px;
    width: 100%;
    margin-top: 30px;
    order: -1;
  }

  .hero-nutritionist {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .plan-section {
    padding: 40px 20px;
  }

  .plan-title {
    font-size: 28px;
    margin-bottom: 25px;
    gap: 6px;
  }

  .plan-label {
    padding: 5px 10px;
    font-size: 0.55em;
  }

  .plan-highlight {
    font-size: 1.4em;
  }

  .modules-container {
    gap: 15px;
    padding: 0 5px;
  }

  .module-card {
    flex: 0 0 280px;
  }

  .module-image {
    height: 320px;
  }

  .module-tag {
    font-size: 14px;
    padding: 6px 16px;
  }

  .module-title {
    font-size: 20px;
    max-width: 90%;
  }

  .carousel-btn {
    display: none;
  }

  .tools-section {
    padding: 40px 20px 100px;
  }

  .tools-title {
    font-size: 28px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-card {
    padding: 30px 20px;
  }
}

/* ================= MODAL DO MÓDULO ================= */
.module-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  overflow-y: auto;
}

.module-modal.active {
  display: flex;
}

.modal-content {
  width: 100%;
  height: 100%;
  background: #2D4A4E;
  display: flex;
  flex-direction: row;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s;
}

.modal-close:hover {
  transform: scale(1.1);
}

.modal-main {
  flex: 1;
  padding: 0;
  overflow-y: auto;
}

.modal-sidebar {
  width: 350px;
  background: #3D6066;
  overflow-y: auto;
  padding: 20px 0;
}

.video-player {
  width: 100%;
  height: 500px;
  background: #000;
  position: relative;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder para vídeo */
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
  font-style: italic;
}

.module-info {
  padding: 40px 60px;
  background: #2D4A4E;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.module-number {
  background: #FAEAB1;
  padding: 8px 20px;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: bold;
  color: #34656D;
  font-size: 18px;
}

.module-info h2 {
  color: white;
  font-size: 32px;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.rating-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating {
  display: flex;
  gap: 5px;
}

.rating i {
  color: #8B9DA0;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.rating i:hover,
.rating i.active {
  color: #FAEAB1;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #456A6F;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: #567A7F;
}

.module-tabs {
  margin-top: 30px;
}

.tab-buttons {
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #456A6F;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: none;
  color: #8B9DA0;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.tab-btn.active {
  color: #5E9CA5;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #5E9CA5;
}

.tab-content {
  display: none;
  color: white;
}

.tab-content.active {
  display: block;
}

.attachments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.attachment-item {
  background: #456A6F;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.attachment-item:hover {
  background: #567A7F;
}

.pdf-icon {
  width: 40px;
  height: 40px;
  background: #E74C3C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
}

.attachment-info h4 {
  margin: 0;
  font-size: 14px;
  color: white;
}

.attachment-info p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #B0C4C8;
}

.comments-section h3 {
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-input-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.comment-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #456A6F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.comment-input {
  flex: 1;
  background: #456A6F;
  border: none;
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-size: 14px;
  resize: vertical;
  min-height: 50px;
}

.comment-input::placeholder {
  color: #8B9DA0;
}

.comment-submit {
  background: #FAEAB1;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  color: #34656D;
  font-weight: bold;
  font-style: italic;
  cursor: pointer;
  transition: background 0.3s;
}

.comment-submit:hover {
  background: #F5E194;
}

/* Sidebar do Modal */
.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #456A6F;
}

.sidebar-module-title {
  color: white;
  font-size: 16px;
  margin: 0 0 5px;
}

.sidebar-module-progress {
  color: #B0C4C8;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-toggle {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.3s;
}

.progress-toggle.expanded {
  transform: rotate(180deg);
}

.lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.3s;
  border-bottom: 1px solid #456A6F;
}

.lesson-item:hover {
  background: #456A6F;
}

.lesson-item.active {
  background: #456A6F;
}

.lesson-checkbox {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #5E9CA5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.lesson-checkbox.checked::before {
  content: '✓';
}

.lesson-thumbnail {
  width: 80px;
  height: 55px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #FAEAB1;
}

.lesson-thumbnail img,
.lesson-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder para thumbnail de vídeo */
.lesson-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 20px;
}

.lesson-title {
  color: white;
  font-size: 16px;
  flex: 1;
}

.module-group {
  margin-bottom: 0;
}

.module-group-header {
  padding: 15px 20px;
  background: #34565A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #456A6F;
}

.module-group-title {
  color: white;
  font-size: 16px;
  margin: 0;
  flex: 1;
}

.module-group-progress {
  color: #B0C4C8;
  font-size: 14px;
  margin-right: 10px;
}

.module-group-lessons {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
}

.module-group.expanded .module-group-lessons {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsivo */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }

  .modal-sidebar {
    width: 100%;
    order: 2;
  }

  .modal-main {
    order: 1;
  }

  .video-player {
    height: 250px;
  }

  .module-info {
    padding: 25px 20px;
  }

  .module-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .module-info h2 {
    font-size: 24px;
  }

  .rating-nav {
    width: 100%;
    justify-content: space-between;
  }

  .module-tabs {
    margin-top: 20px;
  }

  .tab-buttons {
    gap: 10px;
    overflow-x: auto;
  }

  .tab-btn {
    font-size: 16px;
    padding: 10px 15px;
    white-space: nowrap;
  }

  .attachments-grid {
    grid-template-columns: 1fr;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  .lesson-item {
    padding: 12px 15px;
  }

  .lesson-thumbnail {
    width: 70px;
    height: 48px;
  }

  .lesson-title {
    font-size: 14px;
  }

  .desktop-only { display: none; }
  .mobile-only { display: block; }

  .video-lessons-mobile {
    display: grid;
  }

  .video-container-wrapper {
    padding: 0;
  }

  .video-main {
    padding: 0;
  }

  .main-video-area {
    margin: 0;
  }

  .video-info-header h1 {
    font-size: 10px;
  }

  .video-sidebar {
    display: none;
  }

  .video-layout {
    flex-direction: column;
  }

  .video-sidebar {
    width: 100%;
  }
}
.social-buttons { display: flex; flex-direction: column; gap: 15px; }
.btn-social { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 12px; border-radius: 25px; border: 1px solid #ccc; background: #fff; cursor: pointer; font-size: 14px; font-weight: 600; color: #333; }
.fa-apple { color: #000; }
.fa-google { color: #DB4437; }
.login-right { background-color: #333132; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }

#dashboard { display: none; height: 100vh; width: 100vw; background: transparent; display: flex; flex-direction: column; }
.sidebar { position: fixed; bottom: 0; left: 0; right: 0; height: auto; width: 100%; background: #334443; color: #fff; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 15px 20px; transition: all 0.3s ease; overflow: visible; flex-shrink: 0; gap: 40px; z-index: 1000; }
.sidebar.expanded { width: 100%; }
.sidebar-top { display: none; }
.sidebar.expanded .sidebar-top { display: none; }
.logo-sidebar { display: none; max-width: 120px; }
.sidebar.expanded .logo-sidebar { display: none; }
.toggle-btn { display: none; cursor: pointer; font-size: 20px; transition: transform 0.3s; }
.sidebar.expanded .toggle-btn { display: none; transform: rotate(180deg); }
.nav-items { display: flex; flex-direction: row; gap: 40px; flex-grow: 0; margin-top: 0; justify-content: center; align-items: center; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: rgba(255,255,255,0.7); padding: 10px; border-radius: 8px; white-space: nowrap; transition: 0.2s; }
.nav-item i { width: 20px; text-align: center; font-size: 22px; }
.nav-item span { display: none; font-size: 12px; }
.sidebar.expanded .nav-item span { display: none; }
.nav-item.active, .nav-item:hover { color: #fff; background: rgba(255,255,255,0.1); }
.sidebar-footer { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid #E5E5E5; }
.user-profile { display: none; align-items: center; gap: 10px; padding: 5px; }
.user-avatar { display: none; width: 30px; height: 30px; background: #fff; color: #000; border-radius: 50%; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.user-info { display: none; }
.sidebar.expanded .user-info { display: none; }
.user-name { display: none; font-size: 13px; font-weight: bold; }
.main-dashboard { flex-grow: 1; overflow-y: auto; background: transparent; display: flex; flex-direction: column; margin-bottom: 80px; }
.top-hero-dash { 
  width: 100%; 
  min-height: 60vh; 
  background: transparent;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-dash-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: 350px;
  max-width: 800px;
  z-index: 2;
  transform: translateY(-10%);
}
.hero-dash-badge {
  background: #faeab1;
  color: #334443;
  font-size: 16px;
  font-weight: 800;
  padding: 10px 24px;
  display: inline-block;
  align-self: flex-start;
  letter-spacing: 1.5px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #334443;
  width: 0;
  animation: typing 2s steps(30, end) forwards, blink-caret 0.75s step-end infinite;
  animation-delay: 0s, 0s;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; max-width: fit-content; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #334443; }
}

.hero-dash-badge.typed {
  border-right: none;
  animation: none;
  width: auto;
}

.hero-dash-title {
  font-family: 'Creato Display', serif;
  font-size: 58px;
  font-weight: 500;
  color: #515151;
  line-height: 1.3;
  opacity: 0;
  animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-dash-subtitle {
  font-family: 'Swirly Canalope';
  font-size: 120px;
  color: #34656D;
  font-style: normal;
  margin-top: -75px;
  letter-spacing: 2px;
  opacity: 0;
  animation: slideInFromTop 1s ease-out 0.8s forwards;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-dash-text {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-top: -15px;
  max-width: 550px;
  opacity: 0;
  animation: slideInTextLeft 1s ease-out 1.3s forwards;
}

@keyframes slideInTextLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-dash-button {
  align-self: flex-start;
  background: #F4D89F;
  color: #334443;
  border: none;
  padding: 16px 40px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
  opacity: 0;
  animation: fadeInButton 1s ease-out 1.8s forwards;
}

@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dash-button:hover {
  background: #F0CC7F;
  transform: translateY(-2px);
}
.hero-dash-image-area {
  flex: 1;
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dash-image {
  width: 90%;
  height: 90%;
  margin-left: -550px;
  object-fit: contain;
  object-position: center;
  z-index: 2;
  animation: focusIn 1.5s ease-out forwards;
}

@keyframes focusIn {
  from {
    filter: blur(10px);
    transform: scale(1.296);
  }
  to {
    filter: blur(0);
    transform: scale(1.44);
  }
}

.hero-dash-stars-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -80px;
  top: 35%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.8;
  animation: shrinkStars 1.5s ease-out forwards;
}

@keyframes shrinkStars {
  from {
    transform: translateY(-50%) scale(1.1);
  }
  to {
    transform: translateY(-50%) scale(1);
  }
}
.content-dash { padding: 40px; }
.section-title { font-size: 24px; margin-bottom: 25px; color: #000; font-weight: bold; }
.card-slider { display: flex; gap: 20px; position: relative; align-items: center; }
.dash-card { min-width: 220px; height: 300px; background: #333132; border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; cursor: pointer; transition: 0.3s; }
.dash-card:hover { transform: translateY(-5px); background: #444; }
.slider-arrow { width: 35px; height: 35px; background: rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.2); position: absolute; right: -17px; z-index: 5; }
.slider-arrow.left { left: -17px; display: none;} 

/* ================= TELA DE VÍDEO (PLAYER) ================= */
#video-player-screen {
  display: none;
  background: transparent;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 50px;
}

#video-player-screen.dashboard-view.active {
  display: block;
}

.video-container-wrapper {
  max-width: none;
  margin: 0 auto;
  padding: 20px;
}

.video-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.video-main {
  flex: 1;
  min-width: 0;
}

.video-sidebar {
  width: 320px;
  background: #34656D;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}

.video-sidebar-header {
  padding: 16px 18px;
  background: #2f5a61;
  font-weight: 600;
  font-size: 14px;
}

.video-sidebar .module-group-header {
  background: #34656D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-sidebar .module-group-title,
.video-sidebar .module-group-progress {
  color: #fff;
}

.video-sidebar .lesson-item {
  background: #f2f2ee;
  color: #334443;
  border-bottom: 1px solid #d7d1c5;
}

.video-sidebar .lesson-item:hover,
.video-sidebar .lesson-item.active {
  background: #e6e1d6;
}

.video-sidebar .lesson-title {
  color: #334443;
}

.video-sidebar .lesson-thumbnail {
  border-color: #c9b48b;
}

.video-sidebar .lesson-checkbox {
  background: #6b8f95;
}

.video-sidebar .lesson-checkbox.checked::before {
  color: #fff;
}

.back-to-dash {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #34656D;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
}

.main-video-area {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.video-info-header {
  margin-top: 25px;
}

.video-info-header h1 {
  font-size: 32px;
  color: #334443;
  margin-bottom: 30px;
}

/* Tabs do Conteúdo */
.video-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 5px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: #34656D;
  border-bottom-color: #34656D;
}

.video-tab-btn {
  padding: 10px 5px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
}

.video-tab-btn.active {
  color: #34656D;
  border-bottom-color: #34656D;
}

.tab-content { display: none; animation: fadeIn 0.3s; }
.tab-content.active { display: block; }

.video-tab-content { display: none; animation: fadeIn 0.3s; }
.video-tab-content.active { display: block; }

.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }
  .video-tabs { flex-wrap: wrap; gap: 16px; }
}

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }

/* Grid de Aulas */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.lesson-thumb {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.lesson-img { height: 140px; background: #333132; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; }
.lesson-meta { padding: 15px; }
.lesson-meta h4 { font-size: 14px; color: #333; margin-bottom: 5px; }

/* Comentários */
.comments-section {
  background: transparent;
  padding: 25px;
  border-radius: 15px;
}

.comment-input-area {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.comment-input-area input {
  flex: 1;
  padding: 15px;
  border-radius: 25px;
  border: 1px solid #ddd;
  outline: none;
}

.comment-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.comment-avatar { width: 40px; height: 40px; background: #34656D; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.comment-text h5 { font-size: 14px; margin-bottom: 5px; }
.comment-text p { font-size: 14px; color: #555; }

/* Materiais de Apoio */
.material-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: transparent;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}
.material-link i { color: #34656D; font-size: 20px; }

.video-lesson-content {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  color: #334443;
  font-size: 14px;
  line-height: 1.6;
  min-height: 180px;
}

.video-lessons-mobile {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.video-empty {
  color: #7a8b8a;
  font-size: 14px;
  padding: 10px 0;
}

/* ================= SEÇÃO DE DEPOIMENTOS ================= */
.testimonials-section {
  position: relative;
  background: #f2ebd6;
  padding: 30px 32px 100px 32px;
  margin-top: 100px;
  z-index: 1;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="%23f2ebd6"/></svg>');
  background-size: cover;
  background-position: top;
  transform: translateY(-99%);
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,50 Q900,100 600,50 T0,50 Z" fill="%23f2ebd6"/></svg>');
  background-size: cover;
  background-position: bottom;
  transform: translateY(99%);
  z-index: 1;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title-wrapper {
  margin-bottom: 60px;
  position: relative;
}

.testimonials-title {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: #515151;
  line-height: 1.2;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.testimonials-title.slide-in {
  animation: slideInFromLeft 1s ease-out forwards;
}

.testimonials-highlight {
  background: #34656D;
  color: #FAEAB1;
  padding: 2px 8px;
  border-radius: px;
}

.testimonials-subtitle {
  font-family: 'Swirly Canalope', cursive;
  font-size: 120px;
  font-weight: 320;
  color: #34656D;
  line-height: 1;
  margin-top: -30px;
  opacity: 0;
  transform: translateY(-80px);
  z-index: -1;
  position: relative;
  transition: none;
}

.testimonials-subtitle.slide-down {
  animation: slideDownFromBehind 1s ease-out 0.3s forwards;
}

@keyframes slideDownFromBehind {
  from {
    opacity: 0;
    transform: translateY(-80px);
    z-index: -1;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
  }
}

/* Grid de avaliações */
.reviews-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}

.reviews-grid.has-more-content::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 350px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #f2ebd6 100%);
  pointer-events: none;
  z-index: 1;
}

/* Caixa de rating do Google */
.google-rating-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rating-label {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: bold;
  color: #34656D;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.rating-stars i {
  color: #FBBF24;
  font-size: 28px;
}

.rating-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.google-logo {
  width: 80px;
  margin-top: 10px;
}

/* Cards de depoimentos */
.reviews-cards {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.reviews-cards::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #34656D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.review-user-info {
  flex: 1;
}

.review-name {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 2px;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.review-google-icon {
  width: 20px;
  height: 20px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: #FBBF24;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ================= SEÇÃO SOBRE A NUTRICIONISTA ================= */
.about-section {
  position: relative;
  background: #faf8f1;
  padding: 120px 32px 80px 32px;
  margin-top: 0;
  overflow: visible;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z" fill="%23ffffff"/></svg>');
  background-size: cover;
  background-position: top;
  transform: translateY(-99%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.about-image-wrapper {
  position: relative;
  z-index: 50;
}

.about-image {
  width: 200%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-top: -150px;
  margin-left: -250px;
  position: relative;
  z-index: 50;
  filter: blur(10px);
  transform: scale(0.9);
  opacity: 0.3;
  transition: none;
}

.about-image.reveal {
  animation: revealImage 1.5s ease-out forwards;
}

@keyframes revealImage {
  0% {
    filter: blur(10px);
    transform: scale(0.9);
    opacity: 0.3;
  }
  100% {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.about-content {
  padding-top: 20px;
}

.about-title {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 42px;
  color: #515151;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.about-title.slide-in {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.about-highlight {
  background: #FAEAB1;
  padding: 2px 8px;
  border-radius: 4px;
}

.about-name {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 15px;
  margin-top: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.about-name.slide-in {
  animation: slideInFromLeft 0.8s ease-out 0.2s forwards;
}

.about-crn {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.about-crn.slide-in {
  animation: slideInFromLeft 0.8s ease-out 0.3s forwards;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: none;
}

.about-text.slide-in {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.about-text:nth-of-type(2).slide-in {
  animation-delay: 0.4s;
}

.about-text:nth-of-type(3).slide-in {
  animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navegação Mobile Reviews */
.reviews-nav-mobile {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
  padding-left: 340px;
  position: relative;
  z-index: 1000;
}

.reviews-nav-mobile .nav-arrow {
  cursor: pointer;
  color: #34656D;
  font-size: 24px;
  transition: transform 0.2s;
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.reviews-nav-mobile .nav-arrow:hover {
  transform: scale(1.1);
}

/* ================= RODAPÉ ================= */
.footer {
  background: #FAF8F1;
  padding: 60px 32px 30px 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 3px;
  background: #faeab1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-column h4 {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #515151;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #34656D;
}

.footer-bottom {
  text-align: right;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-copyright {
  font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #34656D;
  font-weight: 500;
}

/* ================= RESPONSIVIDADE ================= */
@media(max-width: 768px) {
  .background-hero {
    background-position: 25% 35%;
    background-size: 250%; /* O primeiro valor é horizontal, o segundo é vertical */
  }
  .hero-container { min-height: 45vh; margin-top: -60px; }
  .hero { padding: 120px 20px 40px 20px; align-items: center; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero .btn-hero { margin-left: 0; align-self: center; padding: 10px 30px; font-size: 13px; max-width: 280px; }

  .banners-cta-section h2 { font-size: 36px; margin-top: -50px;}
  .banners-cta-section { padding-left: 0; padding-right: 0; padding-top: 50px; text-align: center; }
  .banners-cta-section h2, .btn-cta-orange { padding: 8px 18px; }
  .btn-cta-orange, .btn-app, .btn-app-cta { padding: 8px 18px; font-size: 18px; }

  .banner-grid-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: auto;
    gap: 15px;
    padding: 0 20px 10px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .banner-grid-container::-webkit-scrollbar { display: none; }

  .banner-item { flex: 0 0 85%; scroll-snap-align: center; }
  .banner-item:hover { flex: 0 0 85%; }
  
  .banner-img-container { height: 250px; }
  .banner-nav-mobile { display: flex; margin-left: -250px; }

  /* Descrição sempre visível no Mobile */
  .banner-description { opacity: 1; }
  
  .banner-title { text-align: left; }
  .banner-description { text-align: left; }

  .app-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .app-content {
    text-align: center;
    max-width: 100%;
    margin-top: 40px;
  }

  .app-content h2 {
    font-size: 36px;
    justify-content: center;
    align-items: center;
  }

  .method-subtitle {
    font-size: 54px;
  }

  .app-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .app-phone-area {
    gap: 10px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    margin-top: 20px;
  }

  .menu-bar { padding: 8px 20px; }
  .menu { padding: 8px 12px; }
  .logo-container { transform: translateX(5%) translateY(20%); animation: none; }
  .logo-container img { max-height: 56px; }
  .menu-center { display: none; }
  .menu-right .btn-outline { padding: 8px 12px; font-size: 13px; border-radius: 35px; font-weight: 600; border-width: 2px; transform: translateY(30%); }
  .menu-right .btn { display: none; }
  #login-screen { grid-template-columns: 1fr; }
  .login-right { display: none; }
  .pricing-container { flex-direction: column; align-items: center; }
  .pricing-card.side-card { transform: translateY(0); }
  .pricing-card {
    /* Diminui o tamanho para 85% do original */
    transform: scale(0.85); 
    
    /* Remove margens negativas que podem causar sobreposição com o zoom menor */
    margin: -20px 0; 
    
    /* Garante que o card não tente ocupar mais espaço do que a tela */
    max-width: 320px; 
  }
  .pricing-container{
    gap:70px;
  }
  
  .top-hero-dash {
    padding: 30px 25px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    text-align: center;
    gap: 20px;
  }
  
  .hero-dash-content {
    flex-direction: column;
    max-width: 100%;
    grid-column: 1;
    grid-row: 1 / 4;
    display: contents;
  }
  
  .hero-dash-badge {
    font-size: 11px;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: 6px 10px;
    max-width: fit-content;
    justify-self: center;
  }
  
  .hero-dash-title {
    font-size: 32px;
    grid-column: 1;
    grid-row: 2;
  }
  
  .hero-dash-subtitle {
    margin-top: -50px;
    font-size: 62px;
    grid-column: 1;
    grid-row: 3;
  }
  
  .hero-dash-image-area {
    grid-column: 1;
    grid-row: 4;
    height: 320px;
    margin: -20px;
    margin-left: 150px;
    transform: translateY(5%);
  }
  
  .hero-dash-image {
    margin-left: -170px;
    animation: focusInMobile 1.5s ease-out forwards;
  }
  
  @keyframes focusInMobile {
    from {
      filter: blur(10px);
      transform: scale(1.2);
    }
    to {
      filter: blur(0);
      transform: scale(1.5);
    }
  }
  
  .hero-dash-stars-bg {
    width: 300px;
    height: 300px;
    right: -80px;
    z-index: 0;
    opacity: 0.6;
  }
  
  .hero-dash-text {
    font-size: 16px;
    line-height: 1.8;
    grid-column: 1;
    grid-row: 5;
    margin-top: 30px;
    max-height: 150px;
    overflow: hidden;
  }
  
  .hero-dash-button {
    grid-column: 1;
    grid-row: 6;
    background: #34656D;
    color: #FAF8F1;
    align-self: center;
    justify-self: center;
    padding: 10px 20px !important;
    font-size: 16px;
    max-width: 200px;
    width: auto;
  }
  
  .testimonials-section {
    padding: 50px 20px 60px 20px;
    margin-top: 60px;
  }
  
  .testimonials-section::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,60 Q300,30 600,60 T1200,60 L1200,100 L0,100 Z" fill="%23f2ebd6"/></svg>');
  }
  
  .testimonials-section::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,0 L1200,0 L1200,40 Q900,70 600,40 T0,40 Z" fill="%23f2ebd6"/></svg>');
  }
  
  .testimonials-title {
    font-size: 35px;
  }
  
  .testimonials-subtitle {
    font-size: 70px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .google-rating-box {
    padding: 30px 20px;
  }
  
  .rating-label {
    font-size: 24px;
  }
  
  .reviews-cards {
    padding: 0 20px 10px 20px;
    margin: 0 -20px;
  }
  
  .reviews-cards::-webkit-scrollbar {
    display: none;
  }
  
  .review-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: center;
  }
  
  .reviews-grid.has-more-content::after {
    display: none;
  }
  
  .reviews-nav-mobile {
    justify-content: flex-start;
    padding-left: 20px;
  }
  
  .about-section {
    padding: 60px 20px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image-wrapper {
    display: none;
  }
  
  .about-image {
    max-width: 300px;
    margin: 0 auto;
    display: none;
  }

  .about-title {
    font-size: 34px;
  }
  
  .about-name {
    max-width: 240px;
  }
  
  .about-text {
    font-size: 16px;
    line-height: 1.8;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo img {
    max-width: 120px;
  }
  
  .footer-column h4 {
    font-size: 16px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
}

@media(min-width: 769px) {
  .about-content {
    transform: translateX(10%);
  }

  .menu-right {
    transform: translateX(80%);
  }
}
