/* Theme Name: Viajes Maya Child */
/* Theme URI: https://github.com/elementor/hello-theme/ */
/* Description: Viajes Maya Child is a child theme for Elementor, created by Cristian Sabogal */
/* Author: Cristian Sabogal */
/* Template: hello-elementor */
/* Version: 1.0.1 */
/* Custom styles grid post shortcode */
* {
  margin: 0;
  padding: 0;
  font-family: "Albert Sans", sans-serif;
}

:root {
  --max-width-container: 1236px;
  --primary-color: #051B97;
  --accent-color: #46CD90;
  --text-color: #150F33;
  --nav-height: 70px;
  --global-size: 17px;
  --spacing-gap-8: 8px;
  --spacing-gap-16: 16px;
  --spacing-gap-32: 32px;
  --spacing-gap-64: 64px;
}

.vm-download-plan {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  colo: wbite !important;
  border-radius: 20em !important;
  padding: var(--spacing-gap-8) var(--spacing-gap-16);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.vm-download-plan:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.5);
}

.vm-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.vm-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUp 0.3s;
}

.vm-close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  z-index: 10;
}
.vm-close-modal:hover {
  color: #000;
}

.vm-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 12px 12px 0 0;
  color: var(--text-color) !important;
}
.vm-modal-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-color) !important;
}
.vm-modal-header p {
  margin: 0;
  padding: 0;
}

.vm-modal-body {
  padding: 25px;
}
.vm-modal-body a {
  color: var(--primary-color) !important;
  font-weight: bold !important;
}
.vm-modal-body label {
  color: var(--text-color) !important;
  font-size: 11pt !important;
}

.vm-form-grid label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}
.vm-form-grid input[readonly] {
  background-color: #f0f0f0;
  border-color: #ccc;
  color: #555;
  cursor: not-allowed;
}

.vm-form-grid input[type=text], .vm-form-grid input[type=email], .vm-form-grid input[type=tel] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 5px;
}

.vm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.vm-checkbox-policy {
  font-weight: normal !important;
  font-size: 0.85rem !important;
}

input.wpcf7-submit {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
input.wpcf7-submit:hover {
  background: #005177;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.vm-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.vm-accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.vm-accordion-item:last-child {
  border-bottom: none;
}

.vm-accordion-header {
  border-radius: 0px !important;
  width: 100%;
  background: white !important;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  color: var(--text-color) !important;
}
.vm-accordion-header:focus {
  background: white !important;
  color: var(--text-color) !important;
}
.vm-accordion-header:hover {
  background: #e9ecf8 !important;
  color: var(--text-color) !important;
}
.vm-accordion-header.active {
  background: #eee;
  color: var(--text-color) !important;
}
.vm-accordion-header.active::after {
  content: "-";
}
.vm-accordion-header::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: normal;
}

.vm-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.vm-accordion-body {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color) !important;
}

.vm-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  margin-top: 15px;
}

.vm-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color) !important;
  border: 1px solid #ccc;
  border-radius: 2em;
  padding: 0.5em 0.7em;
}
.vm-feature-item .iconify {
  color: var(--primary-color) !important;
  flex-shrink: 0;
  width: 25px !important;
  height: 25px !important;
}

@media (max-width: 480px) {
  .vm-features-grid {
    grid-template-columns: 1fr;
  }
}
.vertical-divisor {
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  height: 50px;
}

.top-information {
  padding: 3rem 3rem 6rem 3rem;
}

