/* ======== BASE ======== */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #eaf2f8;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  background-image: url('images/ceu.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* ======== SEÇÕES PRINCIPAIS ======== */
.section-container {
  width: 100%;
  min-height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.section-container.active {
  display: flex;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ======== SEÇÃO DO VÍDEO ======== */
#video-section {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.video-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 20px;
}

#intro-video {
  width: 100%;
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#continue-btn {
  width: 100%;
  max-width: 90vw;
  margin-top: 20px;
  padding: 15px 20px;
  font-size: 18px;
  background: #27ae60;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

#continue-btn:hover {
  background: #219150;
}

/* ======== POPUP DO BRINDE ======== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  animation: slideIn 0.4s ease;
}

.popup-header h2 {
  color: #27ae60;
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gift-icon {
  font-size: 60px;
  margin: 20px 0;
  animation: bounce 1s infinite;
}

.popup-body h3 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 15px;
}

.popup-body p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.popup-body ul {
  text-align: left;
  max-width: 350px;
  margin: 20px auto;
  padding: 0;
}

.popup-body li {
  color: #2c3e50;
  font-size: 14px;
  margin-bottom: 8px;
  list-style: none;
}

.highlight {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white !important;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  margin-top: 20px !important;
}

.popup-button {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ======== SEÇÃO DO QUIZ ======== */
#quiz-section-main {
  padding: 10px;
  background: transparent;
  width: 100%;
}

#quiz-section-main .container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.quiz-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* ======== SEÇÃO DO RESULTADO ======== */
#result-section {
  padding: 40px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

#result-section .container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

#resultado-final {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.resultado-final-ocontainer {
  text-align: center;
}

.bloco-transformacao {
  margin-bottom: 30px;
}

.bloco-transformacao h2 {
  color: #27ae60;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.bloco-transformacao h3 {
  color: #2c3e50;
  font-size: 22px;
  margin: 25px 0 15px 0;
  line-height: 1.4;
}

.bloco-transformacao p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mensagem-destacada {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid #27ae60;
  font-size: 17px;
  line-height: 1.7;
  color: #2c3e50;
  margin: 25px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ======== OFERTA VISUAL ======== */
.price-box {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 25px;
  border-radius: 15px;
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
  text-align: center;
}

.price-box del {
  font-size: 18px;
  opacity: 0.8;
}

/* ======== BOTÕES CTA ======== */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #43d136, #06a3eb);
  color: white;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(60, 205, 231, 0.4);
  filter: brightness(1.1);
}

/* ======== ELEMENTOS VISUAIS ======== */
.mockup-ebook {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.garantias {
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.garantias:hover {
  transform: scale(1.1);
}

/* ======== COMPARATIVO ======== */
.comparativo-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.comparativo-box h3 {
  color: #2c3e50;
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
}

.comparativo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 25px 0;
}

.lado {
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.lado.negativo {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  border-left: 4px solid #e74c3c;
}

.lado.positivo {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  border-left: 4px solid #27ae60;
}

.lado h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.lado ul {
  list-style: none;
  padding: 0;
}

.lado li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

/* ======== FAQ ======== */
.faq-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-box h3 {
  color: #2c3e50;
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h4 {
  color: #27ae60;
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
  
  .video-wrapper {
    margin: 0 10px;
    width: calc(100% - 20px);
  }
  
  #intro-video {
    max-width: 95vw;
    height: auto;
  }
  
  #continue-btn {
    max-width: 95vw;
    font-size: 16px;
    padding: 12px 20px;
  }
  
  #quiz-section-main {
    padding: 5px;
  }
  
  .quiz-container {
    padding: 15px;
    margin: 5px;
  }
  
  #resultado-final {
    padding: 20px 15px;
    margin: 5px;
    width: calc(100% - 10px);
  }
  
  .bloco-transformacao h2 {
    font-size: 22px;
    line-height: 1.2;
  }
  
  .bloco-transformacao h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .price-box {
    font-size: 18px;
    padding: 15px;
    margin: 20px 0;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    max-width: 300px;
    margin: 15px auto;
    display: block;
    text-align: center;
  }
  
  .comparativo-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .mockup-ebook {
    max-width: 200px;
    width: 80%;
  }
  
  .garantias {
    width: 70px;
    margin: 0 5px;
  }
  
  img[style*="height: 100px"] {
    height: 80px !important;
  }
}

