:root {
  --urania-orange: #ff8400;
  --urania-orange-dark: #dc6f00;
  --urania-black: #0b0b0b;
  --urania-charcoal: #171717;
  --urania-white: #ffffff;
  --urania-gray-50: #f7f7f5;
  --urania-gray-100: #efefec;
  --urania-gray-300: #d8d8d2;
  --urania-gray-600: #686863;
  --urania-shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.08);
  --urania-shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.16);
}

html {
  scroll-behavior: smooth;
}
body {
  color: var(--urania-black);
}
.urania-no-padding {
  padding: 0;
}

.urania-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}
.urania-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.urania-delay-1 {
  transition-delay: 0.12s;
}
.urania-delay-2 {
  transition-delay: 0.24s;
}
.urania-delay-3 {
  transition-delay: 0.36s;
}

.urania-section-kicker,
.urania-eyebrow {
  display: inline-block;
  color: var(--urania-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.urania-section-kicker-light {
  color: #ffb25f;
}
.urania-section-title {
  margin: 12px 0 16px;
  color: var(--urania-black);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
}
.urania-section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--urania-gray-600);
  font-size: 18px;
  line-height: 1.75;
}

.urania-btn {
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.urania-btn:hover,
.urania-btn:focus {
  transform: translateY(-3px);
  text-decoration: none;
}
.urania-btn i {
  margin-right: 8px;
}
.urania-btn-primary {
  background: var(--urania-orange);
  color: var(--urania-white) !important;
  box-shadow: 0 14px 28px rgba(255, 132, 0, 0.25);
}
.urania-btn-light:hover,
.urania-btn-light:focus {
  border-color: var(--urania-black);
  background: var(--urania-black);
  color: var(--urania-white) !important;
}
.urania-btn-light {
  border-color: rgba(0, 0, 0, 0.48);
  background: rgba(255, 255, 255, 0.72);
  color: var(--urania-black) !important;
}
.urania-btn-light:hover,
.urania-btn-light:focus {
  background: var(--urania-white);
  color: var(--urania-black) !important;
}
.urania-btn-dark {
  background: var(--urania-black);
  color: var(--urania-white) !important;
}
.urania-btn-dark:hover {
  background: var(--urania-orange);
}
.urania-btn-white {
  background: var(--urania-white);
  color: var(--urania-black) !important;
}
.urania-btn-white:hover {
  background: var(--urania-black);
  color: var(--urania-white) !important;
}

/* HERO */
.urania-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;

  /* Se sube visualmente la imagen de fondo */
  background-image: url("../../imagenes/fondo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 18%;
}

.urania-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.48);
}

/* Se elimina por completo el cuadro geométrico derecho */
.urania-hero::after {
  display: none;
  content: none;
}

.urania-hero-container {
  position: relative;
  z-index: 2;
}

.urania-hero-content {
  padding: 70px 0 170px;
}

.urania-hero-logo {
  display: block;
  width: 280px;
  max-width: 80%;
  height: auto;
  margin: 0 0 28px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.urania-hero-title {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--urania-black);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
}

.urania-hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.urania-hero-actions .urania-btn {
  margin: 0 10px 10px 0;
}

