:root {
  --bg-color: #000;
  --text-color: #fff;
  --accent-color: #f9a21b;
  --secondary-color: #999;
  --font-family: "Poppins", sans-serif;
  --max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.5;
  cursor: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.1s ease;
  z-index: 9999;
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

.side-label {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 100;
}

.side-label span {
  color: var(--text-color);
  font-size: 0.8rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 1000;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  margin-bottom: 6px;
}

.nav-logo {
  text-align: center;
}

.nav-logo img {
  max-width: 80px;
  height: auto;
  display: inline-block;
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: #111;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding-top: 40px;
}

.main-nav ul {
  list-style: none;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}

.main-nav ul li {
  margin: 1rem 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: var(--accent-color);
}

.main-nav.open {
  transform: translateX(0);
}
.main-nav.visible {
  transform: translateX(0);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-geometry {
  position: absolute;
  opacity: 0.09;
  max-width: 500px;
}

.bg-geometry2 {
  position: relative;
  opacity: 0.09;
  max-width: 500px;
}

@media (max-width: 768px) {
  .cover-2 {
    display: none;
  }
}

.geometry-1 {
  top: 10%;
  left: 5%;
}

.geometry-2 {
  bottom: 10%;
  right: 5%;
}

.hero-content {
  text-align: center;
  z-index: 2;
  margin-top: 4rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-yellow {
  background: var(--accent-color);
  color: #000;
}

.btn-yellow:hover {
  background: #fff;
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: #000;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator .circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 0;
}

.split-content,
.split-image {
  flex: 1 1 50%;
  padding: 1rem;
}

.split-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

.founder-quote h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.founder-quote p {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.split-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ideas-section {
  padding: 4rem 0;
  text-align: center;
}

.ideas-content {
  margin-bottom: 3rem;
}

.ideas-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ideas-content p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Define la grilla como inline-grid para que su ancho se ajuste al contenido */
.ideas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.idea-item {
  flex: 0 0 250px; /* o el ancho deseado */
}

.idea-item {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.idea-item:hover {
  transform: translateY(-5px);
}

.idea-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.idea-item p {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.team-section {
  padding: 4rem 0;
  text-align: center;
}

.team-header {
  margin-bottom: 3rem;
}

.team-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.team-header p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--accent-color);
}

.team-member p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.testimonials-section {
  padding: 4rem 0;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background: #111;
  width: 300px;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.testimonial h4 {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 0.2rem;
}

.testimonial span {
  display: block;
  font-size: 0.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.clients-section {
  padding: 4rem 0;
  text-align: center;
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.clients-logos img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients-logos img:hover {
  filter: grayscale(0%);
}

.footer-section {
  background: #111;
  padding: 4rem 0;
  color: var(--text-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-left h3,
.footer-right h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-left p,
.footer-right p {
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.7rem;
  border: none;
  border-radius: 20px;
  outline: none;
}

.subscribe-form button {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 20px;
  background: var(--accent-color);
  color: #000;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: #fff;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  /*   .side-label {
    left: -2rem;
  } */
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }
  .main-nav {
    width: 70%;
  }
  .split-section {
    flex-direction: column;
  }
  .ideas-content h2,
  .team-header h2,
  .testimonials-section h2,
  .clients-section h2 {
    font-size: 1.8rem;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 2rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

