/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

:root {
  /* Cores principais baseadas no layout */
  --primary-dark: #092128;
  --primary-green: #2d4a3e;
  --accent-orange: #e17446;
  --accent-orange-hover: #e55a2b;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-dark: #212529;
  --button-green: #6da69d;
  --text-light: #e7e9e2;
  --wpp-green: #25d366;

  /* Tipografia */
  --font-family: "Lexend", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Breakpoints */
  --mobile: 768px;
  --tablet: 1024px;
  --desktop: 1200px;

  /* Transições */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-xxl: 24px;
  --radius-xxlg: 100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== UTILITÁRIOS ===== */
.container {
  max-width: var(--desktop);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: var(--transition-normal);
  height: 90px;
}

.container.border-bottom {
  border-bottom: 1px solid var(--text-light);
  max-width: 1300px;
  transition: border-bottom 0.3s ease;
}

.container.hide-border {
  border-bottom: none;
}

header.header.scrolled {
  background: var(--primary-dark);
}

.navbar {
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand .logo {
  height: 60px;
  width: auto;
  margin-bottom: 5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-orange);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition-fast);
}

.nav-link:focus {
  outline: none;
}

.nav-link:hover::after {
  width: 100%;
}

/* Menu mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition-fast);
}

.menu-cta {
  display: none;
}

/* ===== SEÇÃO HERO ===== */
.hero {
  background: var(--primary-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 824px;
  background: url("../images/fundoBanner.webp");
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  padding-top: 200px;
  max-width: 1450px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 80%;
  max-width: 790px;
  animation: fadeInUp 1s ease-out;
}

.hero-text {
  position: relative;
  z-index: 2;
  flex: 1 1 20%;
  max-width: 490px;
  animation: fadeInUp 1s ease-out;
  padding-top: 125px;
}

.hero-title {
  font-size: 65px;
  font-weight: var(--font-weight-bold);
  color: var(--text-light);
  line-height: 100px;
  margin-bottom: var(--spacing-md);
  letter-spacing: -2px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
  font-weight: 200;
}

.hero-description-secondary {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 200;
}

/* ===== BOTÕES ===== */
.cta-button {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: #e17446;
  color: #092128;
  border-radius: var(--radius-xxlg);
  padding: 20px 66px;
  font-weight: 400;
  font-size: 20px;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.cta-button.secondary:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: translateY(-3px);
}

.cta-button-service {
  background: var(--button-green);
  color: #092128;
  border-radius: var(--radius-xxlg);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 50px;
  transition: all 0.3s ease;
  display: inline-block; /* Ensure transform works */
}

.cta-button-service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.services-cta {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* ===== SEÇÃO SOBRE ===== */

.about-tablet {
  display: none;
}
#sobre {
  display: block;
}
.about {
  padding: 150px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--button-green);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-xxlg);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--button-green);
  text-decoration: none;
}

.section-title {
  font-size: 58px;
  font-weight: var(--font-weight-bold);
  color: #092128;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.rating-text {
  color: #000 !important;
  font-weight: 400 !important;
}

.about-description {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  max-width: 500px;
}

.about-sundescription {
  font-size: 22px;
  color: var(--medium-);
  margin-bottom: var(--spacing-xs);
  line-height: 48.87px;
  font-weight: var(--font-weight-semibold);
}

.about-sundescription.plus {
  line-height: 25px;
}

.about-features {
  list-style: none;
}

.about-features li {
  padding: var(--spacing-xs) 0;
  position: relative;
  padding-left: var(--spacing-lg);
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: var(--font-weight-bold);
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 190%;
  height: auto;
  border-radius: var(--radius-xl);
}

.about-image.desktop {
  display: block;
}
.about-image-mobile.mobile {
  display: none;
}

/* ===== SEÇÃO SERVIÇOS ===== */
.services {
  padding: var(--spacing-xxl) 0;
  background: var(--primary-dark);
  color: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.services-header .section-title {
  color: #e7e9e2;
  margin-bottom: var(--spacing-md);
  font-size: 70px;
  font-weight: 700;
}

.services-header .section-subtitle {
  font-size: 20px;
  color: #e7e9e2;
  max-width: 630px;
  margin: 0 auto;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.service-card {
  padding: var(--spacing-sm);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition-normal);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 130px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  color: #e7e9e2;
}

.service-description {
  color: #e7e9e2;
  line-height: 1.6;
  font-weight: 300;
}

.services-cta {
  text-align: center;
  margin-bottom: 20px;
}

.button-service {
  text-decoration: none;
  font-size: 20px;
  padding: 3px 20px !important;
}
/* ===== SEÇÃO MODELOS ===== */

.model-carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -14px;
  margin-bottom: 51px;
}