@media (max-width: 480px) {
  #result-section {
    padding: 10px 5px;
  }
  
  .video-wrapper {
    margin: 0 5px;
    width: calc(100% - 10px);
  }
  
  #intro-video {
    max-width: 98vw;
  }
  
  #continue-btn {
    max-width: 98vw;
    font-size: 15px;
    padding: 10px 15px;
  }
  
  .quiz-container {
    padding: 10px;
    margin: 2px;
  }
  
  #resultado-final {
    padding: 15px 10px;
    margin: 2px;
    width: calc(100% - 4px);
  }
  
  .bloco-transformacao h2 {
    font-size: 20px;
  }
  
  .bloco-transformacao h3 {
    font-size: 16px;
  }
  
  .mensagem-destacada {
    padding: 15px;
    font-size: 15px;
  }
  
  .price-box {
    font-size: 16px;
    padding: 12px;
  }
  
  .cta-button {
    font-size: 14px;
    padding: 10px 15px;
  }
  
  .mockup-ebook {
    max-width: 180px;
    width: 70%;
  }
  
  .comentários {
    width: 60px;
    margin: 0 3px;
  }
  
  img[style*="height: 100px"] {
    height: 60px !important;
  }
}

/* ======== CORREÇÕES GERAIS PARA MOBILE ======== */
img, video, iframe, embed, object {
  max-width: 100% !important;
  height: auto !important;
}

.quiz-container h1 {
  font-size: 24px !important;
  line-height: 1.3;
  text-align: center;
  margin: 15px 0;
}

.quiz-container .options button {
  width: 100%;
  max-width: none;
  margin: 5px 0;
  padding: 12px 15px;
  font-size: 16px;
  word-wrap: break-word;
  white-space: normal;
}

.progress {
  width: 100%;
  margin: 15px 0;
}

.progress-bar {
  transition: width 0.3s ease;
}

/* Garantir que nenhum elemento cause overflow */
* {
  max-width: 100%;
}

@media (max-width: 320px) {
  .quiz-container {
    padding: 8px;
  }
  
  .bloco-transformacao h2 {
    font-size: 18px;
  }
  
  .price-box {
    font-size: 14px;
    padding: 10px;
  }
  
  .cta-button {
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* ======== COMENTÁRIOS ======== */
.fb-comments {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.fb-comments h3 {
  color: #2c3e50;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #27ae60;
  padding-bottom: 10px;
}

/* Formulário de comentário */
.comment-form {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 2px dashed #27ae60;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

#user-name {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s ease;
}

#user-name:focus {
  outline: none;
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

#add-comment-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

#add-comment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

#user-comment {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.3s ease;
}

#user-comment:focus {
  outline: none;
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Comentários existentes */
#comments-container {
  max-height: 400px;
  overflow-y: auto;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.comment-item:hover {
  background-color: rgba(39, 174, 96, 0.05);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #27ae60;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.comment-avatar:hover {
  transform: scale(1.1);
}

.comment-content {
  flex: 1;
}

.comment-content p {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.4;
}

.comment-content strong {
  color: #27ae60;
  font-weight: bold;
}

.comment-meta {
  color: #6c757d;
  font-size: 12px;
  font-style: italic;
}

/* Comentário novo (animação) */
.comment-item.new {
  animation: slideInComment 0.5s ease;
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.05));
  border-left: 4px solid #27ae60;
  padding-left: 15px;
  border-radius: 8px;
}

