*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-900: #00254E;
  --blue-700: #1F3C5D;
  --gold: #C8831C;
  --gold-2: #BA740A;

  --modal-max-width: 720px;
  --brand-blue-rgb: 0, 37, 78;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f1eeee;
  padding-top: 72px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  max-height: 90%;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background: var(--blue-900);
  padding: 0.2rem 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
}

.header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0.5rem 3rem;
  background: transparent;
  transition: all 0.4s ease;
}

.header.scrolled .nav-container {
  max-width: 100%;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.719);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--gold);
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #885f07;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2;
  overflow: visible;
}

.hero-grid {
  background: linear-gradient(180deg, var(--blue-900) 20.19%, var(--blue-700) 78.37%);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 0 0 90px 90px;
  padding: 2rem 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  z-index: 3;
  max-width: 600px;
  margin-left: 3rem;
  margin-top: -4rem;
  padding-top: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #ffffff;
}

.hero-title span {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.textosecundario {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: fit-content;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-whatsapp:hover::before {
  left: 100%;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: translateY(-3px);
}

.btn-whatsapp img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.hero-cta-gold {
  display: flex;
  justify-content: flex-start;
}

.btn-gold-main {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--gold), #D4A574);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(200, 131, 28, 0.4);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
}

.btn-gold-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 131, 28, 0.6);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.fotocompleta {
  width: clamp(20rem, 35vw, 30rem);
  height: auto;
  object-fit: contain;
}

.servicos-destaque {
  position: relative;
  padding: 10rem 2rem;
  overflow: hidden;
  margin-top: -75px;
}

.servicos-bg {
  position: absolute;
  inset: 0;
  background: url(../fotos/fundofoto.png) no-repeat center / cover;
  z-index: 0;
}

