@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap");


/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Variables */
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --text-color: #333;
  --background-color: #f4f4f4;
  --white: #ffffff;
}

/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Navegación */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-menu {
  display: flex;
  list-style-type: none;
}

.navbar-menu li {
  margin-left: 20px;
}

.navbar-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--primary-color);
}

/* Hero section */
.hero {
  background-image: url('path-to-your-health-related-image.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}


.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

/* Servicios */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 80px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

/* Equipo */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Contacto */



body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}
.contact-section {
  text-align: center;
  padding: 200px 38px;
  background: linear-gradient(135deg, #185268, #94c120);
  color: white;
}
.logo {
  max-width: 200px;
  margin-bottom: 30px;
}
.contact-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.contact-section p {
  font-size: 1.7em;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.contact-icons a {
  color: white;
  font-size: 40px;
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.contact-icons a:hover {
  transform: translateY(-5px);
  background-color: #94c120;
  box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}
.contact-icons a:active {
  transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
.navbar-brand img {
  width: 140px ;
  height: 40px;
  margin: -5em
}

body {
  font-family: "Poppins", sans-serif;
  --black: #242424;
  --white: #f5f5f5;
  --pill: #e0d4be;
  --red: #cc033f;
}



ul {
  list-style: none;
}

.page-wrap {
  position: relative;
  background-color: #ffffff;
}

header {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}


/*  MAIN: Slider Section
----------------------------------------------- */
main {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
article {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--i);
}

.hero-info {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 8;
}
.hero-info h2 {
  font-size: clamp(7rem, 10vw, 100%);
  line-height: clamp(7rem, 10vw, 10rem);
  text-transform: uppercase;
}
.hero-info h1 {
  color: var(--white);
  font-size: clamp(6rem, 3.5vw, 7rem);
  line-height: clamp(6rem, 5.5vw, 7rem);
  text-transform: none;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.hero-info h3 {
  color: #aee84c;
  font-size: 5rem;
  font-weight: normal;
  margin-top: 0.5em;
}
@supports (-webkit-text-stroke: 3px var(--pill)) {
  .hero-info h2 {
    color: transparent;
    -webkit-text-stroke: 4px var(--pill);
    text-shadow: none;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hi-1 {
  background-image: url("Images/Landing/H1.jpg");
  filter: brightness(40%);
}

.hi-2 {
  background-image: url("Images/Landing/H2.jpg");
  filter: brightness(40%);
}

.hi-3 {
  background-image: url("Images/Landing/H3.jpg");
  filter: brightness(40%);
}

.hi-4 {
  background-image: url("Images/Landing/H4.jpg");
  filter: brightness(40%);
}


.hi-5 {
  background-image: url("Images/Landing/H1.jpg");
  filter: brightness(40%);
}



/*INformatic section */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: 'Inter', sans-serif;
}

html {
  font-size: 62.5%;
}


sectioninfo {
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 0 3rem rgba(0,0,0,.3);
  border-radius: .8rem;
}

sectioninfo > h2{
  font-size: 90px;
  letter-spacing: 8.2rem;
  font-weight: 900;
  color: var(--color-primary);
}


maininfo {
  width: 100vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.grid-area-1 {
  place-items: center;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: auto;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 2fr;
  gap: 4rem;
}

.distance {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.distance__section {
  position: relative;
}
.distance__section::after {
  content: '';
  height: 80%;
  width: 1.6rem;
  background-color: var(--color-primary-light);
  position: absolute;
  right: 0;
  top: 10%;
  border-radius: 1.2rem 0 0 1.2rem;
  box-shadow: inset .4rem .4rem 1rem rgba(0,0,0,.2);
}
.distance p {
  color: var(--color-primary);
  font-size: 4rem;
}
.distance .distance__section > h2 {
  font-weight: 400;
  font-size: 2.6rem;
  letter-spacing: 0;
}
.distance svg {
  height: 8rem;
  color: var(--color-primary);
  margin-top: 2rem;
}



/*TErmina landing page ________________________________*/ 

/* Video _______________________ */

.page-video {
  position: relative;
  background-color: #ffffff;
  background-image: url("Images/Fondos/trama circuitos.png");
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
 background-attachment: fixed;
}
.video-container {
  position: relative;
  width: 960px;
  height: 540px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  display: flex;
  align-items: center;

}


@media (max-width: 767px) {
  .video-container {
    gap: 0;
    min-height: calc(100vh - 30px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}

@media (max-width: 767px) {
  .video-container iframe {
    gap: 0;
    min-height: calc(100vh - 30px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}


.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: flex;
  align-items: center;
}

.subtitle {
  bottom: 0;
  left: 0;
  padding: 5px 0;
  text-align: center;
  font-size: 14px;
}


/*Termina Video _________________ */


/*About section _________________ */

.grid img {
  display: block;
  width: 100%;
  height: auto;
}
#about {
  padding: 4em;
  background-color: #f9f9f9; /* Color de fondo suave para la sección */
}

#about ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

#about li {
  background: #fff;
  color: #333;
  margin: 1em;
  padding: 1.5em;
  border-radius: 10px; /* Esquinas redondeadas para un diseño más suave */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
  width: 280px; /* Ajuste del ancho para mejorar la adaptación en pantallas pequeñas */
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

#about li:hover {
  transform: scale(1.05); /* Efecto de zoom al pasar el ratón por encima */
}

.content-wrap,
#about ul {
  grid-column: 2/4;
}

.box,
#main-footer div {
  grid-column: span 2;
}

/* Mejorando la visualización en pantallas pequeñas */
@media (max-width: 768px) {
  #about li {
    width: 100%; /* Los elementos ocupan todo el ancho en pantallas pequeñas */
    margin: 0.5em 0;
  }

  #about {
    padding: 2em;
  }
}

.card-content {
  padding:  0;
}



/*price section*/


@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap");

*#price,
*#price ::after,
*#price ::before {
  box-sizing: border-box;
  margin: 10;
  padding: 10;
}


#price {
  height: 100%;
  min-height: 32vh;
  padding: 117px;
}

#price {
  display: grid;
  place-items: center;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  background-color: #fff;
  color: #000000;
}

#price ul {
  list-style: none;
}

#price .main {
  max-width: 150rem;
  padding: 1em 1.5em;
}

#price .main__heading {
  font-weight: 600;
  font-size: 3.25em;
  margin-bottom: 0.75em;
  text-align: center;
  color: #434343;
}

