@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  overflow-x: hidden;
  text-align: center;


}

.travel-container {
  width: 100%;
  max-width: 100%;
  margin-top: 80px;
  padding: 0;
}

.wp-block-spacer {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}


.hero {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #2563eb, #1e3a8a);
  color: white;
  position: relative;
  z-index: 10;
  overflow: hidden;


}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

.hero .button {
  padding: 1% 2.5%;
  font-size: 1.9vw;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
}


.hero-content {
  text-align: center;

}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes typing-finished {
  to {
    border-right: none;
  }
}

.hero h1 {
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 3%;

  overflow: hidden;
  white-space: nowrap;
  width: 0;
  display: inline-block;
  border-right: 3px solid white;
  animation: typing 3s steps(40, end) forwards,
    blink 0.7s 3s steps(40, end) forwards,
    typing-finished 0.1s 4s forwards;
}



.hero p {
  font-size: 2vw;
  margin-bottom: 5%;
}


.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
  height: auto;
  fill: white;
}

.value-proposition {
  width: 100%;
  text-align: center;
  padding: 5%;
}

.value-proposition h2 {
  font-size: 3vw;
  font-weight: bold;
  color: #111;
  margin-bottom: 4%;
  margin-top: -2vw;
}

.value-proposition p {
  font-size: 2vw;
  color: #333;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.services {
  width: 100%;
  text-align: center;
  background: #ffffff;
  padding: 5%;
  margin-top: -5%;
}

.services h2 {
  font-size: 2.5vw;
  font-weight: bold;
  color: #111;
  text-align: center;

}

.services p {
  font-size: 1.7vw;
  color: #333;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  gap: 5%;
  width: 90%;
  max-width: 100%;
  margin: 5% auto;
  justify-content: center;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1%;
  text-align: center;
  padding: 8%;
  border-radius: 5%;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
  position: relative;
  background-color: #f8f9fa;
  box-shadow: 0 2% 4% rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: scale(1.05);
}

.card i {
  font-size: 2vw;
  color: #2563eb;
}

.card h3 {
  font-size: 1.6vw;
  font-weight: bold;
}

.card p {
  font-size: 1.1vw;
  color: #333;
}

.mission {
  width: 100%;
  background: linear-gradient(to right, #2563eb, #10255e);
  color: white;
  text-align: center;
  padding: 5%;
  font-size: 2vw;
}

.mission h2 {
  font-size: 2.5vw;
}

.mission p {
  font-size: 1.5vw;
  width: 90%;
  max-width: 100%;
  margin: 2vw auto;
  padding: 0 15%;

}

.why-choose-us {
  margin-top: 7%;
  text-align: center;
}

.why-choose-us {
  font-size: 2vw;
  font-weight: bold;
  color: #111;
}

.button {
  margin-top: 2vw;
  display: inline-block;
  padding: 1% 2%;
  background-color: black;
  color: white;
  font-size: 1.5vw;
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s ease-in-out;
  position: relative;
  z-index: 100;
}

.button:hover {
  background-color: #333;
}

@media screen and (max-width: 768px) {

  body {
    font-size: 4vw;
    text-align: center;
  }


  body.page-id-7806,
  body.page-id-7806 html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-x: hidden !important;
  }


  body.page-id-7806 .wp-site-blocks,
  body.page-id-7806 main,
  body.page-id-7806 .entry-content {
    flex: 1 0 auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.page-id-7806 footer {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem !important;
    margin: 0 !important;
    width: 100% !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 13px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.page-id-7806 footer>* {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero {
    min-height: 60vh;
    padding: 15% 5%;
  }

  .hero h1 {
    font-size: 8vw;
  }

  .hero p {
    font-size: 5vw;
  }

  .hero .button {
    font-size: 5vw;
    padding: 3% 5%;
  }

  .value-proposition {
    padding-top: 12%;
    padding-bottom: 8%;
  }

  .value-proposition h2 {
    font-size: 8vw;
    font-weight: 700;
    color: #111;
    margin-bottom: 5%;
    letter-spacing: 0.5px;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05);
    animation: fadeInUpBounce 1.2s ease-out 0.2s forwards;
  }

  .value-proposition p {
    font-size: 4.5vw;
    font-weight: 500;
    color: #444;
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    animation: fadeInUpBounce 1.2s ease-out 0.5s forwards;
  }

  .services {
    margin-top: 2vh;
    padding: 5% 10% 5% 2%;
    min-height: 120vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .services h2 {
    font-weight: bold;
    font-size: 7.5vw;
    margin-bottom: 3%;
  }

  .services p {
    font-size: 5.2vw;
    line-height: 1.6;
    margin-bottom: 4%;
  }

  .service-list {
    grid-template-columns: repeat(1, 90%);
    gap: 6%;
    margin-top: 12%;
    margin-bottom: 15%;
  }

  .card {
    background: linear-gradient(90deg, #e0e0e0, #ffffff, #e0e0e0);
    background-size: 600% 600%;
    animation: softWaves 8s ease infinite;
    padding: 40px 8%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 8%;
    position: relative;
    overflow: hidden;
    z-index: 10;
  }

  .card i {
    font-size: 7vw;
  }

  .card h3 {
    font-size: 4.8vw;
  }

  .card p {
    font-size: 3.6vw;
  }

  .mission {
    padding: 40px 0;
    text-align: center;
  }

  .mission h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .mission p {
    font-size: 1.3rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 5%;
  }

  .value-proposition h2,
  .value-proposition p {
    animation: fadeInUpBounce 1s ease-out forwards;
  }

  .button {
    margin-top: 3rem;
    display: inline-block;
    padding: 3.5% 5.3%;
    background-color: black;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    position: relative;
    z-index: 100;
  }

  .why-choose-us {
    margin-top: 10%;
    text-align: center;
    font-size: 8vw;
    font-weight: bold;
    color: #111;
  }

  .footer {
    position: relative;
    z-index: 5;
    padding-top: 12%;
    margin-top: 3%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 auto;
  }

  .typing-effect {
    font-size: 6vw;
    font-weight: bold;
    margin: 10% auto;
    display: inline-block;
    text-align: center;
    color: white !important;
    overflow: hidden;
    white-space: nowrap;
    border-right: none;
    animation: typingMobile 3s steps(30, end) forwards;
  }

  .fade-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .fade-scroll.animate {
    opacity: 1;
    transform: translateY(0);
  }

  .poderoso-parrafo {
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .poderoso-parrafo.animate {
    animation: scaleFadeIn 1.2s ease-out forwards;
  }

}


@media screen and (min-width: 1024px) {

  .card {
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4%;
    margin-bottom: 2%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUpBounce {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes typingMobile {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes softWaves {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}