.titulo-servicos {
  text-align: center;
  font-size: 2.5rem;
  color: var(--blue-900);
  margin-bottom: 3rem;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.card-servico {
  background: #fff;
  border-top: 8px solid var(--blue-900);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);

  width: 100%;
  min-width: 0;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;

  position: relative;
  overflow: hidden;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.card-servico.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.card-servico * {
  position: relative;
  z-index: 2;
}

.card-servico::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, #f5db7c8c 50%, transparent 100%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

@keyframes brilho-metalico {
  from {
    transform: translateX(-100%) rotate(25deg);
  }
  to {
    transform: translateX(100%) rotate(25deg);
  }
}

.card-servico:hover::before {
  opacity: 1;
  animation: brilho-metalico 1.1s forwards;
}

.card-servico:hover {
  transform: translateY(-8px);
}

.card-icon {
  width: 90px;
  height: 90px;
  border-radius: 0;
  display: grid;
  place-items: center;
 }

.card-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.card-servico h3 {
  margin: 0.25rem 0 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  color: var(--blue-900);
  flex-shrink: 0;
}

.card-servico p {
  margin: 0;
  font-size: 0.98rem;
  color: #333;
  line-height: 1.35;
  overflow: hidden;
  word-wrap: break-word;
}

.btn-servico {
  margin-top: auto;
  background: transparent;
  color: #f5d76e;
  border: 2px solid #f5d76e;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-servico:hover {
  background: #f5d76e;
  color: var(--blue-900);
  box-shadow: 0 0 12px rgba(245, 215, 110, 0.7);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  padding: 2rem;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  width: 100%;
  max-width: var(--modal-max-width);
  background: rgba(var(--brand-blue-rgb), 0.92);
  color: var(--gold);
  padding: 2.4rem;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(2, 8, 20, 0.6);
  position: relative;
  transform: translateY(-6px) scale(0.99);
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.22s;
  opacity: 1;
  outline: none;
  font-family: inherit;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-title {
  margin: 0 0 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--gold);
}

.modal-content {
  color: rgba(212, 175, 55, 0.98);
  margin-bottom: 0;
  max-height: 55vh;
  overflow: auto;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.about {
  width: 100%;
  padding: 4rem 0 0;
  background: #f5f5f5;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: end;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 1rem;
  padding-left: 3rem;
  max-width: 35rem;
  align-items: center;
}

.about-title {
  color: var(--blue-700);
  font-family: 'Mplus 1p', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.about-intro {
  color: var(--blue-700);
  font-family: 'Metrophobic', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.about-subtitle {
  color: var(--blue-700);
  font-family: 'Mplus 1p', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.easyvisa-highlight {
  color: var(--gold-2);
}

.about-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
.reason {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.reason::before {
  content: "";
  border-radius: 14px;
  background: linear-gradient(180deg, #FFA51D 0%, var(--gold-2) 100%);
  width: 23px;
  height: 34px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.reason p {
  color: var(--blue-700);
  font-family: 'Metrophobic', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

.btn-about {
  display: inline-block;
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 0.4rem 1rem;
  border: 2px solid var(--blue-700);
  color: var(--blue-700);
  font-family: 'Kadwa', serif;
  font-size: 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-about:hover {
  background: var(--blue-700);
  color: #fff;
}

.missao-visao {
  background: linear-gradient(180deg, var(--blue-700) 21%, rgba(70, 101, 137, 0) 100%);
  border-top-left-radius: 70px;
  border-top-right-radius: 70px;
  padding: 4rem 2rem;
  color: white;
  font-family: 'Metrophobic', sans-serif;
}

.missao-visao .container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.missao-visao-content {
  display: flex;
  flex-direction: column;
}

.missao-visao .titulo {
  color: var(--gold);
  font-size: 3rem;
  font-family: 'Mplus 1p', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}

.missao-visao .texto {
  max-width: 550px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.missao-visao .depoimento {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.missao-visao .depoimento .card {
  background: #F5F5F5;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  color: #043556;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  line-height: 1.5;
}

.depoimento-indicators {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator-dot.active {
  background: var(--gold);
}

.indicator-dot:hover {
  background: rgba(200, 131, 28, 0.7);
}

.missao-visao .depoimento .autor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.missao-visao .depoimento .autor img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.missao-visao .depoimento .autor span {
  font-size: 1.1rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.missao-visao-cta {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 0 2rem;
}

.btn-agendamento {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  border: 6px solid #255D9C;
  background: transparent;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #255D9C;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-agendamento:hover {
  background: #255D9C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.35);
}

.faq {
  padding: 4rem 0;
  background: #fff;
}

.faq-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  font-size: 96px;
  font-family: 'Belanosima', sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  max-width: 733px;
  margin: 2rem auto;
  background: #E8E0D0;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  color: var(--blue-700);
  font-size: 1.4rem;
  font-family: 'Belanosima', sans-serif;
  text-align: center;
}

.faq-answer {
  padding: 1rem 1.5rem;
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.5;
  background: #9CB1C9;
  border-bottom-right-radius: 70px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.footer {
  background: var(--blue-900);
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: 4rem;
  font-family: 'Quicksand', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: var(--blue-900);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

@media (max-width: 1024px) {
  .hero {
    height: 100vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }

  .hero-text {
    margin: 0;
    max-width: 100%;
    align-items: center;
    padding-top: 0;
  }

  .hero-image {
    display: none;
  }

  .hero-cta-gold {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    padding-left: 1rem;
    padding-right: 1rem;
    align-items: center;
    max-width: 100%;
  }

  .about-image img {
    margin: 0 auto;
    max-width: 300px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-intro {
    font-size: 18px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .btn-about {
    font-size: 20px;
    padding: 0.7rem 2rem;
  }

  .missao-visao .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .missao-visao {
    padding: 2rem 1rem;
  }

  .missao-visao .titulo {
    font-size: 2.5rem;
  }

  .missao-visao .texto {
    font-size: 1.2rem;
    margin: 0 auto 2rem;
  }

  .btn-agendamento {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-grid {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    text-align: center;
  }

  .textosecundario {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .btn-whatsapp {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
  }

  .btn-gold-main {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .nav-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.733);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(71, 69, 69, 0.5);
    padding-bottom: 0.5rem;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .titulo-servicos {
    font-size: 2rem;
  }

  .card-servico {
    padding: 1.5rem;
  }

  .card-servico h3 {
    font-size: 1.2rem;
  }

  .card-servico p {
    font-size: 0.9rem;
  }

  .faq-title {
    font-size: 64px;
  }

  .faq-question {
    font-size: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .modal {
    padding: 3rem;
  }

  .modal-title {
    font-size: 1.9rem;
  }
}