#price .cards {
  position: relative;
}

#price .cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

#price .card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  flex: 1 1 14rem;
  padding: 1.5em 2em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: #434343;
  background-color: #ededecd2;
  border: 1px solid #e3e356;
  border-radius: 15px;
}

#price .card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

#price .card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}

#price .card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

#price .card__bullets {
  line-height: 1.4;
}

#price .card__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
  transform: translatey(0.25ch);
  margin-right: 1ch;
}

#price .card__heading {
  font-size: 2.05em;
  font-weight: 600;
}

#price .card__price {
  font-size: 1.85em;
  font-weight: 700;
}


#price .flow > * + * {
  margin-top: var(--flow-space, 1.25em);
}

#price .cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #8aca37;
  padding: 0.7em;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
}

#price .overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  transition: 400ms mask ease;
  will-change: mask;
}

#price .overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

#price .overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}

#price :not(.overlay) > .card {
  transition: 400ms background ease;
  will-change: background;
}

#price :not(.overlay) > .card:hover {
  --lightness: 95%;
  background: hsla(var(--hsl), 0.1);
}





/* Footer */

#main-footer {
  padding: 2em;
  background: #000;
  color: #fff;
  text-align: center;
}

/* Media Queries */

@media (min-width: 700px) {
 .grid {
    display: grid;
  }


body {
  overflow-x: hidden;
  font-family: "Roboto Slab","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.text-muted {
  color: #434343;
}

.text-primary {
  color: #1ee2e7;
}

p {
  font-size: 20px;
  line-height: 1.75;

}

.card-content p {
  font-size: 20px;
  line-height: 1.75;
  text-align: center;
  font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;

}




a,
a:hover,
a:focus,
a:active,
a.active {
  outline: 0;
}

a {
  color: #1ee2e7;
}

a:hover,
a:focus,
a:active,
a.active {
  color: #17d0d5;
}

h1,
h2,
h3,
h4,
h5{
  text-transform: none;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
}

.img-centered {
  margin: 0 auto;
}

.bg-light-gray {
  background-color: #f7f7f7;
}

.bg-darkest-gray {
  background-color: #222;
}

.bg-map{
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
 background-attachment: fixed;
  background-image: url("Images/Fondos/mapa.png");
  

}

.btn-primary {
  border-color: #194271ff;
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #205167;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  border-color: #17d0d5;
  color: #fff;
  background-color: #17d0d5;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  border-color: #1ee2e7;
  background-color: #1ee2e7;
}

.btn-primary .badge {
  color: #1ee2e7;
  background-color: #fff;
}

.btn-xl {
  padding: 20px 40px;
  border-color: #c9dd16;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: #8ed720
  ;
}

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  border-color: #17d0d5;
  color: #fff;
  background-color: #29c520
  ;
}

