@charset "utf-8";

/* =========================================================
   Base
========================================================= */

html,
body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #000;
  background-color: #fff;
}

body {
  margin: 0;
}

p {
  line-height: 1.3;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #e00040;
}


/* =========================================================
   Layout principal
========================================================= */

.mycontainer {
  max-width: 1600px;
}


/* =========================================================
   Logo
========================================================= */

.logo {
  width: 100%;
  max-width: 250px;
  height: auto;
}


/* =========================================================
   Imágenes
========================================================= */

img {
  max-width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   Iconos / redes sociales
========================================================= */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  margin-left: 12px;

  color: #fff;
  background-color: #e00040;
  border-radius: 50%;

  font-size: 22px;
  line-height: 1;
  text-decoration: none;

  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icon i {
  display: block;
  line-height: 1;
}

.social-icon:hover {
  color: #fff;
  background-color: #000;
  transform: scale(1.08);
}


/* =========================================================
   Utilidades
========================================================= */

.orange {
  color: #e7581e !important;
}

.red {
  color: #e00040 !important;
}

.text-red {
  color: #e00040 !important;
}


/* =========================================================
   Responsive
========================================================= */

@media only screen and (max-width: 768px) {
  html,
  body {
    font-size: 16px;
  }

  .logo {
    max-width: 200px;
  }

  .ico_redes_red {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .mycontainer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    max-width: 180px;
  }

  .ico_redes_red {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}