/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eef9fd;

  /* Because we want header to be sticky later */
  height: 8rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 7rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #152943;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #4fd1c5;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #53beeb;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #3a85a5;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.97);
}

.sticky .section-hero {
  margin-top: 8rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #dcf6f3;

  background-image:
    linear-gradient(rgba(34, 34, 34, 0.6), rgba(34, 34, 34, 0.6)),
    url(../img/hero-min.webp);
  background-size: cover;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;

  color: #dcf6f3;
}

.hero-title {
  color: #edfaf9;
}

/* .hero-img-box {
  width: 100%; 
} */

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #87d2f1;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 2rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;

  background-color: #cbecf9;
  z-index: -2;
}

.step-img {
  width: 45%;
  display: block;
  transform: translateX(23px);
}

.step-img-2 {
  width: 34%;
  display: block;
  /* transform: translateX(30px); */
}

.step-img-3 {
  width: 47%;
  display: block;
}

/**************************/
/* SERVICES SECTION */
/**************************/

.section-meals {
  padding: 9.6rem 0;
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #0c1726;
  border-radius: 100px;
  font-weight: 600;
}

.meal-img {
  width: 100%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/**************************/
/* PROCESS SECTION */
/**************************/

.section-process {
  padding: 9.6rem 0;
}

.process-window {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.process-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.card-process {
  display: flex;
  gap: 0;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
}

.process-number {
  font-size: 7rem;
  font-weight: 600;
  color: #87d2f1;
  margin-bottom: 1.2rem;
}

.process-img {
  flex: 0 0 35%;
  overflow: hidden;
}

.process-img img {
  width: 100%;
  display: block;
}

.process-text-container {
  padding: 3rem 3rem;
}

.process-title {
  font-size: 3.4rem;
  margin: 1rem 0;
}

.process-text {
  font-size: 1.8rem;
  line-height: 1.6;
}

.hidden {
  display: none;
}

/**************************/
/* MEALS SECTION */
/**************************/

.dentist {
  max-width: 140rem;
}

.section-pricing {
  padding: 9.6rem 0;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #caf1ee;
  padding: 4.6rem;
}

.pricing-plan--ender {
  border: 2px solid #caf1ee;
  padding: 4.6rem;
}

.odontologo-img {
  width: 100%;
  margin-bottom: 3.2rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #47bcb1;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 3.2rem;
  font-weight: 600;
  color: #152943;
  margin-bottom: 1.6rem;
  align-self: center;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 2rem;
  line-height: 1.6;
  color: #152943;
  font-weight: 700;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #3a85a5;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #cbecf9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.2rem;
  color: #152943;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.section-featured {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/***************************/
/*******SERVICES************/
/***************************/

.section-services {
  padding: 12rem 0;
  background-color: #f8fafc;
}

.services-description {
  max-width: 75rem;
  margin: 2.4rem auto 8rem auto;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.8;
  color: #6b7280;
}

.services-slider {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.slider-window {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  gap: 3.2rem;
  transition: transform 0.55s ease;
}

.service-card {
  min-width: calc((100% - 6.4rem) / 3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.06);
  transition: all 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12);
}

.service-img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.service-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-size: 2.6rem;
  color: #0f3d56;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.service-text {
  font-size: 1.7rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: auto;
}

.slider-btn {
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #53beeb;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.slider-btn:hover {
  background-color: #3a85a5;
  transform: scale(1.05);
}

.slider-btn ion-icon {
  font-size: 3rem;
}

.service-img {
  transition: transform 0.45s;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-link {
  position: relative;
}

.service-link:hover {
  padding-left: 0.4rem;
}

.slider-track {
  will-change: transform;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #47bcb1;
}
/*==================================
MAPA
==================================*/

.section-map {
  padding: 10rem 0;
  background: #f8fafc;
}

.contact {
  min-height: 90vh;
  margin-top: 9rem;
  background-image:
    linear-gradient(rgba(15, 61, 86, 0.65), rgba(15, 61, 86, 0.65)),
    url("../img/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.map-layout {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.map-container {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 50rem;
  border: none;
}

.location-card {
  background: white;

  padding: 4rem;
  padding-top: 7rem;
  border-radius: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.08);
}

.location-card h3 {
  font-size: 3rem;
  color: #16325b;
  margin-bottom: 2rem;
}

.location-card > p {
  font-size: 1.7rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.location-info p {
  font-size: 1.6rem;
  color: #555;
}

.location-info strong {
  color: #16325b;
}

.btn-low {
  background-color: #cbecf9;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 5rem 0;
  border-top: 1px solid #cbecf9;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  align-items: center;
}

.center {
  display: flex;
  align-items: center;
}

.logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-col img {
  filter: brightness(0);
  opacity: 50%;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: 2rem;
  align-self: center;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  color: #767676;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
