/* ====================================
   HERO PSICOG - NUEVO Y LIMPIO
   ==================================== */

.psicog-hero {
  width: 100%;
  min-height: 100vh;
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 20px 50px;
}

.psicog-hero__wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  position: relative;
}

/* ===== AVATAR ===== */
.psicog-hero__avatar {
  width: 100%;
  max-width: 280px;
  position: relative;
  order: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psicog-hero__avatar img {
  width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  object-fit: contain;
}

.psicog-hero__video {
  position: absolute;
  bottom: -10px;
  right: -10px;
  display: block;
  z-index: 10;
}

.psicog-hero__video a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.psicog-hero__video a:hover {
  transform: scale(1.1);
}

.psicog-hero__video a:active {
  transform: scale(0.95);
}

.psicog-hero__video .anim_circle {
  width: 90px;
  height: 90px;
  animation: animCircle 15s infinite linear;
  cursor: pointer;
}

.psicog-hero__video .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #00365f;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ===== CONTENT ===== */
.psicog-hero__content {
  width: 100%;
  max-width: 100%;
  text-align: center;
  order: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.psicog-hero__badge {
  display: inline-block;
  position: relative;
  font-size: 11px;
  font-weight: 700;
  color: #001c37;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 14px;
  border: 2px solid #fdbf00;
  border-radius: 8px;
  margin-bottom: 14px;
}

.psicog-hero__badge-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 9px;
  height: 9px;
  background: #00b3ba;
  border-radius: 50%;
}

.psicog-hero__title {
  font-size: 36px;
  font-weight: 900;
  color: #001c37;
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: -2px;
}

.psicog-hero__title span {
  display: block;
}

.psicog-hero__highlight {
  display: inline-block;
  background: #fdbf00;
  padding: 3px 10px;
  transform: skewX(-6deg);
}

.psicog-hero__text {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 100%;
}

.psicog-hero__text strong {
  color: #001c37;
  font-weight: 600;
}

.psicog-hero__accent {
  color: #00b3ba !important;
}

/* ===== BUTTONS ===== */
.psicog-hero__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}

.psicog-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.psicog-hero__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.psicog-hero__btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.psicog-hero__btn--whatsapp:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.psicog-hero__btn--cyan {
  background: #00b3ba;
  color: #fff;
}

.psicog-hero__btn--cyan:hover {
  background: #009ba1;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 179, 186, 0.4);
}

/* ===== SOCIAL ===== */
.psicog-hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  width: 100%;
  max-width: 420px;
}

.psicog-hero__social span {
  font-size: 13px;
  font-weight: 600;
  color: #001c37;
  white-space: nowrap;
}

.psicog-hero__social ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.psicog-hero__social li {
  margin: 0;
}

.psicog-hero__social li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.psicog-hero__social li a:hover {
  background: #6244C5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(98, 68, 197, 0.3);
}

.psicog-hero__social li a img,
.psicog-hero__social li a svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.psicog-hero__social li a svg {
  fill: #001c37;
}

.psicog-hero__social li a:hover svg {
  fill: #ffffff;
}

/* ===== SCROLL ===== */
.psicog-hero__scroll {
  display: none;
}

/* ====================================
   RESPONSIVE
   ==================================== */

/* Tablet - 768px */
@media (min-width: 768px) {
  .psicog-hero {
    padding: 110px 40px 60px;
  }

  .psicog-hero__wrap {
    gap: 45px;
  }

  .psicog-hero__avatar {
    max-width: 350px;
  }

  .psicog-hero__avatar img {
    max-height: 350px;
  }

  .psicog-hero__badge {
    font-size: 13px;
    padding: 9px 18px;
    margin-bottom: 18px;
  }

  .psicog-hero__badge-dot {
    width: 11px;
    height: 11px;
  }

  .psicog-hero__title {
    font-size: 52px;
    margin-bottom: 20px;
  }

  .psicog-hero__highlight {
    padding: 5px 14px;
  }

  .psicog-hero__text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .psicog-hero__buttons {
    gap: 12px;
    max-width: 480px;
  }

  .psicog-hero__btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .psicog-hero__btn svg {
    width: 17px;
    height: 17px;
  }

  .psicog-hero__video {
    bottom: -20px;
    right: -30px;
  }

  .psicog-hero__video .anim_circle {
    width: 120px;
    height: 120px;
  }

  .psicog-hero__video .svg {
    width: 20px;
    height: 20px;
  }

  .psicog-hero__social {
    margin-top: 25px;
    gap: 16px;
    max-width: 480px;
  }

  .psicog-hero__social span {
    font-size: 14px;
  }

  .psicog-hero__social ul {
    gap: 12px;
  }

  .psicog-hero__social li a {
    width: 42px;
    height: 42px;
  }

  .psicog-hero__social li a img,
  .psicog-hero__social li a svg {
    width: 19px;
    height: 19px;
  }
}

