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

html {
  font-size: 62.5%;
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font: inherit;
  border: none;
}

button {
  cursor: pointer;
}

:root {
  --cta-color: #00C1DF;
  --section-destaque: #7CC1DF;
  --background: #121212;
  --color-text: #EAEAEA;
  --grey-dark: #B0B0B0;
  --grey-light: #D9D9D9;
}

/* Clases utilitarias */
.flex-column {
  display: flex;
  flex-direction: column;
}

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

.button-base {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--cta-color);
  box-shadow: -5px -5px 10px 0px rgba(0, 255, 255, 0.25), 5px 5px 10px 0px rgba(0, 100, 116, 0.25);
}

.container-base {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
}

.title-base {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--background);
  margin-bottom: 16px;
}

.text-base {
  font-size: 1.6rem;
  color: var(--color-text);
  text-align: center;
  line-height: normal;
}

/* Estilos específicos */
.header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 2;
  background-color: var(--background);
}

.header__logo {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--grey-dark);
  margin: 32px auto;
}

footer {
  background-color: var(--section-destaque);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.continer-contacto, .container-social-media, .container-legal {
  margin-bottom: 24px;
}

.container-social-media {
  justify-content: center;
}

.link-social-media, .container-contacto__text {
  font-size: 14px;
  margin-bottom: 6px;
}

.container-social-media span {
  width: 14px;
  height: 16px;
  display: inline-block;
  background-size: cover;
  margin-right: 5px;
}

.presentation__button {
  width: 126px;
  height: 36px;
  padding: 6px 7px 6px 11px;
  font-size: 1.6rem;
  font-weight: 700;
}

.card__button {
  color: #7CC1DF;
  font-family: Poppins;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: transparent;
}

.card-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 750px;
  padding: 16px 0;
  border-radius: 10px;
  border: 2px solid var(--grey-dark);
  background: var(--background);
  margin-bottom: 16px;
}

.card__title {
  color: var(--cta-color);
  padding: 16px 10px;
  width: 100%;
  height: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img {
  width: 260px;
  height: 260px;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.card__text {
  padding: 0 10px;
  width: 260px;
  height: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.card__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--cta-color);
  box-shadow: -5px -5px 10px 0px rgba(0, 255, 255, 0.25), 5px 5px 10px 0px rgba(0, 100, 116, 0.25);
  font-size: 14px;
  font-weight: 500;
  color: var(--background);
  padding: 5px 8px 5px 10px;
  height: 36px;
  margin-top: auto;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  body {
    padding-top: 0;
  }

  .header {
    position: relative;
    flex-direction: column;
    padding: 40px 200px 0;
    height: auto;
    background-color: var(--background);
    width: 100%;
  }

  .header__conteiner-logo {
    margin-bottom: 20px;
  }

  .header__logo {
    width: 250px;
    
  }

  footer {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  .continer-contacto, .container-social-media, .container-legal {
    align-items: center;
    justify-content: center;
  }

  .presentation__button {
    width: 200px;
    height: 50px;
    padding: 7px 19px;
    font-size: 2.4rem;
  }
}