/* =========================================
   DESTINO MOR
   COLORES: BLANCO, NEGRO Y DORADO
========================================= */

:root {
  --black: #0d0d0d;
  --black-soft: #191919;
  --dark-gray: #2a2a2a;
  --white: #ffffff;
  --cream: #fcfaf5;
  --light-gray: #efefef;
  --text-gray: #626262;

  --gold: #c99a2e;
  --gold-light: #e6c46e;
  --gold-dark: #a77a1d;

  --pink: #d51d68;

  --font-title: "Outfit", sans-serif;
  --font-text: "Montserrat", sans-serif;

  --container: 1180px;
  --transition: 0.3s ease;
}

/* =========================================
   RESETEO
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--black);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* =========================================
   CLASES GENERALES
========================================= */

.container {
  width: min(90%, var(--container));
  margin: auto;
}

.section {
  padding: 95px 0;
}

.section-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--gold);
}

.section-header {
  max-width: 720px;
  margin-bottom: 45px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* =========================================
   BOTONES
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 23px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
}

.btn-dark:hover {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-whatsapp {
  width: 100%;
  border: none;
  color: var(--white);
  background: #25d366;
}

.btn-whatsapp:hover {
  background: #1faf55;
  transform: translateY(-3px);
}

/* =========================================
   HEADER
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  background: var(--black);
  border-bottom: 1px solid rgba(230, 196, 110, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-button {
  background: var(--gold);
  color: var(--black);
  padding: 11px 17px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 800;
  transition: var(--transition);
}

.nav-button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  color: var(--gold-light);
  background: transparent;
  border: none;
  font-size: 1.45rem;
}

/* =========================================
   HERO
========================================= */

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 1) 0%, rgba(13, 13, 13, 0.96) 54%, rgba(13, 13, 13, 0.75) 100%);
  padding: 75px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(230, 196, 110, 0.65);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title,
.hero-text h1 {
  font-family: var(--font-title);
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 23px;
}

.hero-text h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-text > p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 42px;
}

.hero-data {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-data div {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.hero-data strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.15rem;
}

.hero-data span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  /* border: 2px solid rgba(230, 196, 110, 0.75); */
}

.hero-image-label {
  position: absolute;
  left: -24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 270px;
  padding: 14px 17px;
  border-radius: 8px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-image-label i {
  color: var(--pink);
}

/* =========================================
   NOSOTROS
========================================= */

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.about-image {
  position: relative;
}

.about-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 2px solid var(--gold-light);
}

.experience-badge {
  position: absolute;
  right: -25px;
  bottom: 28px;
  width: 190px;
  padding: 20px;
  border-radius: 9px;
  color: var(--white);
  background: var(--black);
}

.experience-badge strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 6px;
}

.experience-badge span {
  font-size: 0.78rem;
  line-height: 1.3;
}

.about-content > p {
  color: var(--text-gray);
  margin-bottom: 15px;
}

.about-content .lead-text {
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 500;
}

.values-grid {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 7px;
}

.value-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-light);
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.value-card p {
  color: var(--text-gray);
  font-size: 0.82rem;
}

/* =========================================
   TOURS
========================================= */

.tours-section {
  background: var(--white);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: var(--white);
  transition: var(--transition);
}

.tour-card:hover {
  border-color: var(--gold);
  transform: translateY(-7px);
  box-shadow: 0 16px 35px rgba(13, 13, 13, 0.12);
}

.tour-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.07);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 11px;
  border-radius: 20px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.pink-badge {
  color: var(--white);
  background: var(--pink);
}

.tour-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.tour-meta {
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.tour-content h3 {
  color: var(--black);
  font-family: var(--font-title);
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.tour-content > p {
  flex-grow: 1;
  color: var(--text-gray);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.tour-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px;
  margin-bottom: 17px;
  border-left: 3px solid var(--gold);
  color: var(--dark-gray);
  background: #fffaeb;
  font-size: 0.76rem;
  font-weight: 600;
}

.tour-highlight i {
  color: var(--gold-dark);
  margin-top: 3px;
}

.tour-button {
  display: block;
  padding: 11px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-dark);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  transition: var(--transition);
}

.tour-button:hover {
  color: var(--black);
  background: var(--gold-light);
}

/* =========================================
   TRANSPORTE
========================================= */

.transport-section {
  background: var(--black);
}

.light-header .section-tag {
  color: var(--gold-light);
}

.light-header .section-title {
  color: var(--white);
}

.light-header .section-title span {
  color: var(--gold-light);
}

.light-header p {
  color: rgba(255, 255, 255, 0.65);
}

.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 23px;
  align-items: stretch;
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid rgba(230, 196, 110, 0.26);
  border-radius: 12px;
  background: var(--black-soft);
}

.vehicle-image {
  height: 220px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.06);
}

.vehicle-content {
  padding: 24px;
}

