:root {
  --pink-main: #ffb7d5;
  --pink-hover: #ff8fa3;
  --lavender-soft: #e6ddff;
  --beige: rgb(255, 255, 240);
  --bg-light: #fff7fb;
  --text-dark: #4b4453;
  --white: #ffffff;
}

/*RESETEO*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*ESTILOS PRINCIPALES*/
html,
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7em;
  background: var(--beige);
  color: var(--text-dark);
}

a {
  color: var(--text-dark);
  text-decoration: none;
}

h1,
h2,
h3 {
  color: var(--text-dark);
  text-shadow: var(--white);
}

.p-color {
  color: purple;
  padding-top: 20px;
}

.logo a {
  color: var(--white);
  transition: color 0.3s, text-shadow 0.3s;
}

.logo a.current:hover {
  color: var(--lavender-soft) !important;
  text-shadow: 0 0 8px rgba(230, 230, 250, 0.8);
}

span {
    color: var(--pink-main);
    cursor: pointer;
    transition: 0.3s;
}

span:hover {
    color: var(--pink-hover);
}

/*UTILIDADES*/
.container {
  margin: auto;
  max-width: 100%;
  overflow: auto;
  padding: 0 20px;
}

/*PADDING*/
.py-1 {
  padding: 10px 0;
}

.py-2 {
  padding: 20px 0;
}

.py-3 {
  padding: 30px 0;
}

/*BOTON*/
.btn {
  display: inline-block;
  font-size: 18px;
  color: var(--white);
  background: var(--pink-main);
  margin-top: 100px;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--pink-hover);
}

/*NAVEGACIÓN*/
#navbar {
  background: var(--pink-main);
  position: sticky;
  top: 0;
}

#navbar .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar .img-logo {
  width: 61px;
  height: 61px;
  padding-top: 2px;
}

#navbar a {
  color: var(--white);
}

#navbar h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  font-size: 50px;
}

#navbar ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

#navbar ul li {
  float: left;
}

#navbar ul li a {
  padding: 20px;
  text-align: center;
  display: block;
  font-size: 18px;
  color: var(--white);
  background: var(--pink-main);
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

#navbar ul li a:hover,
#navbar ul li a.current {
  background: var(--pink-hover);
  color: var(--white);
}

/*SHOWCASE*/
#showcase {
  background: url(../img/image-600-250-SL.png) no-repeat center/contain;
  height: 400px;
  width: 95%;
}

#showcase .showcase-content {
  color: white;
  text-align: center;
  padding-top: 70px;
}

#showcase .showcase-content h1 {
  font-size: 60px;
  line-height: 1.2em;
}

#showcase .showcase-content p {
  padding-bottom: 20px;
  line-height: 1.7em;
}

/*HOME*/
#home-info {
  height: 400px;
}

#home-info .info-img {
  float: left;
  width: 50%;
  background: url(../img/Logo\ Gracias.png) no-repeat left/contain;
  background-position: center;
  height: 100%;
}

#home-info .info-content {
  float: right;
  width: 50%;
  height: 100%;
  text-align: center;
  padding: 50px 30px;
  overflow: hidden;
}

/*FEATURES*/
.box {
  float: left;
  width: 33.3%;
  padding: 50px;
  text-align: center;
}

.box i {
  margin-bottom: 20px;
}

.bg-gray {
  background: #f0eaf0;
  color: var(--text-dark);
}

.bg-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.bg-primary {
  background: var(--lavender-soft);
  color: var(--text-dark);
}

/*FOOTER*/
#main-footer {
  text-align: center;
  background: var(--pink-main);
  color: var(--white);
  padding: 20px;
}

/*EMPRESAS*/
#about-info .info-left {
  float: left;
  width: 50%;
  min-height: 100%;
  margin-top: 30px;
}

#about-info .history {
  margin-top: 50px;
}

#about-info .info-right {
  float: right;
  width: 50%;
  min-height: 100%;
}

#about-info .info-right img {
  display: block;
  margin: auto;
  width: 70%;
  border-radius: 50%;
}

.l-heading {
  font-size: 40px;
  padding-top: 3px;
}

#testimonials {
  background: var(--pink-main);
  height: 600px;
  padding-top: 20px;
}

#testimonials h2 {
  color: var(--text-dark);
  text-align: center;
  padding-bottom: 48px;
}

#testimonials .testimonial {
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 5px;
  opacity: 0.9;
}

#testimonials .testimonial img {
  width: 90px;
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

/*CONTACTO*/
#contact-form .form-group {
  display: block;
  margin-bottom: 5px;
}

#contact-form label {
  display: block;
  margin-bottom: 5px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border-color: var(--pink-hover);
}

#contact-form textarea {
  height: 234px;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--lavender-soft);
  box-shadow: 0 0 0 3px var(--lavender-soft, 0.6);
}
