@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
  /* --bg-dark: #121212; */
  --bg-dark: #ffffff;
  --text-light: #ffffff;
  --text-sub: #444444;
  --accent-orange: #d97706;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --container-max-width: 1300px;

  /*  */
  --bg-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --accent-orange: #d97706;
  --border-color: #e5e5e5;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --container-max-width: 1300px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  /* color: var(--text-light); */
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  width: 90%;
  margin: 0 auto;
}

.no {
  display: none !important;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/Copia\ de\ La\ Guajira\ 016.jpg'); */
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.hero-content {
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--accent-orange);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 50px;
  color: white;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/*  */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.hero-bg-video {
  width: 100%;
  /* height: 1420px; */
  height: 65%;
  object-fit: cover;
  transform: scale(1.6);
  opacity: 0.5;
}



/*
*/
@media screen and (max-width: 768px) {
  .hero-content {
    position: absolute;
    bottom: 120px;
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: unset;
  }

  .action-btn {
    padding: 5px 15px;
    font-size: 0.7rem;
  }

  .card-title {
    font-size: 14px;
  }
}