@charset "UTF-8";
/**********************************
        BASE GENERAL
***********************************/
.fondotransparente {
  background-color: transparent !important;
}

.fondoblanco-op {
  background: rgba(255, 255, 255, 0.5);
}

.fondogris {
  background-color: #444242;
}

.fondonegro {
  background-color: #211915;
}

.fondoazul {
  background-color: #0098f8;
}

.fondoazulclaro {
  background-color: #dbeefd;
}

.fondofucsia {
  background-color: #ff6b88;
}

.gris {
  color: #444242;
}

.azulclaro {
  color: #dbeefd;
}

.negro {
  color: #211915;
}

.azul {
  color: #0098f8;
}

.fucsia {
  color: #ff6b88;
}

.morado {
  color: #634cce;
}

/**********************************
        FORMATO DOCUMENTO
***********************************/
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%; /* Standard property for modern browsers */
}

body {
  font-size: 18px;
  overflow-x: hidden;
  /* needed because hiding the menu on the right side is not perfect,  */
  -webkit-font-smoothing: antialiased;
  font-family: "Slabo 27px", serif;
}

h1 {
  font-family: "Josefin Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
}

h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

a,
ul li a,
button {
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.letramini {
  font-size: 18px !important;
}

/**********************************
        FORMATO ESPECIFICO
***********************************/
a:hover {
  color: #ff6b88;
}

#logo-pyg {
  position: absolute;
  top: 45px;
  left: 45px;
  height: 60px;
  width: auto;
}

#menuToggle {
  display: block;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Just a quick hamburger */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #444242;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* Transform all the slices of hamburger - into a crossmark */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #444242;
}

/* But let's hide the middle one */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/* Ohyeah and the last one should go the other direction */
#menuToggle input:checked ~ span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/* Make this absolute positioned at the top left of the screen */
#menu {
  position: absolute;
  width: 100vw;
  height: 105vh;
  margin: -100px 0 0 0;
  padding: 70px;
  padding-top: 110px;
  right: -25px;
  background: rgba(255, 255, 255, 0.97);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.item-menu {
  font-size: 25px;
  display: block;
  position: relative;
}

.item-menu::after {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background: #ff6b88;
  position: absolute;
  top: 20px;
  right: -40px;
  opacity: 1;
  transition: transform 0.8s ease;
  transform: scaleX(0);
  transform-origin: 0 100%;
}

.letramini::after {
  top: 13px !important;
}

.item-menu:hover::after {
  transform: scaleX(1);
}

/* And let's fade it in from the left */
#menuToggle input:checked ~ ul {
  transform: scale(1, 1);
  opacity: 1;
}

/* Separador de frase del menú */
#separadormenu {
  width: 50%;
  opacity: 0.5;
  margin-top: -50px;
}

.frases {
  font-size: 14px;
  color: #aaaaaa;
  padding-top: 300px;
}

/* inicio */
#inicio {
  margin-top: 60px;
}
#inicio #img_computador {
  animation-duration: 3s;
}
#inicio #img_correr {
  animation-delay: 2.5s;
}
#inicio button {
  background-color: #ff6b88;
  border-radius: 100px 100px 100px 100px;
  border: 0px solid #ffffff;
  animation-delay: 3s;
  font-size: 1rem;
  font-weight: 400;
}
#inicio button:hover {
  background-color: #ffffff;
  color: #ff6b88;
  border: 1px solid #ff6b88;
}
#inicio button::after {
  content: "";
}

#frase_inicio {
  animation-delay: 3s;
}
#frase_inicio span {
  font-weight: 300;
}
#frase_inicio .peque {
  font-size: 16px;
  font-weight: 700;
}
#frase_inicio #dinamismo {
  font-weight: 700;
  color: #634cce;
}

#fraseempresa {
  margin-top: 60px;
  padding-top: 50px;
  padding-left: 10vw;
  padding-right: 10vw;
  font-weight: 100;
}
#fraseempresa span {
  font-weight: 400;
}

#servicios {
  margin-top: 0px;
  padding-top: 270px;
  padding-left: 10vw;
  padding-right: 10vw;
  background-color: #f1f1f3;
  background-image: url(../imagenes/escritorio_cafe.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 80vh;
}
#servicios .card-body {
  font-size: 15px;
  font-style: italic;
}

#contacto {
  margin-top: 0px;
  background-color: #444242;
  padding-left: 10vw;
  padding-right: 10vw;
}
#contacto button {
  background-color: #ff6b88;
  border-radius: 100px 100px 100px 100px;
  border: 0px solid #ffffff;
  font-size: 1rem;
}
#contacto button:hover {
  background-color: #ffffff;
  color: #ff6b88;
  border: 1px solid #ff6b88;
}
#contacto button::after {
  content: "";
}

#msgSubmit {
  display: none;
}

#enviando_pc {
  display: none;
}

form label {
  font-size: 15px;
}

.division {
  height: 8px;
  background-color: #ffffff;
}

#div-botonenviar {
  height: 30px;
}

footer {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #211915;
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
}
footer .img-footer {
  height: 30px;
  margin-right: 15px;
}
footer iframe {
  margin-top: 20px;
}
footer #copyright {
  font-size: 13px;
  font-weight: 300;
}
footer #copyright span {
  font-size: 10px;
}

.logomodal {
  height: 40px;
  margin-left: 60px;
}

.textolegal {
  font-size: 16px;
}

.legalinfo {
  font-size: 16px;
  font-style: italic;
}

/**********************************
        Media querys
***********************************/
@media (min-width: 768px) {
  #inicio {
    margin-top: 38vh;
  }
}
@media (min-width: 992px) {
  #frase_inicio,
  button {
    margin-left: 200px;
  }
  #contenedor-img {
    margin-top: -60px;
  }
}
@media (min-width: 1200px) {
  #contenedor-img {
    margin-top: -80px;
  }
  #img_computador {
    max-height: 450px;
  }
}
@media (min-width: 1800px) {
  #contenedor-img {
    margin-top: -100px;
  }
  #servicios {
    padding-top: 470px;
  }
}
/*# sourceMappingURL=pyg.css.map */

/* Custom Accordion Styles */
.custom-accordion {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

.custom-accordion-header {
  background-color: #f8f9fa;
  padding: 0;
  border-bottom: 1px solid #dee2e6;
}

.custom-accordion-button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border: none;
  background: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
  position: relative;
  padding-right: 2.5rem; /* Space for the icon */
}

.custom-accordion-content {
  display: none;
  padding: 1rem;
  font-size: 15px;
  font-style: italic;
}