.vehicle-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold-light);
}

.vehicle-content h3 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 9px;
}

.vehicle-content > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.vehicle-content ul {
  list-style: none;
}

.vehicle-content li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.vehicle-content li i {
  color: var(--gold-light);
}

.transport-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 29px;
  border-radius: 12px;
  color: var(--black);
  background: var(--gold-light);
}

.transport-info .section-tag {
  color: var(--black);
}

.transport-info h3 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 23px;
}

.transport-list {
  display: grid;
  gap: 11px;
  margin-bottom: 27px;
}

.transport-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 700;
}

.transport-list i {
  width: 20px;
  color: var(--gold-dark);
  font-size: 1rem;
}

.transport-info .btn-gold {
  border-color: var(--black);
  color: var(--white);
  background: var(--black);
}

.transport-info .btn-gold:hover {
  color: var(--black);
  background: var(--white);
}

/* =========================================
   GALERÍA
========================================= */

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  columns: 4 220px;
  column-gap: 14px;
}

.gallery-grid img {
  width: 100%;
  display: block;
  margin-bottom: 14px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: var(--transition);
  break-inside: avoid;
}

.gallery-grid img:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

/* =========================================
   EQUIPO
========================================= */

.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.team-photo {
  position: relative;
}

.team-photo::before {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  top: 28px;
  left: -20px;
  z-index: 0;
  border-radius: 12px;
  background: var(--gold-light);
}

.team-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 2px solid var(--black);
}

.team-content > p {
  max-width: 590px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

/* =========================================
   CONTACTO
========================================= */

.contact-section {
  background: var(--black);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.contact-content .section-tag {
  color: var(--gold-light);
}

.contact-content h2 {
  max-width: 500px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-content > p {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 30px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 0.87rem;
}

.contact-details i {
  width: 18px;
  color: var(--gold-light);
}

.contact-form {
  padding: 33px;
  border: 1px solid rgba(230, 196, 110, 0.3);
  border-radius: 12px;
  background: var(--white);
}

.contact-form h3 {
  color: var(--black);
  font-family: var(--font-title);
  font-size: 1.55rem;
  margin-bottom: 23px;
}

.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.form-group label {
  display: block;
  color: var(--dark-gray);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  color: var(--black);
  background: var(--white);
  font-size: 0.83rem;
  outline: none;
  resize: vertical;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.13);
}

/* =========================================
  REDES SOCIALES FLOTANTES
========================================= */

.social-floats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  gap: 10px;
}

.whatsapp-float {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
  font-size: 1.9rem;
  transition: var(--transition);
}

.whatsapp-float:hover,
.instagram-float:hover {
  transform: scale(1.1);
}

.instagram-float {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
  font-size: 1.9rem;
  transition: var(--transition);
}

/* =========================================
   FOOTER
========================================= */

.footer {
  color: var(--white);
  background: #070707;
  border-top: 1px solid rgba(230, 196, 110, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 45px;
  padding: 55px 0 40px;
}

.footer-brand img {
  width: 115px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.81rem;
}

.footer h3 {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 13px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact i {
  width: 20px;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.footer-bottom p:last-child {
  color: var(--gold-light);
  font-style: italic;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1000px) {
  .hero-content,
  .about-grid,
  .team-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    max-width: 700px;
  }

  .about-grid,
  .team-grid,
  .contact-container {
    gap: 45px;
  }

  .about-image {
    max-width: 640px;
  }

  .transport-grid {
    grid-template-columns: 1fr 1fr;
  }

  .transport-info {
    grid-column: span 2;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   RESPONSIVE CELULAR
========================================= */

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }

  .brand-logo {
    width: 77px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    display: none;
    width: 100%;
    padding: 23px;
    border-bottom: 1px solid rgba(230, 196, 110, 0.25);
    background: var(--black);
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
  }

  .nav-button {
    width: 100%;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-text h1 {
    font-size: 2.7rem;
  }

  .hero-text > p {
    font-size: 0.94rem;
  }

  .hero-image img {
    height: 385px;
  }

  .hero-image-label {
    left: 12px;
    bottom: 13px;
    max-width: 230px;
    padding: 11px;
    font-size: 0.72rem;
  }

  .hero-data {
    gap: 14px;
  }

  .hero-data strong {
    font-size: 0.98rem;
  }

  .hero-data span {
    font-size: 0.67rem;
  }

  .about-image > img {
    height: 400px;
  }

  .experience-badge {
    right: 10px;
    bottom: 12px;
    width: 155px;
    padding: 15px;
  }

  .experience-badge strong {
    font-size: 1.8rem;
  }

  .tours-grid,
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .transport-info {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .team-photo {
    max-width: 390px;
  }

  .team-photo img {
    height: 440px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-floats {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float,
  .instagram-float {
    width: 53px;
    height: 53px;
    font-size: 1.6rem;
  }
}
