@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --primary: #1A1A2E;
  --dark: #4E4E50;
  --light: #FAFAFA;
}

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {

  overflow-x: hidden;
  background-color: var(--light);
  
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--light);
  position: relative;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /*Disminuir tamaño del div*/
  width: 150px;
}

.logo img{
  height: 100%;
  width: 100%;
}

.nav-links {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-links a.active {
  background-color: var(--primary);
  border-radius: 30px 20px 12px 20px;
  color: var(--light);
}

.contact-btn {
  display: flex;
  background: var(--dark);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px 20px 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}


.contact-btn:hover {
  background-color: #333;
}


.contact-btn1 {
  display: none;
  background: var(--dark);
  color: var(--light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px 20px 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-btn1:hover {
  background-color: #333;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  text-decoration: none;
  
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.hero-content {
  display: flex;
  padding-left: 20px;
  flex-direction: column;
  gap: 2rem;
}

.sparkle {
  font-size: 2rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
}

.thumbnail {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.thumbnail img {
  width: 80px;
  height: 48px;
  object-fit: cover;
  border-radius: 30px 20px;
}

.cta-container {
  position: relative;
  display: inline-block;
}

.booking-btn {
  background: var(--primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-btn:hover {
  background-color: #f0ad45;
}

.curved-arrow {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 120px;
  opacity: 0.8;
}

.hero-image {
  position: relative;
  left: 20px;
  /* width: 1000px; */
  padding-bottom: 400px;
}

.circular-image {
  position: absolute;
  inset: 0;
  border-radius: 190px 0px 0px 140px;
  border-left: 3.5px dotted #979696;
  border-top: 3.5px dotted #979696;
  border-bottom: 3.5px dotted #979696;
  padding: 0.7rem;
  overflow: hidden;
}

.circular-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 170px 140px;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 98%,
    #e5e7eb 98%,
    #e5e7eb 100%
  );
}

.circular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 180px 0px 0px 135px;
}

@media (max-width: 768px) {
  .contact-btn{
    color: white;
  }
}


@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    padding: 4rem 2rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-content {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }
}
/* Media Queries */
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .contact-btn {
    display: block;
  }

  .contact-btn1 {
    display: block;
  }
}

/* CSS */
.problema-section {
  background-color: #FAFAFA;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.titulo {
  font-size: 2.8rem;
  color: #4E4E50;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.titulo:hover {
  transform: scale(1.05);
}

.descripcion {
  font-size: 1.2rem;
  color: #4E4E50;
  line-height: 1.7;
  font-weight: 500;
}

.bloque {
  display: block;
  margin-top: 20px;
}

.enfasis {
  font-style: italic;
  font-weight: 600;
}

.boton-contenedor {
  margin-top: 40px;
}

.boton {
  background-color: #4E4E50;
  color: white;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.boton a {
  color: white;
  text-decoration: none;
}

.boton:hover {
  background-color: #3a3a3c;
}


.difference-section {
  text-align: center;
  padding: 50px 20px;
}

.heading .subheading {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.heading h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
.features-header {
  text-align: center;
}

.features-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.features-title {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 40px;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 1200px; */
  margin: 30px auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 750px; /* Show one full item and half of the two surrounding items */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  opacity: 0.5;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle.orange {
  background-color: #B9AEDC;
}

.circle.yellow {
  background-color: #B9AEDC;
}

.circle.red {
  background-color: #B9AEDC;
}




@media (max-width: 768px) {
  .carousel-item {
    flex-direction: column;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 10px;
    box-sizing: border-box;
  }

  .description {
    max-width: 90%;
    margin: 20px 0;
  }

  .circle {
    width: 100px;
    height: 100px;
    margin: 10px 0;
  }

  .carousel-track {
    gap: 0 !important;
  }

  .features-title {
    font-size: 2rem;
    text-align: center;
    flex-direction: column;
  }

  .navigation {
    margin-top: 20px;
  }
}



.icon {
  width: 50px;
  height: 50px;
}

.icon.wavy {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 4c6 16 15-4 21 12"></path></svg>');
  background-size: cover;
}

.icon.star {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><polygon stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="12 2 15 8 22 9 17 14 18 22 12 18 6 22 7 14 2 9 9 8 12 2"></polygon></svg>');
  background-size: cover;
}

.description {
  max-width: 300px;
  padding: 10px;
  text-align: center;
}

.description h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.description p {
  font-size: 14px;
  line-height: 1.6;
}

.navigation {
  margin-top: 20px;
}

.nav-btn {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
}

.nav-btn:hover {
  background-color: #555;
}
/* .carousel-item{
    border:1px solid red;
} */
.description {
  border: 2px solid rgb(170, 170, 170);
  padding: 20px 50px;
  border-radius: 100px;
  margin: 20px;
}

.pink {
  background-color: #ffb4a6;
}

/* Services section styles */
.constr-services {
  padding: 64px 24px;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding-bottom: 0px;
}

.constr-header {
  text-align: center;
  margin-bottom: 48px;
}

.constr-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 8px;
}

.constr-title {
  font-size: 48px;
  color: #111827;
  font-weight: 600;
}

.constr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 20px;
  height: 550px;
  margin-top: -40px;
}

.constr-card {
  position: relative;
  background: #FAFAFA;
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0px 50px;
  transition: transform 0.3s ease;
  overflow: hidden;
  min-height: 360px;
}

.constr-card:hover {
  transform: translateY(-30px);
}

.constr-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 58%;
  height: 100%;;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.constr-content {
  position: relative;
  text-align: center;
  
  z-index: 2;
  left: 10%;
  padding-right: 50px;
}



.constr-content h3 {
  font-size: 24px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 600;
}

.constr-content p {
  color: #4b5563;
  font-size: 16px;
}

.funcionamiento {
  padding: 64px 24px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .constr-services {
    padding: 48px 16px;
  }
  .funcionamiento {
    padding: 48px 16px;
    padding-top: 600px;
  }

  .constr-title {
    font-size: 36px;
  }

  .constr-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .constr-blob {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 480px) {
  .constr-card {
    padding: 24px;
  }

  .constr-content h3 {
    font-size: 20px;
  }
}
.hero-section {
  text-align: center;
  width: 99%;
  /* max-width: 600px; */
}
.hero-container {
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* border:1px solid red; */
  width: 100%;
}

.hero-slide {
 
  top: 0;
  left: 0;
  max-width: 100vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

#next-btn {
  margin-top: 20px;
  padding: 15px 20px;
  border: none;
  background-color: #3a3938;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;

  transition: background-color 0.3s ease;
}

#next-btn:hover {
  background-color: #e64a19;
}


.responsive-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 120px;
 
}

/* Cada bloque */
.one, .two, .three, .four {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Estilos de imagen */
.oneImg, .twoImg, .threeImg, .fourImg {
  width: 200px;
  height: 300px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}


.oneImg {
  background-image: url('https://img.freepik.com/premium-photo/woman-mindset-mind-psychology-concept-mental-health-intuition_183314-13200.jpg?w=1380');
}
.twoImg {

  background-image: url(https://img.freepik.com/free-photo/young-lady-with-tablet-table-autumn-park_23-2147883225.jpg?t=st=1749084866~exp=1749088466~hmac=6ee10b2a4299db26aa2cabb92abea3f9a116a36851aeb15fe56f20ccc37bce3a&w=1380);
}
.threeImg {
  background-image: url(https://static.vecteezy.com/system/resources/previews/001/308/423/large_2x/voice-technology-design-vector.jpg);
}
.fourImg {
  background-image: url('https://img.freepik.com/premium-photo/serene-sweat-yoga-buddies-prep-with-fitness-apps-mats-zen_1034537-126544.jpg?w=1380');
}

/* Texto */
.oneTxt p, .twoTxt p, .threeTxt p, .fourTxt p {
  font-size: 16px;
  font-weight: 500;
  max-width: 200px;
}


@media (max-width: 768px) {
  .one, .two, .three, .four {
    width: 90%;
  }

  .responsive-wrapper {
    gap: 24px;
  }
}


.info-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 50px 20px;
  background-color: #FAFAFA;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-header p {
  font-size: 1.2rem;
  color: #555;
}

.info-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  background-color: rgb(249, 245, 239);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

.stat p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.info-header .background-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-25%);
  width: 500px;
  height: 150px;
  border-radius: 100px 200px 100px 300px;
  z-index: -1;
}

/* 🔁 Media Queries */
@media (max-width: 768px) {
  .info-header h2 {
    font-size: 1.5rem;
  }

  .info-header p {
    font-size: 1rem;
  }

  .stat {
    width: 120px;
    height: 120px;
  }

  .stat p {
    font-size: 0.75rem;
  }

  .info-header .background-shape {
    width: 250px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .stat {
    width: 200px;
    height: 100px;
  }

  .stat p {
    font-size: 0.7rem;
  }

  .info-header h2 {
    font-size: 1.3rem;
  }

  .info-header p {
    font-size: 0.9rem;
  }

  .info-header .background-shape {
    width: 200px;
    height: 100px;
  }
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #2F2F2F;
  color: #fff;
  font-size: 16px;
  margin-top: 40px;
}

.info-section {
  background-color: #FAFAFA;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.info-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.info-header h2 {
  font-size: 2.5rem;
  color: #4E4E50;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeInUp 1s ease-in-out;
}

.info-header p {
  font-size: 1.2rem;
  color: #4E4E50;
  font-weight: 500;
  animation: fadeInUp 1.2s ease-in-out;
}

.background-shape {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%) rotate(6deg);
  width: 120%;
  height: 200px;
  background-color: #B9AEDC;
  z-index: 1;
  border-radius: 40% 40% 0 0;
}

.info-stats {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

@media (min-width: 768px) {
  .info-stats {
    flex-direction: row;
    justify-content: space-between;
  }
}

.stat {
  background: white;
  border: 2px solid #4E4E50;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #4E4E50;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animaciones suaves */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.video {
  margin-top: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video video {
  max-width: 60%;
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