@keyframes slideInComment {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade dos comentários */
@media (max-width: 768px) {
  .fb-comments {
    padding: 20px;
    margin: 30px 0;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  #add-comment-btn {
    width: 100%;
  }
  
  .comment-item {
    gap: 12px;
  }
  
  .comment-avatar {
    width: 45px;
    height: 45px;
  }
  
  .comment-content p {
    font-size: 14px;
  }
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: white; /* se for fundo branco */
}


/* ======== QUIZ CONTAINER ======== */
.quiz-container {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.question {
  font-size: 20px;
  margin-bottom: 10px;
}

.logo-nome {
  font-size: px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}


.options button {
  display: block;
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  border: none;
  background-color: #2980b9;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.options button:hover {
  background-color: #05ad59;
}

.progress {
  margin: 20px 0;
  height: 10px;
  background: #ccc;
  border-radius: 5px;
}

.progress-bar {
  height: 8px;
  background-color: #27ae60;
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}


.price-box {
  background: #fff3f3;
  border: 2px dashed #20c711;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  color: #37dd15;
  font-weight: bold;
  margin-top: 20px;
}

.timer {
  position: absolute;
  top: 10px;
  font-size: 14px;
  color: #e74c3c;
  background-color: #fff3f3;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* ======== RESULTADO FINAL ======== */
.resultado-final-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.resultado-final-container h2 {
  font-size: 26px;
  color: #2980b9;
  margin-bottom: 15px;
}

.mensagem-destacada {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  color: #34495e;
}

.bloco-transformacao {
  background-color: #ecf0f1;
  border-left: 4px solid #27ae60;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: left;
}

.bloco-transformacao h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.mockup-ebook {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}



/* ======== COMPARATIVO DE OFERTA ======== */
.comparativo-box {
  background-color: #ffffff;
  border: 2px solid #2980b9;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 800px;
}

.comparativo-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #2c3e50;
}

.comparativo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.lado {
  flex: 1 1 300px;
  background: #ecf0f1;
  padding: 20px;
  border-radius: 10px;
  min-height: 280px;
  box-sizing: border-box;
}

.lado h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.lado ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lado ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.lado.negativo {
  background-color: #fdecea;
  border-left: 5px solid #e74c3c;
}

.lado.positivo {
  background-color: #e8f8f5;
  border-left: 5px solid #27ae60;
}

/* ======== BOTÃO CTA UNIFICADO ======== */
.cta-button {
  background-color: #27ae60;
  color: rgb(239, 239, 239);
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin: 15px auto;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 80%;
  width: 300px;
}

.cta-button:hover {
  background-color: #219150;
}


/* ======== COMENTÁRIOS ======== */
.fb-comments img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.fb-comments div {
  margin-bottom: 10px;
}

/* ======== MODAL ======== */
#promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  text-align: center;
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
}

.modal-content h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.modal-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ======== FOOTER ======== */
footer {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  color: #7f8c8d;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .comparativo-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
    font-size: 16px;
  }

  .timer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .quiz-container,
  .resultado-final-container,
  .comparativo-box {
    padding: 15px;
  }
}

.faq-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-box h3 {
  text-align: center;
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border-left: 4px solid #2980b9;
  padding-left: 15px;
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #34495e;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Adicionando estilos para botões */
button {
  max-width: 100%; /* Garante que o botão não ultrapasse o contêiner */
  width: auto; /* Ajusta automaticamente ao conteúdo */
  padding: 10px 20px; /* Espaçamento interno */
  box-sizing: border-box; /* Inclui padding e bordas no tamanho total */
  font-size: 16px; /* Tamanho da fonte ajustável */
  border: none; /* Remove bordas padrão */
  border-radius: 5px; /* Bordas arredondadas */
  background-color: #2980b9; /* Cor de fundo */
  color: white; /* Cor do texto */
  cursor: pointer; /* Cursor de ponteiro ao passar o mouse */
}

button:hover {
  background-color: #1f6391; /* Cor de fundo ao passar o mouse */
}

@media (max-width: 768px) {
  button {
    width: 100%; /* Em telas menores, o botão ocupa toda a largura do contêiner */
    font-size: 14px; /* Reduz o tamanho da fonte para telas pequenas */
  }
}

.resultado-final-ocontainer {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