.urania-hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: rgba(8, 8, 8, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.urania-stat {
  min-height: 125px;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.urania-stat strong {
  display: block;
  color: var(--urania-orange);
  font-size: 34px;
  line-height: 1;
}

.urania-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ABOUT */
.urania-about {
  padding: 110px 0;
  background: var(--urania-gray-50);
}
.urania-about-row {
  display: flex;
  align-items: center;
}
.urania-about-visual {
  position: relative;
  min-height: 500px;
  padding: 50px;
  background: url("../../imagenes/fondo2.jpg") center/cover no-repeat;
  box-shadow: var(--urania-shadow-lg);
}
.urania-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(0, 0, 0, 0.08)
  );
}
.urania-about-title-image {
  position: relative;
  z-index: 2;
  width: 92%;
  height: auto;
  margin-top: 45px;
}
.urania-about-frame {
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.urania-about-badge {
  position: absolute;
  right: -35px;
  bottom: 40px;
  z-index: 3;
  width: 220px;
  padding: 22px;
  background: var(--urania-orange);
  color: var(--urania-white);
  box-shadow: var(--urania-shadow-sm);
}
.urania-about-badge i {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}
.urania-about-badge span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urania-about-content {
  padding-left: 70px;
}
.urania-about-content h2 {
  margin: 12px 0 22px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}
.urania-about-content p {
  color: var(--urania-gray-600);
  font-size: 17px;
  line-height: 1.75;
}
.urania-about-content .urania-lead {
  color: var(--urania-black);
  font-size: 20px;
  font-weight: 700;
}
.urania-check-list {
  margin: 28px 0;
}
.urania-check-list div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--urania-charcoal);
  font-size: 16px;
}
.urania-check-list i {
  flex: 0 0 28px;
  margin-top: 3px;
  color: var(--urania-orange);
}
.urania-text-link {
  color: var(--urania-black);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urania-text-link i {
  margin-left: 8px;
  color: var(--urania-orange);
  transition: transform 0.25s ease;
}
.urania-text-link:hover {
  color: var(--urania-orange);
  text-decoration: none;
}
.urania-text-link:hover i {
  transform: translateX(5px);
}

/* SERVICIOS ORIGINALES */
.urania-original-services {
  padding: 48px 0 54px;
  background: url("../../imagenes/fondo3.jpg") center center / cover no-repeat;
}

.urania-original-services-row {
  display: flex;
  align-items: center;
}

.urania-original-services-title,
.urania-original-services-circles {
  display: inline-block;
  width: 90%;
  height: auto;
}

.urania-original-services-link {
  display: inline-block;
  width: 100%;
}

.urania-original-services-circles {
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.urania-original-services-link:hover .urania-original-services-circles,
.urania-original-services-link:focus .urania-original-services-circles {
  transform: scale(1.025);
  filter: brightness(1.03);
}

/* SERVICES */
.urania-services {
  padding: 110px 0 85px;
  background: var(--urania-white);
}
.urania-services-grid {
  margin-top: 55px;
}
.urania-service-card {
  position: relative;
  min-height: 370px;
  margin-bottom: 30px;
  padding: 42px 34px 34px;
  border: 1px solid var(--urania-gray-100);
  background: var(--urania-white);
  box-shadow: var(--urania-shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.urania-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 132, 0, 0.45);
  box-shadow: var(--urania-shadow-lg);
}
.urania-service-card-featured {
  background: var(--urania-black);
  color: var(--urania-white);
}
.urania-service-card-featured h3,
.urania-service-card-featured p,
.urania-service-card-featured a {
  color: var(--urania-white) !important;
}
.urania-service-card-featured a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--urania-white) !important;
}

.urania-service-card-featured a i {
  color: var(--urania-orange) !important;
}
.urania-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  background: var(--urania-orange);
  color: var(--urania-white);
  font-size: 28px;
}
.urania-service-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(0, 0, 0, 0.09);
  font-size: 56px;
  font-weight: 900;
}
.urania-service-card-featured .urania-service-number {
  color: rgba(255, 255, 255, 0.1);
}
.urania-service-card h3 {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 800;
}
.urania-service-card p {
  min-height: 94px;
  color: var(--urania-gray-600);
  font-size: 16px;
  line-height: 1.7;
}
.urania-service-card a {
  color: var(--urania-black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urania-service-card a i {
  margin-left: 6px;
  color: var(--urania-orange);
}

/* BENEFITS */
.urania-benefits {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--urania-charcoal);
  color: var(--urania-white);
}
.urania-benefits::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -160px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 132, 0, 0.09);
  transform: rotate(45deg);
}
.urania-benefits-layout {
  display: flex;
  align-items: center;
}
.urania-benefits h2 {
  margin: 12px 0 20px;
  color: var(--urania-white);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}
.urania-benefits > .container > .row > .col-md-5 > p {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}
.urania-benefit-item {
  display: flex;
  min-height: 185px;
  margin: 15px 0;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.urania-benefit-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.075);
}
.urania-benefit-item > i {
  flex: 0 0 48px;
  color: var(--urania-orange);
  font-size: 30px;
}
.urania-benefit-item h3 {
  margin: 0 0 9px;
  color: var(--urania-white);
  font-size: 19px;
  font-weight: 800;
}
.urania-benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

/* VIDEO */
.urania-video-section {
  padding: 110px 0;
  background: var(--urania-gray-50);
}
.urania-video-row {
  display: flex;
  align-items: center;
}
.urania-video-section h2 {
  margin: 12px 0 18px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
}
.urania-video-section p {
  color: var(--urania-gray-600);
  font-size: 17px;
  line-height: 1.75;
}
.urania-years-image {
  display: block;
  width: 78%;
  max-width: 360px;
  height: auto;
  margin-top: 30px;
}
.urania-video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: var(--urania-black);
  box-shadow: var(--urania-shadow-lg);
}
.urania-video-wrap video {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.urania-video-wrap:hover video {
  transform: scale(1.025);
}
.urania-video-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  padding: 13px 18px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--urania-white);
  font-weight: 700;
}
.urania-video-label i {
  margin-right: 10px;
  color: var(--urania-orange);
}