.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  background-image: none;
}

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
  border-color: #1ee2e7;
  background-color: #1ee2e7;
}

.btn-xl .badge {
  color: #fed136;
  background-color: #fff;
}

.navbar-default {
  border-color: transparent;
  background-color: #222;
}

.navbar-default .navbar-brand {
  font-family: "Kaushan Script","Helvetica Neue",Helvetica,Arial,cursive;
  color: #1ee2e7;
  padding-bottom: 0px;
  
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
  color: #fec503;
}

.navbar-default .navbar-collapse {
  border-color: rgba(255,255,255,.02);

}

.navbar-default .navbar-toggle {
  border-color: #1ee2e7;
  background-color: #1ee2e7;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #1ee2e7;
}

.navbar-default .nav li a {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 520;
  letter-spacing: 1px;
  color: #ffffff;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
  outline: 0;
  color: #135167;
}

.navbar-default .navbar-nav>.active>a {
  border-radius: 0;
  color: #fff;
  background-color: #205167;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
  color: #fff;
  background-color: #205167;
}

@media(min-width:768px) {
  .navbar-default {
      padding: 25px 0;
      border: 0;
      background-color: transparent;
      -webkit-transition: padding .3s;
      -moz-transition: padding .3s;
      transition: padding .3s;
  }

  .navbar-default .navbar-brand {
      font-size: 2em;
      -webkit-transition: all .3s;
      -moz-transition: all .3s;
      transition: all .3s;
  }

  .navbar-default .navbar-nav>.active>a {
      border-radius: 8px;
  }

  .navbar-default.navbar-shrink {
      padding: 10px 0;
      background-color: #8aca37



      ;
  }

  .navbar-default.navbar-shrink .navbar-brand {
      font-size: 2em;
  }
}

header .intro-text {
  padding-top: 100px;
  padding-bottom: 50px;
}

header .intro-text .intro-lead-in {
  margin-bottom: 25px;
  font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 22px;
}

header .intro-text .intro-heading {
  margin-bottom: 25px;
  text-transform: none;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

@media(min-width:768px) {
  header .intro-text {
      padding-top: 300px;
      padding-bottom: 200px;
  }

  header .intro-text .intro-lead-in {
      margin-bottom: 25px;
      font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 40px;
      font-style: italic;
      line-height: 40px;
  }

  header .intro-text .intro-heading {
      margin-bottom: 50px;
      text-transform: uppercase;
      font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
      font-size: 75px;
      font-weight: 700;
      line-height: 75px;
  }
}

section {
  padding: 100px 0;
}

section h2.section-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 60px;
}

section h3.section-subheading {
  margin-bottom: 5px;
  text-transform: none;
  font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
}

@media(min-width:768px) {
  section {
      padding: 70px;
  }
}

.service-heading {
  margin: 15px 0;
  text-transform: none;
}

#portfolio .portfolio-item {
  right: 20;
  margin: 0 0 20px;
}

