/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

/* Typography */
.font-display {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
}

.font-body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 3rem;
  width: auto;
}

.nav-menu-desktop {
  display: none;
  margin-left: 2.5rem;
  align-items: baseline;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu-desktop {
    display: flex;
  }
}

.nav-item {
  background: none;
  border: none;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02rem;
  font-size: 0.875rem;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav-item:hover {
  color: #ff520e;
}

.nav-item.active {
  color: #ff520e;
  border-bottom-color: #ff520e;
}

.nav-mobile-toggle {
  display: block;
}

@media (min-width: 768px) {
  .nav-mobile-toggle {
    display: none;
  }
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: #ff520e;
}

.nav-mobile-menu {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
  .nav-mobile-menu {
    display: none !important;
  }
}

.mobile-menu-content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item-mobile {
  background: none;
  border: none;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0.75rem;
  text-align: left;
  border-radius: 0.375rem;
}

.nav-item-mobile:hover {
  color: #ff520e;
  background-color: #f5f5f5;
}

.nav-item-mobile.active {
  color: #ff520e;
  background-color: rgba(255, 82, 14, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: #ff520e;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e6470c;
}

.btn-outline {
  background-color: transparent;
  color: #e6470c;
  border: 1px solid #e5e5e5;
}

.btn-outline:hover {
  background-color: #f5f5f5;
  color: #ff520e;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* HOME */
.section-home {
  padding-top: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;

  /* 🔽 Aqui entra o fundo */
  background: url("Imagens/close-em-barris-de-vinho-metalicos-em-uma-vinicola.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  /* dá efeito parallax */
  color: #ffffff;
  /* deixa os textos brancos por cima do fundo */
  position: relative;
  z-index: 1;
}

.section-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* escurece para dar contraste no texto */
  z-index: -1;
}

.conteudo-home {
  /* background: rgba(228, 225, 225, 0.1); fundo preto semi-transparente */
  padding: 2rem;
  border-radius: 12px;
  /* cantos arredondados */
  max-width: 800px;
  /* largura máxima do bloco */
  margin: 0 auto;
  /* centraliza */
  text-align: center;
  /* centraliza o conteúdo */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); sombra suave */
}


.home-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  line-height: 5rem;
}

@media (min-width: 768px) {
  .home-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .home-title {
    font-size: 4.5rem;
  }
}

.title-highlight {
  color: #ff520e;
  display: block;
}

.descricao-home {
  font-size: 1.125rem;
  color: #ffffff;
  max-width: 48rem;
  margin: 0 auto 2rem auto;
}

@media (min-width: 768px) {
  .descricao-home {
    font-size: 1.25rem;
  }
}

.home-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .home-buttons {
    flex-direction: row;
  }
}

/* Modal custom */
.modal-content {
  border: none;
  border-radius: 1rem;
}

.modal-header {
  background-color: #ff520e;
  color: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.modal-title {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-close {
  filter: brightness(0) invert(1);
}

.form-control:focus {
  border-color: #ff520e;
  box-shadow: 0 0 0 0.25rem rgba(255, 82, 14, 0.25);
}

/* Sobre Section */
.section-sobre {
  padding: 5rem 0;
  background-color: rgba(245, 245, 245, 0.3);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-content {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.875rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-text {
  color: #666666;
  margin-bottom: 1.5rem;
}

.visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-content {
  position: relative;
  text-align: center;
}

.visual-content img {
  align-items: center;
  width: 27rem;
  height: 35rem;
  border-radius: 1rem;
}

.quadrado-vermelho {
  position: absolute;
  top: 160px;
  /* Ajuste a posição conforme necessário */
  left: 137.25px;
  width: 158px;
  height: 110px;
  z-index: 10;
  background-color: #f0f0f0;
  
  /* background-color: red; */
}

.visual-icon {
  width: 6rem;
  height: 6rem;
  color: #ff520e;
  margin: 0 auto 1rem auto;
}

.visual-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #000000;
}

.visual-subtitle {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #ff520e;
}

/* Serviços Section */
.section-servicos {
  padding: 5rem 0;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #ff520e;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ff520e;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.875rem;
  color: #666666;
}

/* iPhone Mockup */
.iphone-container {
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  position: relative;
}

.iphone-frame {
  position: relative;
  width: 16rem;
  height: 32.5rem;
  background-color: #000000;
  border-radius: 3rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1.5rem;
  background-color: #000000;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  z-index: 10;
}

.iphone-content {
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 82, 14, 0.1), rgba(255, 82, 14, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.app-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-icon {
  width: 4rem;
  height: 4rem;
  background-color: #ff520e;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.app-icon-svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.app-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
  color: #000000;
}

.app-description {
  font-size: 0.75rem;
  color: #666666;
  text-align: center;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-bar {
  height: 0.5rem;
  background-color: rgba(255, 82, 14, 0.2);
  border-radius: 9999px;
}

.progress-fill {
  height: 0.5rem;
  background-color: #ff520e;
  border-radius: 9999px;
  transition: width 0.3s;
}

.video-overlay {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  border-radius: 2.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.iphone-mockup:hover .video-overlay {
  opacity: 1;
}

.video-content {
  text-align: center;
}

.play-button {
  width: 3rem;
  height: 3rem;
  background-color: #ff520e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 0.5rem solid #ffffff;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  margin-left: 0.125rem;
}

.video-text {
  font-size: 0.75rem;
  color: #000000;
}

/* CONTATO SECTION */
.section-contato {
  padding: 5rem 0;
  background-color: rgba(245, 245, 245, 0.3);
}

.contato-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contato-header .section-text {
  max-width: 32rem;
  margin: 0 auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  /*  colunas */
  align-items: stretch;
  /* alinha no topo */
  margin-top: 2rem;
}

.contact-form-container {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.375rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff520e;
  box-shadow: 0 0 0 3px rgba(255, 82, 14, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 1rem;
}

.info-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.info-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #ff520e;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-title {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.info-description {
  color: #666666;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin: 0 auto 1rem auto;
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  /* distância do fundo */
  right: 20px;
  /* distância da direita */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 999;
  /* garante que fica acima de tudo */
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}