/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  background-color: rgb(255, 255, 255);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}
.logo img {
  height: 50px; /* ajusta el tamaño */
  width: auto;
}

/* Menú de navegación */
header nav {
  display: flex;
  gap: 25px;
}

header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

header nav a:hover {
  color: #007bff;
}

header nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #007bff;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Botón hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* negro semitransparente */
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-button {
  padding: 16px 40px;
  font-size: 1.1rem;
  background-color: white;
  color: #007bff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  padding: 100px 50px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
}

.about div {
  max-width: 600px;
}

.about h2 {
  color: rgb(54, 168, 220);
  font-size: 2.7rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about .tagline {
  font-style: italic;
  color: #007bff;
  font-weight: 600;
}

/* Discover Section */
.discover {
  background: linear-gradient(135deg, #323a42 0%, #4e5a66 100%);

  padding: 100px 50px;
  text-align: center;
  color: #fff;
}

.discover h2 {
  font-size: 2.7rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.discover-columns {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.discover-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.discover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: #fff;
}

.discover-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.discover-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Experience Section */
.experience {
  display: flex;
  align-items: center;
  padding: 100px 50px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.experience img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-text {
  max-width: 600px;
}

.experience-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.experience-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: 600;
}

.experience-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.experience-text button {
  padding: 16px 35px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.experience-text button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.content-bg {
  background-color: rgb(246, 246, 246);
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

/* What We Do Section */
.what-we-do {
  background-color: transparent;
  padding: 80px 40px 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.what-we-do h2 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 60px;
  font-weight: 700;
  color: rgb(171, 133, 133);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.what-we-do .columns {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.what-we-do .col-left {
  flex: 2;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
}

.what-we-do .tagline {
  font-style: italic;
  color: rgb(54, 168, 220);
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.4rem;
  border-left: 4px solid rgb(54, 168, 220);
  padding-left: 15px;
}

.what-we-do .col-right {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section - MEJORADA */
.contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
  z-index: 0;
}

.contact-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 60px;
}

.contact h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e7ff;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-text {
  height: 500px;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: left;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  /* CENTRADO VERTICAL */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e7ff;
  margin-bottom: 30px;
  text-align: left;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature i {
  font-size: 1.3rem;
  color: #36a8dc;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.feature span {
  font-size: 1rem;
  font-weight: 500;
}

/* Calendly Wrapper - MEJORADO */
.calendly-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.calendly-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendly-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calendly-header {
  padding: 25px;
  background: #36a8dc;
  color: white;
  text-align: center;
}

.calendly-header h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.calendly-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.calendly-inline-widget {
  width: 100% !important;
  min-width: 320px !important;
  height: 600px !important;
  border: none;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about,
  .experience {
    padding: 80px 40px;
  }

  .discover,
  .contact {
    padding: 80px 40px;
  }

  .what-we-do {
    padding: 60px 30px 80px;
  }

  .contact-content {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .contact-columns {
    flex-direction: column;
  }

  .contact .col-right {
    margin-top: 40px;
    align-items: flex-start;
  }

  .contact h2 {
    font-size: 2.5rem;
  }

  .what-we-do .columns {
    flex-direction: column;
    gap: 30px;
  }

  .what-we-do h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-text,
  .calendly-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  /* Menú hamburguesa para móviles */
  .hamburger {
    display: flex;
  }

  header nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  header nav.active {
    right: 0;
  }

  header nav a {
    margin: 15px 0;
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about,
  .experience {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
    gap: 40px;
  }

  .about img,
  .experience img {
    margin-bottom: 30px;
    max-width: 100%;
  }

  .discover-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .discover-card {
    max-width: 100%;
  }

  .what-we-do {
    padding: 40px 20px 60px;
  }

  .contact {
    padding: 80px 20px;
  }

  .contact h2 {
    font-size: 2.2rem;
  }

  .contact p {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about h2,
  .discover h2,
  .what-we-do h2,
  .contact h2 {
    font-size: 2rem;
  }

  .what-we-do {
    padding: 30px 15px 50px;
  }

  .what-we-do .col-left,
  .what-we-do .col-right {
    font-size: 1rem;
  }

  .contact {
    padding: 60px 15px;
  }

  .contact .col-right button {
    align-self: stretch;
    text-align: center;
  }

  .contact-text {
    padding: 20px;
  }

  .calendly-header {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 12px 15px;
  }

  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-button {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .about,
  .experience {
    padding: 50px 20px;
  }

  .discover,
  .contact {
    padding: 50px 20px;
  }

  .discover h2 {
    margin-bottom: 40px;
  }

  .experience-text h3 {
    font-size: 1.6rem;
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .contact p {
    font-size: 1rem;
  }

  .calendly-inline-widget {
    height: 500px !important;
  }
}
