* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(-45deg, #1f1f4d, #0d1117, #5b2fff, #1f1f4d);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: white;
}
a:link {
  color:white;
}
a:visited {
  color:gray;
}
a:hover {
  color:darkgray;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Navbar */
.navbar {
  background-color: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 17vh; /* Aproximadamente 1/7 del alto de la pantalla */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo-img {
  width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

/* Nav items */
.nav-links {
  display: flex;
  gap: 1cm;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: gray;
  text-decoration: underline;
}

.consulting {
  font-weight: bold;
  color: #0d1438;               
}
.coaching{
  font-weight: bold;
  color: #3f43d4;
}

.page-content {
  min-height: 200vh; /* permite scroll */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15vh;
}

.title {
  text-align: center;
  margin-bottom: 20px;
}

.title h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.title p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 100px;
}

.more-content {
  padding: 50px 20px;
  max-width: 800px;
  text-align: center;
}

.more-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
html {
  scroll-behavior: smooth;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-top: -100px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 80px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  min-width: 100%;
  height: 600px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1;
  font-size: 24px;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}


.content-box {
    margin-top: 0px;
    width: 100%;
    height: 500px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px; /* Espacio interno opcional */
    box-sizing: border-box;
    margin-bottom: 0px;
}


.div-image-left {
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
}

.div-image-left img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Imagen alineada a la derecha */
.div-image-right {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.div-image-right img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Texto alineado a la izquierda */
.div-text-left {
    margin-right: auto;
    text-align: left;
    color: rgb(0, 0, 0);
    font-size: 35px;
    margin-right: 20px;
}
.div-text-left h2{
    margin-right: auto;
    text-align: left;
    color: rgb(0, 0, 0);
    font-size: 50px;
    margin-bottom: 20px;
}

/* Texto alineado a la derecha */
.div-text-right {
    margin-left: auto;
    text-align: right;
    color: rgb(0, 0, 0);
    font-size: 35px;
    margin-left: 20px;
}
.div-text-right h2{
    margin-right: auto;
    text-align: right;
    color: rgb(0, 0, 0);
    font-size: 50px;
    margin-bottom: 20px;
}

/*bottom square*/
.general {
  background-color: #121217;
  width: 100%;
  height: 500px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
}

/* Left and right columns */
.left-box,
.right-box {
  flex: 1; /* each takes 50% */
}

/* Optional alignment */
.left-box {
  align-items: flex-start;
}
.general p {
  margin-bottom: 16px; /* adjust as needed */
}

.right-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-divider {
  width: 40px;          /* acts as margin */
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;       /* prevents collapse */
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  padding: 10px;
  background-color: #ffffff;
  color: #121217;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
