:root { --bar: #084EB1; }

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--bar);
  height: 100%;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: none;
  touch-action: manipulation;
  overflow-y: scroll;
  font-family: 'Segoe UI', sans-serif;
  padding-bottom: env(safe-area-inset-bottom);
  /* para iPhones com notch */
}

/* Para a página toda */
body {
  overflow: scroll;
  /* scroll continua funcionando */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari e Opera */
}


.name,
.subtitle {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}

/* TELA 1 - BIO https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1200&q=80*/

.section.bio {
background-color: var(--bar);
  background: url('https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.profile-pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid #000;
  object-fit: cover;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.name {
  font-size: 1.8rem;
  font-weight: bold;
}

.subtitle {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 10px;
}

.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.4rem;
  /* text-decoration: none; */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* TELA 2 - APPS */
.section.apps {
  background: #f9f9f9;
}

.logo {
  width: 200px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.logo_ {
  width: 260px;
  height: auto;
  /* border-radius: 50%; */
  margin-bottom: 20px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); */
}

.app-button {
  background: #fff;
  border-radius: 30px;
  padding: 12px 20px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.app-button:hover {
  transform: scale(1.03);
}

.app-button img {
  width: 42px;
  height: 42px;
  margin-right: 15px;
  border-radius: 50%;
  object-fit: cover;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.apk-download-button {
  display: inline-block;
  background-color: #2196f3;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.apk-download-button:hover {
  background-color: #2196f3;
}

.download-link img {
  width: 160px;
  height: 50px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-link img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* TELA 3 - SERVIÇOS */
.section.services {
  background: #ffffff;
}

/* TELA 4 - CONTATO */
.section.contact {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: #f9f9f9;
  /* altura segura em iOS */
  padding: 20px;
  box-sizing: border-box;
}

.contact-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centraliza verticalmente */
  align-items: center;
  text-align: center;
}

.contact-wrapper h2 {
  margin-bottom: 20px;
}

form {
  width: 100%;
  max-width: 600px;
}


form label {
  display: block;
  margin: 10px 0 5px;
  color: #2196f3;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 7px;
  transition: border-color 0.3s;
  box-shadow: 0.3s;
}

form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 7px;
  margin-bottom: 10px;
}

textarea {
  min-height: 7.5rem;
  resize: vertical;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: #2196f3;
}

form button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 7px;
  transition: 0.3s;
  align-self: flex-end;
}


button:hover,
button:focus {
  background-color: #2196f3;
  outline: none;
}

button:disabled {
  cursor: not-allowed;
  background: #c6c6c6;
}

.success {
  color: #2196f3;
  text-align: center;
  margin-top: 50px;
}

.erro {
  color: tomato;
  text-align: center;
  margin-top: 50px;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  display: flex;
  position: fixed;
  bottom: 56px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 24px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0 10px #00000030;
}


.scroll-indicator {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0.9;
  animation: bounce 1.5s infinite;
  z-index: 999;
  cursor: pointer;
  transition: opacity 0.3s;
  pointer-events: all;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

footer {
  white-space: nowrap;
  /* Impede que o texto quebre linha */
  overflow: hidden;
  /* Evita que transborde */
  text-overflow: ellipsis;
  /* Se precisar, coloca "..." no final */
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  /* Fonte responsiva */
  text-align: center;
  width: 100%;
  padding: 10px 15px;
  color: #666;
  background-color: transparent;
  /* Ou ajuste conforme seu layout */
}

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1051;
  background: #084EB1;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 20px;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: right 0.3s ease-in-out;
  padding: 20px;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0;
}

.offcanvas-menu li {
  margin: 20px 0;
}

.offcanvas-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}