.arrow-icon {
  width: 30px;
  height: auto;
  margin: 0 5px;
}

.models {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
}

.models-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xl);
  align-items: end;
  margin-bottom: var(--spacing-xxl);
  align-items: center;
}

.models-header .section-title {
  font-size: 90px;
  color: #000;
  line-height: 90px;
  letter-spacing: -3px;
  font-weight: 800;
}

.models-rating {
  text-align: right;
}

.stars {
  color: var(--accent-orange);
  font-size: 30px;
  margin-bottom: var(--spacing-xs);
  border: 1px solid var(--accent-orange);
  border-radius: var(--radius-xxlg);
  text-align: center;
  width: 175px;
  letter-spacing: 3px;
}

.models-rating p {
  color: #000;
  font-size: 20px;
  text-align: justify;
  line-height: 29px;
  font-weight: 500 !important;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  align-items: baseline;
}

.model-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
}

.model-image {
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.model-title {
  font-size: 60px;
  font-weight: 800;
  color: #000;
  letter-spacing: -3px;
}

.model-description {
  color: #000;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
}

.model-cta {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  background-color: var(--button-green);
  font-size: 20px;
  height: 35px;
  border-radius: 100px;
  padding-top: 3px;
  padding-right: 30px;
  padding-bottom: 3px;
  padding-left: 30px;
  gap: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}
a.model-cta:hover {
  transform: translateY(-3px);
}

/* ===== SEÇÃO CTA ===== */
.cta-section {
  padding: var(--spacing-xxl) 0;
  background: var(--white);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  height: 615px;
  background-image: url(../images/bgsection.webp);
  padding: 71px 92px;
  border-radius: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-content a {
  text-decoration: none;
  font-size: 23px;
}

.cta-content a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-section .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xl);
  align-items: center;
}