#portfolio .portfolio-item .portfolio-link {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #205167ad;
  -webkit-transition: all ease .5s;
  -moz-transition: all ease .5s;
  transition: all ease .5s;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
  opacity: 1;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#portfolio .portfolio-item .portfolio-caption {
  margin: 0 auto;
  padding: 25px;
  max-width: 400px;
  text-align: center;
  background-color: #fff;
}

#portfolio .portfolio-item .portfolio-caption h4 {
  margin: 0;
  text-transform: none;
}

#portfolio .portfolio-item .portfolio-caption p {
  margin: 0;
  font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 20px;
  font-style: italic;
}

#portfolio * {
  z-index: 2;
}

@media(min-width:767px) {
  #portfolio .portfolio-item {
      margin: 0px 0px 30px;
  }
}

@media (min-width: 768px) {
  .navbar-nav.navbar-right:last-child {
      margin-right: -122px;
  }
}

section#contact {
  background-color: #ffffff;
  background-image: url("Images/brain.png");
  background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
}

section#contact .section-heading {
  color: #fff;
}

section#contact .form-group {
  margin-bottom: 25px;
}

section#contact .form-group input,
section#contact .form-group textarea {
  padding: 20px;
}

section#contact .form-group input.form-control {
  height: auto;
}

section#contact .form-group textarea.form-control {
  height: 236px;
}

section#contact .form-control:focus {
  border-color: #1ee2e7;
  box-shadow: none;
}

section#contact::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

section#contact:-moz-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

section#contact::-moz-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

section#contact:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

section#contact .text-danger {
  color: #e74c3c;
}

footer {
  padding: 25px 0;
  text-align: center;
}

footer span.copyright {
  text-transform: uppercase;
  text-transform: none;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 40px;
}

footer ul.quicklinks {
  margin-bottom: 0;
  text-transform: uppercase;
  text-transform: none;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 40px;
}

ul.social-buttons {
  margin-bottom: 0;
}

ul.social-buttons li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 40px;
  outline: 0;
  color: #fff;
  background-color: #222;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
  background-color: #1ee2e7;
}

.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
  outline: 0;
}

