:root {
  --primary: #ffc107;
  --dark: #000;
  --light: #111;
  --text: #fff;
  --gray: #ccc;
  /* ajuste aqui o tamanho padrão do slide */
  --slider-width: 500px; /* largura fixa do slide */
  --slider-height: 300px; /* altura fixa do slide */
  --transition: 500ms;
  --dot-size: 10px;
}
html {
  font-family: sans-serif;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.text-center {
  text-align: center;
}

.color-white {
  color: #fff;
}

.box-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 35px 15px;
  width: 100%;
}

@media screen and (min-width: 1380px) {
  .box-container {
    flex-direction: row;
  }
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Camada opaca sobre a imagem de fundo */
.flip-box-front, .flip-box-back {
  position: relative; /* Garantir que a camada overlay se posicione corretamente sobre a imagem de fundo */
}

/* Criando uma camada opaca utilizando ::before */
.flip-box-front::before, .flip-box-back::before {
  content: ''; /* Necessário para criar o pseudo-elemento */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Camada opaca com 50% de transparência */
  z-index: 1; /* Coloca a camada abaixo do conteúdo */
}

/* Manter o conteúdo acima da camada opaca */
.flip-box .inner {
  position: relative;
  z-index: 2; /* Conteúdo fica acima da camada opaca */
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;

  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box-header {
  font-size: 34px;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  padding: 15px 20px;
  text-transform: uppercase;
}


body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
p {
  font-size: 14px;
  letter-spacing: 0.8px;
}
.nav-item a {
  font-size: 20px;
}
.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 10;
  max-width: 900px;
}

.overlay-content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centraliza nos dois eixos */
  background-color: rgba(240, 248, 255, 0.6); /* fundo semitransparente */
  color: white;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
}

.overlay-content h2 {
  font-size: 2.4rem;
  font-weight: bold;
}

.overlay-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.overlay-content a {
  font-size: 1.4rem;
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

#mainCarousel {
  width: 100%;
  max-height: 400px;
  position: relative;
  overflow: hidden;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.video-parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-parallax-section .container {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* contraste para legibilidade */
  border-radius: 12px;
  padding: 2rem;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-box {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 2rem;
  color: #ffc107;
}

.stat-label {
  font-weight: bold;
  color: #ffd93d;
}

.btn-plan {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  width: 100%;
  margin: 20px 0;
}

.planos-container {
  padding: 60px 20px;
}

.badge-destaque {
  background: var(--primary);
  color: #000;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.card {
  background: var(--light);
  border: 1px solid #333;
  border-radius: 16px;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 30px;
}

#mini-card {
  min-height: 400px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.card-infos {
  height: 460px;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(255, 217, 61, 0.15);
}

.card-header {
  background: #222;
  padding: 20px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.card-header.gold {
  background: var(--primary);
  color: #000;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: var(--gray);
}

.discount {
  color: #27ae60;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0 20px;
}

.feature-list li {
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px dashed #444;
}

.feature-list li:before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  margin-right: 8px;
}

.btn-plan {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  width: 100%;
  margin: 20px 0;
}

.btn-plan:hover {
  background: #ffd93d;
  transform: scale(1.05);
}

.comparison h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 30px;
}

label {
  display: block;
  margin: 15px 0 8px;
  color: #ccc;
  font-size: 0.9rem;
}
#robo-sobre {
  padding: 0 20px 0 0;
}
.udoor-footer {
  background: #000;
  color: #ccc;
  font-family: "Segoe UI", sans-serif;
  padding-top: 60px;
  border-top: 1px solid #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
}

.footer-brand h3 {
  color: #ffc107;
  font-size: 1.8rem;
  margin: 0 0 15px;
}

.footer-brand h3 i {
  margin-right: 8px;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-info {
  flex: 2;
  min-width: 300px;
}

.footer-info h4 {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-info ul li {
  margin-bottom: 4px;
}

.footer-info a {
  color: #ffd93d;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-social {
  text-align: center;
}

.footer-social h4 {
  color: #ffd93d;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #222;
  border-radius: 50%;
  color: #ffd93d;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ffd93d;
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .overlay-content {
    left: 0%;
    max-width: 90%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .overlay-content h2 {
    font-size: 1.6rem;
  }

  .overlay-mascote {
    width: 100px;
    bottom: 5%;
  }
  .video-parallax-section .container {
    padding: 1rem;
  }

  .stat-box {
    max-width: 100%;
  }

  #robo-sobre {
    padding-bottom: 20px;
  }
}