.cta-title {
  font-size: 75px;
  font-weight: 600;
  line-height: 100px;
  margin-bottom: -3px;
  margin-bottom: 30px;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.primary-cta-section {
  padding: 15px 50px;
  background: var(--accent-orange);
  color: #000;
  border-radius: var(--radius-xxlg);
  font-weight: var(--font-weight-semibold);
  font-size: 20px;
}

.cta-brand img {
  height: 60px;
  opacity: 0.3;
}

/* ===== SEÇÃO PROCESSO ===== */
.process {
  padding: var(--spacing-xxl) 0;
  background: #e7e9e2;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  justify-content: center;
}

.process-steps .section-title {
  margin-bottom: var(--spacing-xl);
}

.process-title {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

.process-subtitle {
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 3px;
}

.process-help {
  text-decoration: underline;
  font-weight: 300;
  color: #000;
}

.line-stpe {
  position: absolute;
  left: 36px;
  top: 0;
  width: 1px;
  height: 398px;
  background: #000000;
  z-index: -1;
}

.step {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--accent-orange);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 35px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 300;
  color: #000;
}

.step-content p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.code-window {
  background: #092128;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* fundo alternativo para promoções*/
.code-window {
  position: relative;
  overflow: hidden;
}

.promo-seal {
  position: absolute;
  top: 60px;
  right: 25px;
  width: 120px;
  z-index: 10;
}



.code-content {
  padding: var(--spacing-lg);
  overflow-x: auto;
}

.code-content h3 {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: var(--accent-orange);
}

.code-content p {
  font-size: 16px;
  color: var(--text-light);
}

.code-divider {
  border: 1px solid #b4b9c9;
  margin-bottom: var(--spacing-md);
  width: 100%;
  margin-top: var(--spacing-md);
}

.code-content-info {
  color: var(--accent-orange) !important;
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
}

.code-list li {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
  list-style: none;
  font-weight: 300;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-text {
  font-size: 13px !important;
  color: var(--text-light);
  font-weight: var(--font-weight-light) !important;
}

.big-number-code {
  font-size: 30px !important;
}

.code-payment-info {
  margin-top: var(--spacing-sm);
  font-weight: 300 !important;
}

.model-cta-code {
  background: var(--button-green);
  color: var(--white);
  padding: 8px 20px;
  width: 100%;
  font-weight: var(--font-weight-bold);
  margin-top: var(--spacing-lg);
  text-decoration: none;
  border-radius: var(--radius-xxlg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

a.model-cta-code:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-lg);
}

/* ===== OUTROS SERVIÇOS ===== */
.other-services {
  padding: var(--spacing-xxl) 0;
  background-image: url(../images/servicesbg.webp);
  color: var(--white);
  height: 800px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.other-services .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.other-services .section-subtitle {
  text-align: left;
  margin-bottom: var(--spacing-xxl);
  color: var(--accent-orange);
}

.other-services .services-title {
  display: flex;
  justify-content: space-between;
}

.carousel-service {
  position: relative;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 2rem;
}

.other-services .service-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--text-light);
  border-radius: 12px;
  padding: 2rem;
  color: var(--text-dark);
  min-height: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.other-services .service-card h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
  text-align: left;
}

.other-services .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  text-align: left;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-orange);
  border: none;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:focus {
  outline: none;
}

/* ===== SEÇÃO FAQ ===== */
.faq {
  padding: 100px 0;
  background-image: url(../images/faqbg.webp);
  background-repeat: no-repeat;
  background-size: 1500px;
  background-position: left center;
}

a.section-label.button {
  font-size: 20px;
  padding: 3px 20px;
  letter-spacing: -1px;
  font-weight: 400;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

/* Coluna da esquerda - Texto */
.faq-text {
  padding-right: var(--spacing-lg);
}

.faq-text .section-title {
  font-size: 80px;
  font-weight: var(--font-weight-bold);
  color: #000;
  margin-bottom: var(--spacing-md);
  line-height: 80px;
  letter-spacing: 1px;
}

.faq-text .section-subtitle {
  color: #000;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 0;
}

/* Coluna da direita - FAQ */

.faq-list {
  max-width: none;
  margin: 0;
  height: 850px;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
  padding: 20px 0;
  letter-spacing: 0px;
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-orange);
  transition: var(--transition-fast);
  font-weight: var(--font-weight-bold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
  transition: all 0.5s ease-in-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 var(--spacing-md) 0;
  color: #000;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 50px;
  margin-bottom: var(--spacing-lg);
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
  color: var(--accent-orange);
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: var(--spacing-xs);
  font-weight: 300;
  color: var(--text-light);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-list a:hover {
  color: var(--accent-orange);
}

.footer-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  width: 280px;
  margin-top: 30px;
}

.footer-input {
  width: 100%;
  padding: 16px 50px 16px 16px;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.footer-input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.footer-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 18px;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-description-email {
  color: var(--text-light);
  font-weight: 300;
  width: 280px;
  font-size: 15px;
}

.third-column {
  max-width: 290px;
}

.footer-copy {
  margin-top: var(--spacing-lg);
  color: var(--text-light);
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
}

/* ===== OTIMIZAÇÕES DE PERFORMANCE ===== */
/* img {
  max-width: 100%;
  height: auto;
  loading: lazy;
} */

/* Preload de fontes críticas */
@font-face {
  font-family: "Lexend";
  font-display: swap;
}

/* Redução de motion para usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== ESTADOS DE FOCO PARA ACESSIBILIDADE ===== */
/* Remove fundo amarelo/azul do autofill no Chrome, Edge e Safari */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset; /* #1a1a1a = cor de fundo do input */
  transition: background-color 5000s ease-in-out 0s;
}

/* Firefox */
input:-moz-autofill {
  box-shadow: 0 0 0px 1000px transparent inset;
}

/* Remover outline de foco automático, opcional */
input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px transparent inset;
}

#footerNome:-webkit-autofill {
  -webkit-text-fill-color: #fffc;
}
#footerNome:-webkit-autofill:focus {
  -webkit-text-fill-color: #fffc;
}
#footerNome:-moz-autofill {
  -webkit-text-fill-color: #fffc;
}

#footerEmail:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset; /* cor de fundo do input */
  -webkit-text-fill-color: #fffc; /* cor da fonte desejada */
  transition: background-color 5000s ease-in-out 0s;
}