/* Modal Container */
.portfolio-modal .modal-content {
  padding: 0rem 0;
  min-height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.row {
  margin-right: -125px;
  margin-left: -84px;
}

.close-icon {
  font-size: 2.5rem;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-icon:hover {
  color: #e74c3c;
  transform: scale(1.1);
}

/* Modal Header */
.modal-header {
  text-align: center;
  margin-bottom: -0.5rem;
}

.modal-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}




.reference-item {
  display: flex;
  gap: 15px;
  padding: 0rem;
  margin: 1rem 0;
  background: white;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.reference-item:hover {
  transform: translateX(10px);
}

.ref-badge {
  background: #3498db;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Adaptaciones Específicas */
#portfolioModal4 .feature-item i { color: #e74c3c; }
#portfolioModal5 .feature-item i { color: #95a5a6; }
#portfolioModal6 .feature-item i { color: #9b59b6; }

/* Animación de Entrada */
.modal-content-wrapper {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
  .reference-item {
      flex-direction: column;
  }
  
  .ref-badge {
      width: 30px;
      height: 30px;
      font-size: 0.9rem;
  }
  
  .modal-title {
      font-size: 1.75rem;
  }
}


.divider {
  width: 60px;
  height: 3px;
  background: #3498db;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* Content Layout */
.modal-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52,152,219,0.15) 0%, rgba(46,204,113,0.1) 100%);
}

.img-responsive {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-container:hover .img-responsive {
  transform: scale(1.03);
}

/* Text Content */
.text-content {
  padding: 1rem;
}

.lead {
  font-size: 20px;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Features Grid */
.features {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-item {
  padding: 0.5rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.feature-item i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.feature-item h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #7f8c8d;
  font-size: 16px;
}

/* Custom Button */
.btn-custom {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52,152,219,0.4);
}

.btn-custom i {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .modal-content-wrapper {
      grid-template-columns: 1fr;
  }
  
  .modal-title {
      font-size: 2rem;
  }
  
  .lead {
      font-size: 1rem;
  }
}
::-moz-selection {
  text-shadow: none;
  background: #1ee2e7;
}

::selection {
  text-shadow: none;
  background: #1ee2e7;
}

img::selection {
  background: 0 0;
}

img::-moz-selection {
  background: 0 0;
}

body {
  -webkit-tap-highlight-color: #1ee2e7;
}

.main-title {
position: absolute;
margin: 0;
padding: 0;
color: #000000;
text-align: center;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%,-50%,0);
transform: translate3d(-50%,-50%,0);
}

.demo-1 .main-title {
text-transform: uppercase;
font-size: 4.2em;
letter-spacing: 0.1em;
}

.main-title .thin {
font-weight: 200;
}

@media only screen and (max-width : 768px) {
.demo-1 .main-title {
  font-size: 3em;
}
}


/* Start Landing Page */

.landing-page .content .container {
  display: flex;
  align-items: center;

  
}
@media (max-width: 767px) {
  .landing-page .content .container {
    gap: 0;
    min-height: calc(100vh - 30px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}

.landing-page .content .info h1 {
  color: #5d5d5d;
  font-size: 44px;
}
.landing-page .content .info p {
  margin: 0;
  line-height: 1.4;
  font-size: 18px;
  color: #5d5d5d;
}

.landing-page .content .alinear-derecha{
  max-width: 45%;
  float: right;
  padding: 0px 10px 10px;

}

.landing-page .content .alinear-izquierda{
  max-width: 45%;
  float: left;
  padding: 0px 10px 10px;
  
}


/* End Landing Page */


/* SVG */



/* Medical funcinaities*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  outline: none;
  box-sizing: border-box;
}
.job-overview {
  display: flex;
  flex-grow: 1;
  display: none;
  animation: slide .6s both;
  &-cards {
   display: flex;
   flex-direction: column;
   width: 330px;
   height: 100%;
   flex-shrink: 0;
  }
  &-card + &-card {
   margin-top: 20px;}}
::placeholder {
  color: var(--placeholder-color);
 }
 .job-style:checked + label + span {
  background-color: var(--active-light-color);
  color: var(--active-color);
 }
 html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
 }
 

:root {
  --body-bg-color: #e5ecef;
  --theme-bg-color: #fafafb;
  --body-font: "Poppins", sans-serif;
  --body-color: #2f2f33;
  --active-color: #8aca37ff;
  --active-light-color: #e1ebfb;
  --header-bg-color: #fff;
  --search-border-color: #efefef;
  --border-color: #d8d8d8;
  --alert-bg-color: #e8f2ff;
  --subtitle-color: #83838e;
  --inactive-color: #f0f0f0;
  --placeholder-color: #9b9ba5;
  --time-button: #fc5757;
  --level-button: #8aca37ff;
  --button-color: #fff;
  --color-primary: #205168;
  --color-primary-light: #8aca37;
}



body {
  background-color: var(--body-bg-color);
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--body-color);
}



.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  scroll-behavior: smooth;
  padding:0px  100px;
  overflow: auto;

  
}

body {
 background-color: var(--body-bg-color);
 font-family: var(--body-font);
 font-size: 15px;
 color: var(--body-color);
}

.search-buttons {
  border: none;
  color: var(--button-color);
  background-color: var(--active-color);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}

.job-wrapper {
  padding-top: 10px;
}

.job-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
  padding-top: 10px;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -webkit-animation: slideY 0.6s both;
          animation: slideY 0.6s both;
}
@media screen and (max-width: 1212px) {
  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 930px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}


.job-card {
  padding: 30px 16px;
  background-color: var(--header-bg-color);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.job-card:hover {
  transform: scale(1.02);
}
.job-card svg {
  width: 60px;
  padding: 10px;
  border-radius: 8px;
}
.job-card-title {
  font-weight: 600;
  margin-top: 16px;
  font-size: 16px;
}

.job-card-subtitle {
  color: var(--subtitle-color);
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6em;

  width: 280px;
  white-space: initial;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;

}
.job-card-header {
  display: flex;
  align-items: flex-start;
}

.overview-card:hover {
  background: #194271ff;
  transition: none;
  transform: scale(1);
}

.overview-card:hover svg {
  box-shadow: none;
}

.overview-card:hover .job-overview-buttons .search-buttons.time-button,
.overview-card:hover .job-overview-buttons .search-buttons.level-button {
  background-color: #ff2424;
  color: #fff;
}
.overview-card:hover .job-card-title,
.overview-card:hover .job-stat {
  color: #fff;
}
.overview-card:hover .job-card-subtitle,
.overview-card:hover .job-day {
  color: #dedede;
}
.overview-card:hover .overview-wrapper .heart {
  color: #fff;
  border-color: #fff;
}
.overview-card:hover .overview-wrapper .heart:hover {
  fill: red;
  stroke: red;
  transform: scale(1.1);
}

.detail-button {
  background-color: var(--active-light-color);
  color: var(--active-color);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 4px;
}
.detail-button + .detail-button {
  margin-left: 4px;
}

.job-card-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 4px;
}

.card-buttons,
.card-buttons-msg {
  padding: 10px;
  width: 100%;
  font-size: 12px;
  cursor: pointer;
}

.card-buttons {
  margin-right: 12px;
}
.card-buttons-msg {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
}

.menu-dot {
  background-color: var(--placeholder-color);
  box-shadow: -6px 0 0 0 var(--placeholder-color), 6px 0 0 0 var(--placeholder-color);
  width: 4px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 8px;
}

.header-shadow {
  box-shadow: 0 4px 20px rgba(88, 99, 148, 0.17);
  z-index: 1;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}
.job-overview {
  display: flex;
  flex-grow: 1;
  display: none;
  -webkit-animation: slide 0.6s both;
          animation: slide 0.6s both;
}
.job-overview-cards {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: 100%;
  flex-shrink: 0;
}
.job-overview-card + .job-overview-card {
  margin-top: 7px;
}
.job-overview-buttons {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.job-overview-buttons .search-buttons {
  background-color: var(--inactive-color);
  font-size: 11px;
  padding: 6px 8px;
  margin-top: 0;
  font-weight: 500;
}
.job-overview-buttons .search-buttons.time-button {
  color: var(--time-button);
  margin-right: 8px;
}
.job-overview-buttons .search-buttons.level-button {
  color: var(--level-button);
}
.job-overview-buttons .job-stat {
  color: var(--active-color);
  font-size: 12px;
  font-weight: 500;
  margin-left: auto;
}
.job-overview-buttons .job-day {
  color: var(--subtitle-color);
  font-size: 12px;
  margin-left: 8px;
  font-weight: 500;
}
.job-overview .overview-wrapper {
  display: flex;
  align-items: center;
}
.job-overview .overview-wrapper svg:first-child {
  width: 100px;
  margin-right: 7px;
}


.overview-detail .job-card-title,
.overview-detail .job-card-subtitle {
  margin-top: 4px;
}
.overview-detail .job-card-subtitle {
  font-size: 12px;
  font-weight: 500;
}

.job-explain {
  background-color: var(--header-bg-color);
  margin-left: 10px;
  border-radius: 0 0 8px 8px;
}

.job-bg {
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
  transition: 0.3s;
  position: relative;
}

.job-logos {
  margin-top: -30px;
  position: relative;
  margin-bottom: -36px;
  padding: 0 20px;
}
.job-logos svg {
  width: 76px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
  border: 4px solid var(--header-bg-color);
}

.job-title-wrapper {
  display: flex;
  align-items: center;
}
.job-title-wrapper .job-card-title {
  font-size: 30px;
  margin-top: 0;
  font-weight: 650;
}

.job-action {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.job-action svg {
  width: 50px;
  border: 1px solid var(--border-color);
  color: var(--subtitle-color);
  border-radius: 8px;
  padding: 6px;
}
.job-action svg + svg {
  margin-left: 12px;
}

.job-explain-content {
  padding: 50px 25px 30px;
}

.job-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.job-subtitle-wrapper .posted {
  margin-left: auto;
}
.job-subtitle-wrapper .company-name {
  color: var(--active-color);
  font-weight: 600;
  font-size: 14px;
}
.job-subtitle-wrapper .comp-location,
.job-subtitle-wrapper .posted {
  color: var(--subtitle-color);
  font-size: 12px;
  font-weight: 500;
}
.job-subtitle-wrapper .comp-location {
  position: relative;
  margin-left: 10px;
}
.job-subtitle-wrapper .comp-location:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 49%;
  left: -8px;
  position: absolute;
}
.job-subtitle-wrapper .app-number {
  color: var(--body-color);
  position: relative;
  margin-left: 12px;
}
.job-subtitle-wrapper .app-number:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 50%;
  left: -7px;
  position: absolute;
}

.explain-title {
  color: var(--subtitle-color);
  font-size: 15px;
  line-height: 40px;
  white-space: nowrap;
}
.explain-subtitle {
  font-size: 13px;
  font-weight: 500;
  margin-top: -2px;
}
.explain-contents {
  height: 66px;
}
.explain-contents + .explain-contents {
  border-left: 1px solid var(--border-color);
  padding-left: 16px;
}

.overview-text {
  margin-top: 30px;
}
.overview-text-header {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 23px;

}
.overview-text-subheader {
  font-size: 22px;
  line-height: 2em;
    text-align: justify;

}
.overview-text-item {
  font-size: 13px;
  position: relative;
  display: flex;
}
.overview-text-item + .overview-text-item {
  margin-top: 20px;
}
.overview-text-item:before {
  content: "";
  border: 2px solid #61bcff;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  margin-right: 8px;
  flex-shrink: 0;
}

.detail-page .job-overview {
  display: flex;
}
.detail-page .job-cards,
.detail-page .searched-bar {
  display: none;
}
@media screen and (max-width: 1300px) {
  .detail-page .search-type {
    display: none;
  }
  .detail-page .searched-jobs {
    padding-left: 0;
  }
}

@media screen and (max-width: 990px) {
  .explain-contents, .explain-bar {
    height: auto;
  }

  .explain-bar {
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .explain-contents {
    width: 50%;
  }

  .explain-contents + .explain-contents {
    padding: 0;
    border: 0;
  }

  .explain-contents:nth-child(2) ~ .explain-contents {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
  }

  .job-subtitle-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-subtitle-wrapper .posted {
    margin-left: 0;
    margin-top: 6px;
  }
}
@media screen and (max-width: 930px) {
  .search-job, .search-salary {
    display: none;
  }


}
@media screen and (max-width: 760px) {
  .detail-page .job-overview-cards {
    display: none;
  }


  .job-explain {
    margin-left: 0;
  }
}
@media screen and (max-width: 730px) {
  .search-type {
    display: none;
  }

  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }

}
@media screen and (max-width: 620px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .header-menu a:not(:first-child) {
    margin-left: 10px;
  }
}
@media screen and (max-width: 590px) {
  .header-menu {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .search.item {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .explain-contents {
    width: 100%;
    margin: 0;
  }

  .explain-contents:nth-child(2) ~ .explain-contents {
    margin: 0;
    border: 0;
  }

  .wrapper {
    padding: 20px;
  }

  .header {
    padding: 0 20px;
  }
}

/*Team section_______*/



.team-member {
  margin-bottom: 50px;
  text-align: center;
}

.team-member img {
  margin: 0 auto;
  border: 7px solid #fff;
}

.team-member h4 {
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: none;
  
}

.team-member p {
  margin-top: 0;
}


.member-descrition {
  margin-top: 5px;
  margin-bottom: 0;
  text-transform: none;
  font-size: 2rem;
  
}

body {
  font-family: 'Roboto', sans-serif;
  background: #eee;
}




.members {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.member {
  text-align: center;
  flex-basis: 33%;
  padding: 24px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.team-title {
  text-align: center;
  margin: 0;
  margin-top: 12px;
  font-weight: 600;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.84);
}

.member-role {
  font-style: italic;
  font-size: 20px;
}


@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

.container-about {
  display: grid; /* Changed from flex to grid for better control */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusts to fit various screen sizes */
  gap: 8px; /* Increased gap for better spacing */
  width: 100%;
  padding: 0px; /* Added padding for better alignment */
  transition: transform 0.3s ease-in-out;
}

.card {
  background-color: #fff;
  border-radius: 12px; /* Slightly more rounded corners */
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1); /* Softer shadow for a more modern look */
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer; /* Added cursor pointer for better UX */
}

.card:hover {
  transform: translateY(-10px); /* Slight hover effect */
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.card-header img {
  width: 100%;
  height: 202px; /* Slightly reduced height for better balance */
  object-fit: cover;
  border-bottom: 5px solid #f2f2f2; /* Added border for visual separation */
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 25px; /* Increased padding for more spacious content */
  min-height: 260px; /* Slightly increased min-height for uniformity */
}

.tag {
  background-color: #ccc;
  color: #fff;
  border-radius: 25px; /* Smoother pill shape */
  font-size: 13px; /* Slightly increased font size */
  margin: 0;
  padding: 5px 12px; /* Increased padding for better readability */
  text-transform: uppercase;
  letter-spacing: 1px; /* Added letter spacing for a more refined look */
}

.tag-teal {
  background-color: #5bc0de; /* Changed to a more vibrant teal */
}

.tag-purple {
  background-color: #6f42c1; /* More modern purple tone */
}

.tag-pink {
  background-color: #e83e8c; /* Brighter pink for better contrast */
}

.tag-green {
  background-color: #f3ab3a; /* Brighter pink for better contrast */
}

.card-body h4 {
  margin: 15px 0; /* Increased margin for better separation */
  font-weight: bold; /* Emphasized title */
  color: #333; /* Darker color for readability */
}

.card-body p {
  font-size: 15px; /* Slightly larger font size */
  margin: 0 0 20px 0; /* Reduced margin for tighter content layout */
  font-weight: 400; /* Adjusted weight for softer appearance */
  color: #4a4a4a; /* Slightly darker color for readability */
}

.user {
  display: flex;
  align-items: center; /* Ensures proper alignment */
  margin-top: auto;
}

.user img {
  width: 45px; /* Slightly increased size */
  height: 45px;
  border-radius: 50%;
  margin-right: 15px; /* Increased spacing for better balance */
  object-fit: cover;
}

.user-info h5 {
  margin: 0;
  font-weight: 600; /* Slightly bolder name */
  color: #333; /* Darker color for readability */
}

.user-info small {
  color: #aaa; /* Slightly lighter color for better contrast */
}

@media (max-width: 940px) {
  .container-about {
    grid-template-columns: 1fr; /* Fixed typo and made it more responsive */
    justify-items: center;
    padding: 10px; /* Adjusted padding for smaller screens */
  }
}




/* Estilo general para el contenedor principal */
.all {
  display: inherit;
  place-items: center;
  background-image: url("Images/Fondos/fondo_ondas.jpg");
  background-size: cover; /* Asegura que la imagen cubra todo el contenedor */
  background-position: center; /* Centra la imagen de fondo */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  min-height: auto; /* Asegura que el contenedor ocupe al menos el 100% de la altura de la vista */
  padding: 5rem; /* Añade un pequeño relleno alrededor del contenedor */
  
}



/* Estilo para el saludo */
.greeting {
  margin: auto; /* Elimina el margen inferior por defecto */
  font-size: 5rem; /* Tamaño de fuente grande para el saludo */
  color: #ffffff; /* Color blanco para el texto */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Añade una sombra sutil al texto para mejorar la legibilidad */
  text-align: center; /* Centra el texto */
  line-height: 1.2; /* Ajusta el interlineado para mejorar la legibilidad */
  max-width: 90%; /* Limita el ancho del saludo para que no se desborde en pantallas más pequeñas */
}
.svg-container {
  width: 100%;
  height: auto;
  max-width: 150px; /* Ajusta el tamaño máximo del SVG */
  margin: 0 auto; /* Centra el SVG horizontalmente */
  display: flex;
  justify-content: center;
  align-items: center;
}

svg {
  width: 100%;
  height: auto;
  max-height: 150px; /* Ajusta el tamaño máximo del SVG */
}