/* Desktop - 1024px */
@media (min-width: 1024px) {
  .psicog-hero {
    padding: 60px 40px 60px;
  }

  .psicog-hero__wrap {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .psicog-hero__avatar {
    order: 2;
    max-width: none;
    width: 45%;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .psicog-hero__avatar img {
    max-height: 500px;
    width: 100%;
  }

  .psicog-hero__video {
    bottom: 25px;
    right: -45px;
  }

  .psicog-hero__video .anim_circle {
    width: 140px;
    height: 140px;
  }

  .psicog-hero__video .svg {
    width: 20px;
    height: 20px;
  }

  .psicog-hero__content {
    order: 1;
    text-align: left;
    max-width: none;
    width: 45%;
    align-items: flex-start;
    flex-shrink: 0;
  }

  .psicog-hero__badge {
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 22px;
  }

  .psicog-hero__badge-dot {
    width: 12px;
    height: 12px;
  }

  .psicog-hero__title {
    font-size: 68px;
    margin-bottom: 22px;
  }

  .psicog-hero__highlight {
    padding: 7px 16px;
  }

  .psicog-hero__text {
    font-size: 19px;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .psicog-hero__buttons {
    max-width: 420px;
  }

  .psicog-hero__btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .psicog-hero__social {
    margin-top: 28px;
    gap: 18px;
    justify-content: flex-start;
  }

  .psicog-hero__social span {
    font-size: 15px;
  }

  .psicog-hero__social ul {
    gap: 14px;
  }

  .psicog-hero__social li a {
    width: 46px;
    height: 46px;
  }

  .psicog-hero__social li a img,
  .psicog-hero__social li a svg {
    width: 21px;
    height: 21px;
  }

  .psicog-hero__scroll {
    display: block;
    position: absolute;
    left: 0;
    bottom: 32px;
  }

  .psicog-hero__scroll img {
    width: 30px;
    height: auto;
  }
}

/* Extra Large - 1280px */
@media (min-width: 1280px) {
  .psicog-hero__wrap {
    gap: 30px;
  }

  .psicog-hero__avatar {
    max-width: none;
    width: 45%;
  }

  .psicog-hero__avatar img {
    max-height: 550px;
  }

  .psicog-hero__content {
    max-width: none;
    width: 45%;
  }

  .psicog-hero__badge {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .psicog-hero__title {
    font-size: 76px;
    margin-bottom: 24px;
  }

  .psicog-hero__highlight {
    padding: 8px 18px;
  }

  .psicog-hero__text {
    font-size: 21px;
    max-width: 100%;
  }

  .psicog-hero__buttons {
    max-width: 450px;
    gap: 14px;
  }

  .psicog-hero__btn {
    padding: 13px 22px;
    font-size: 15px;
  }

  .psicog-hero__btn svg {
    width: 18px;
    height: 18px;
  }

  .psicog-hero__video .anim_circle {
    width: 160px;
    height: 160px;
  }

  .psicog-hero__video .svg {
    width: 22px;
    height: 22px;
  }

  .psicog-hero__social {
    margin-top: 32px;
    gap: 20px;
  }

  .psicog-hero__social span {
    font-size: 16px;
  }

  .psicog-hero__social ul {
    gap: 16px;
  }

  .psicog-hero__social li a {
    width: 50px;
    height: 50px;
  }

  .psicog-hero__social li a img,
  .psicog-hero__social li a svg {
    width: 22px;
    height: 22px;
  }

  .psicog-hero__scroll {
    bottom: 40px;
  }

  .psicog-hero__scroll img {
    width: 34px;
  }
}

/* Extra Extra Large - 1600px */
@media (min-width: 1600px) {
  .psicog-hero__wrap {
    gap: 40px;
  }

  .psicog-hero__avatar {
    max-width: none;
    width: 45%;
  }

  .psicog-hero__avatar img {
    max-height: 600px;
  }

  .psicog-hero__content {
    width: 45%;
  }

  .psicog-hero__title {
    font-size: 84px;
  }

  .psicog-hero__text {
    font-size: 23px;
    max-width: 100%;
  }

  .psicog-hero__video .anim_circle {
    width: 180px;
    height: 180px;
  }

  .psicog-hero__video .svg {
    width: 24px;
    height: 24px;
  }

  .psicog-hero__social {
    margin-top: 36px;
    gap: 22px;
  }

  .psicog-hero__social span {
    font-size: 16px;
  }

  .psicog-hero__social ul {
    gap: 18px;
  }

  .psicog-hero__social li a {
    width: 52px;
    height: 52px;
  }

  .psicog-hero__social li a img,
  .psicog-hero__social li a svg {
    width: 23px;
    height: 23px;
  }

  .psicog-hero__scroll {
    bottom: 45px;
  }

  .psicog-hero__scroll img {
    width: 36px;
  }
}

/* Animation */
@keyframes animCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