/* PROJECTS */
.urania-projects {
  padding: 105px 0 0;
  background: var(--urania-white);
}
.urania-projects-heading-row {
  margin-bottom: 55px;
}
.urania-project-grid {
  margin: 0;
}
.urania-project-card {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: var(--urania-black);
}
.urania-project-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.urania-project-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.urania-project-copy {
  position: absolute;
  right: 55px;
  bottom: 50px;
  left: 55px;
  color: var(--urania-white);
}
.urania-project-copy small {
  display: block;
  margin-bottom: 9px;
  color: #ffb25f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.urania-project-copy strong {
  display: block;
  max-width: 520px;
  font-size: 34px;
  line-height: 1.18;
}
.urania-project-copy em {
  display: inline-block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.urania-project-copy em i {
  margin-left: 8px;
  color: var(--urania-orange);
}
.urania-project-card:hover img {
  transform: scale(1.06);
}

.urania-projects-cta {
  padding: 45px 15px 70px;
}

/* FINAL CTA */
.urania-final-cta {
  padding: 75px 0;
  background: var(--urania-orange);
  color: var(--urania-white);
}
.urania-final-cta-row {
  display: flex;
  align-items: center;
}
.urania-final-cta h2 {
  margin: 10px 0 10px;
  color: var(--urania-white);
  font-size: 42px;
  font-weight: 800;
}
.urania-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

@media (max-width: 991px) {
  .urania-hero {
    min-height: 720px;
    background-position: center 12%;
  }

  .urania-hero-content {
    padding-top: 55px;
  }

  .urania-hero-title {
    font-size: 46px;
  }
  .urania-about-row,
  .urania-benefits-layout,
  .urania-video-row,
  .urania-final-cta-row {
    display: block;
  }
  .urania-about-content {
    padding: 70px 0 0;
  }
  .urania-about-badge {
    right: 25px;
  }
  .urania-benefits > .container > .row > .col-md-5 {
    margin-bottom: 35px;
  }
  .urania-video-wrap {
    margin-top: 45px;
  }
  .urania-final-cta .text-right {
    margin-top: 30px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .urania-section-title,
  .urania-about-content h2,
  .urania-benefits h2,
  .urania-video-section h2,
  .urania-final-cta h2 {
    font-size: 32px;
  }
  .urania-section-intro {
    font-size: 16px;
  }
  .urania-hero {
    min-height: auto;
    background-position: center top;
  }

  .urania-hero::before {
    background: rgba(255, 255, 255, 0.58);
  }

  .urania-hero-content {
    padding: 42px 0 55px;
    text-align: center;
  }

  .urania-hero-logo {
    width: 210px;
    margin: 0 auto 22px;
  }

  .urania-hero-title {
    font-size: 36px;
    line-height: 1.12;
  }

  .urania-hero-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .urania-hero-actions .urania-btn {
    display: block;
    width: 100%;
    margin: 0 0 12px;
  }
  .urania-hero-stats {
    position: relative;
  }
  .urania-stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .urania-about,
  .urania-services,
  .urania-benefits,
  .urania-video-section,
  .urania-projects {
    padding-top: 75px;
  }
  .urania-about-visual {
    min-height: 340px;
    padding: 32px;
  }
  .urania-about-title-image {
    width: 100%;
    margin-top: 30px;
  }
  .urania-about-badge {
    right: 15px;
    bottom: 20px;
    width: 190px;
  }
  .urania-about-content {
    padding-top: 55px;
  }
  .urania-service-card {
    min-height: auto;
  }
  .urania-service-card p {
    min-height: auto;
  }
  .urania-video-wrap,
  .urania-video-wrap video {
    min-height: 280px;
  }
  .urania-project-card,
  .urania-project-card img {
    min-height: 390px;
    height: 390px;
  }
  .urania-project-copy {
    right: 28px;
    bottom: 30px;
    left: 28px;
  }
  .urania-project-copy strong {
    font-size: 27px;
  }
  .urania-final-cta {
    padding: 60px 0;
    text-align: center;
  }
  .urania-final-cta .text-right {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .urania-reveal,
  .urania-btn,
  .urania-service-card,
  .urania-project-card img,
  .urania-video-wrap video {
    transition: none !important;
    transform: none !important;
  }
  .urania-reveal {
    opacity: 1 !important;
  }
}

@media (max-width: 767px) {
  .urania-original-services {
    padding: 45px 0 30px;
  }

  .urania-original-services-row {
    display: block;
  }

  .urania-original-services-title,
  .urania-original-services-circles {
    width: 94%;
    margin-bottom: 28px;
  }
}