#footerEmail:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: #fffc;
}

#footerEmail:-moz-autofill {
  box-shadow: 0 0 0px 1000px transparent inset;
  -moz-text-fill-color: #fffc;
}

.footer-column.third-column .footer-list a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-column.third-column .footer-list img {
  width: auto;
  max-width: 18px;
  height: auto;
}
/* button:focus,
a:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
} */

/* ===== SCROLL SUAVE ===== */
html {
  scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.loaded {
  opacity: 1;
  transform: translateY(0);
}

/*======== MOBILE =========*/

/* wpp flutuante*/
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wpp-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  z-index: 9999;
}

.whatsapp-float i {
  font-size: 28px;
  line-height: 1;
}

/* popup*/
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-conteudo {
  background: #092128;
  border-radius: 8px;
  padding: 80px 20px 10px;
  width: 900px;
  height: 630px;
  position: fixed; /* Garante que a posição seja relativa à janela */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fechar {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 28px;
  color: #6da69d;
  font-weight: bold;
}

.fechar:hover {
  color: var(--accent-orange);
}

.title-popup {
  font-weight: 600;
  font-size: 38px;
  line-height: 100%;
  text-align: center;
  color: var(--accent-orange);
  margin-bottom: 30px;
}

.subtitle-popup {
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #6da69d;
}

.promotemp {
  font-family: "Lexend";
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e7e9e2;
  margin-top: 30px;
}

.promotemponumber {
  font-family: "Lexend";
  font-weight: 400;
  font-style: Regular;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #6da69d;
}

.cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
  max-width: 100%;
}

.card1,
.card2 {
  flex-shrink: 0;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cardHover {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cardHover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.separador {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.separador span {
  font-size: 32px;
  font-weight: bold;
  color: #e7e9e2;
  padding: 0 20px;
}

.logo-popup {
  text-align: center;
  margin-top: 20px;
}

.logo-popup img {
  width: 150px;
  height: auto;
}

.footer i.fa-solid.fa-chevron-down {
  display: none;
}

.border-radius-card-one {
  border-radius: 20px;
}

/*==========================*/
/* estilização popup desk e mobile sessão de modelos*/
/*==========================*/

.popup-modelo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 33, 40, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.popup-modelo-conteudo {
  position: relative;
  background: #092128;
  border-radius: 18px;
  padding: 10px;
  max-width: 800px;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-modelo-imagem {
  width: 100%;
  height: auto;
  border-radius: 18px;
  cursor: pointer;
}

.fechar-modelo {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.fechar-modelo:hover {
  color: var(--accent-orange);
}

.popuptemp1 {
  color: #e17446;
  font-family: "Lexend";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 38px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 20px;
}

.popuptemp2 {
  color: #6da69d;
  font-family: "Lexend";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 31px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 20px;
}

.popuptemp3 {
  color: #e7e9e2;
  font-family: Lexend;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 20px;
  max-width: 267px;
}

.popuptemp4 {
  font-family: Lexend;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #e7e9e2;
}

.popup-logo img {
  width: 135px;
  margin-top: 50px;
  margin-left: 10px;
}

.popup-container-colunas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
}

.coluna-texto-form {
  flex: 1;
}

.coluna-imagem-tablet {
  flex: 1;
  display: flex;
  justify-content: center;
}

.popup-modelo-imagem {
  max-width: 96%;
  height: auto;
}

.newmargin {
  margin-top: 16px !important;
}

.popup-container-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  gap: 15px;
  max-width: 320px;
}

.popmobile1 {
  font-family: "Lexend";
  font-weight: 600;
  font-style: SemiBold;
  font-size: 38px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e17446;
  margin-bottom: 20px;
  margin-top: 20px;
}

.popmobile2 {
  font-family: "Lexend";
  font-weight: 600;
  font-style: SemiBold;
  font-size: clamp(24px, calc(2.5vw + 1px), 30px);
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #6da69d;
  margin-bottom: 20px;
}

.popmobile3 {
  font-family: Lexend;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #e7e9e2;
  margin-bottom: 20px;
}
.popmobile4 {
  font-family: Lexend;
  font-weight: 300;
  font-style: Light;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #e7e9e2;
}