.vm-overlay {
  background: rgba(2, 5, 22, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}

.vm-single-page {
  margin-top: 70px;
}
.vm-single-page__chip {
  padding: 6px 10px;
  display: inline-block;
  border-radius: var(--spacing-gap-8);
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.vm-single-page__backdrop {
  position: absolute;
  width: 100%;
  height: calc(100vh - 49%);
  z-index: 0;
  overflow: hidden;
  background: #000;
  border-bottom-left-radius: var(--spacing-gap-16);
  border-bottom-right-radius: var(--spacing-gap-16);
}
.vm-single-page__backdrop img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  filter: blur(10px);
  -webkit-filter: blur(10px);
}
.vm-single-page .container {
  z-index: 1;
  position: relative;
  display: grid;
  gap: var(--spacing-gap-32);
  grid-template-columns: 1fr 380px;
  left: 0;
  margin: 0 auto;
  max-width: var(--max-width-container);
  padding: var(--spacing-gap-16);
  right: 0;
  width: calc(100vw - var(--spacing-gap-32));
  align-items: flex-start;
}
.vm-single-page .container h1 {
  font-size: 3.5rem;
  margin: 0 !important;
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 1px 1px 8px rgba(44, 44, 44, 0.45);
}
.vm-single-page .container > section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-gap-16);
  color: white;
  justify-content: center;
}
.vm-single-page__breadcrumb {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 3px;
}
.vm-single-page__breadcrumb span {
  font-size: 11pt;
}
.vm-single-page__breadcrumb span a {
  text-transform: capitalize;
  text-decoration: none;
  color: white;
  font-size: 11pt;
}
.vm-single-page__breadcrumb span a.link-item {
  padding: 0.3em 0.5em;
  transition: all ease 0.24s;
  color: rgba(255, 255, 255, 0.7) !important;
}
.vm-single-page__breadcrumb span a.link-item:hover {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3em 0.5em;
  border-radius: var(--spacing-gap-8);
  color: white !important;
}
.vm-single-page__breadcrumb .current-item {
  padding: 0.3em 0.5em;
  transition: all ease 0.24s;
  color: rgba(255, 255, 255, 0.7) !important;
}
.vm-single-page__breadcrumb .current-item:hover {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3em 0.5em;
  border-radius: var(--spacing-gap-8);
  color: white !important;
}
.vm-single-page__summary-info {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-gap-16);
}
.vm-single-page__summary-info label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 11pt !important;
}
.vm-single-page__card-featured {
  -webkit-box-shadow: 0px 0px 30px 9px rgba(0, 63, 98, 0.16);
  border-radius: 20px;
  box-shadow: 0px 0px 30px 9px rgba(0, 63, 98, 0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--spacing-gap-32) var(--spacing-gap-16);
  background: white;
  color: var(--text-color);
  position: sticky;
  top: 7rem;
}
.vm-single-page__card-featured .disclaimer-text {
  font-size: 9pt;
}
.vm-single-page__card-featured h3 {
  color: black !important;
  font-weight: 800 !important;
  font-size: clamp(1rem, 0.75rem + 4vw, 2.1rem);
  letter-spacing: -1px;
  margin: 0 !important;
}
.vm-single-page__card-featured label {
  color: inherit !important;
}
.vm-single-page__card-featured button {
  width: 100%;
  height: 49px;
  font-size: 1.1rem;
  background: var(--accent-color);
  border-radius: 4rem;
  border: none;
  cursor: pointer;
  transition: background ease 0.24s;
  font-weight: 600;
  color: #000 !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-gap-8);
}
.vm-single-page__card-featured button:hover {
  background: rgb(53.085106383, 196.414893617, 131.6510638298) !important;
}
.vm-single-page__card-featured button:active {
  background: rgb(42.2340425532, 156.2659574468, 104.7404255319) !important;
}
.vm-single-page__card-featured button:focus {
  background: rgb(42.2340425532, 156.2659574468, 104.7404255319) !important;
}
.vm-single-page__card-featured > aside {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-gap-16);
}
.vm-single-page__card-featured > aside > section {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-gap-8);
  justify-content: center;
}
.vm-single-page__card-featured > aside > section a {
  align-items: center;
  border-radius: var(--spacing-gap-8);
  border: 1px solid #150F33;
  color: #150F33;
  display: flex;
  justify-content: center;
  padding: var(--spacing-gap-8);
  transition: all ease 0.24s;
}
.vm-single-page__card-featured > aside > section a:hover {
  color: rgb(42.2340425532, 156.2659574468, 104.7404255319);
  border: 1px solid rgb(42.2340425532, 156.2659574468, 104.7404255319);
}
