/*
Theme Name: Bootscore Child
Theme URI: https://bootscore.me/
Template: bootscore
Author: Bootscore
Author URI: https://bootscore.me
Description: Flexible Bootstrap WordPress starter-theme for developers with full WooCommerce support. Documentation
Tags: featured-images,threaded-comments,translation-ready
Version: 6.3.1.1771505239
Updated: 2026-02-19 13:47:19

*/

/* ==== Generales ====*/
:root {
  --gm-black: #2c2a29;
  --gm-grey: #d4d4d4;
  --gm-white: #fcfcfc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans";
}

.h1,
.h2,
.h4,
.h6 {
  font-family: "Avenir Next";
}
.titulo,
.h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--gm-white);
  font-family: "Avenir Next";
}
.h2 {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-style: normal;
  margin-bottom: 1.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}
p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gm-black);
}
.lead p,
.lead {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
  font-weight: 300;
}
.lead-big p,
.lead-big {
  font-size: clamp(3.5rem, 3vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 400;
  font-family: "Avenir Next";
}
.subtitle {
  font-size: 1.2rem;
  font-weight: 400;
}
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
a {
  color: var(--gm-primary);
}
/* --- botones --- */
.btn-gm {
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  width: fit-content;
}
.btn-gm:hover {
  border-color: transparent;
}
.btn-gm-transparente {
  background-color: transparent;
  color: var(--gm-white);
  font-weight: 400;
}
.btn-gm-black {
  background-color: var(--gm-black);
  border-radius: 5px;
  border: 1px solid var(--gm-black);
  padding: 0.75rem 2.5rem;
  color: var(--gm-white);
  font-weight: 400;
}
.btn-gm-black:hover {
  border: 1px solid var(--gm-black);
  background-color: var(--gm-white);
  color: var(--gm-black);
}
.bg-gm-gris {
  background-color: var(--gm-black);
  color: var(--gm-white);
}
/* ==== Inicio ==== */
/* --- Hero --- */
.inicio .hero,
.contacto .hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  height: 70vh;
  max-height: 100rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contacto .hero::before,
.inicio .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000007a;
}
.contacto .hero p,
.contacto .hero .h1,
.inicio .hero a,
.inicio .hero p,
.inicio .hero .h1 {
  position: relative;
  z-index: 3;
  color: var(--gm-white);
}
.inicio .item-somos {
  font-weight: 200;
  font-family: "Avenir Next";
  border-left: 1px solid var(--gm-white);
  padding-left: 2rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.inicio .item-somos .anios {
  font-size: 5rem;
  display: block;
}
.inicio .miembro-equipo p {
  color: var(--gm-white);
}
.inicio .miembro-equipo .nombre {
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Servicios --- */
.servicios {
  background-color: var(--gm-white);
}

.tarjeta-servicio {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--gm-white);
  aspect-ratio: 4/3;
}

.tarjeta-servicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000007a;
  z-index: 1;
}

.tarjeta-servicio .plus-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  color: var(--gm-white);
  transition: transform 0.3s ease;
}

.tarjeta-servicio .hover-info {
  position: absolute;
  top: 4.5rem;
  left: 3.5rem;
  width: 0;
  max-height: 0;
  background-color: var(--gm-white);
  color: var(--gm-black);
  z-index: 4;
  transition:
    width 0.4s ease,
    max-height 0.4s ease,
    opacity 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
}

.tarjeta-servicio:hover .hover-info,
.tarjeta-servicio .plus-icon:hover ~ .hover-info {
  width: 75%;
  max-height: 400px;
  padding: 2rem;
  opacity: 1;
}

.tarjeta-servicio .hover-content {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  transition-delay: 0s;
}

.tarjeta-servicio:hover .hover-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.tarjeta-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tarjeta-footer .flecha {
  transition: transform 0.3s ease;
}

.tarjeta-servicio:hover .flecha {
  transform: translateX(5px);
}
.cta .container {
  border-top: 1px solid var(--gm-black);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* ==== Páginas ==== */
/* --- Estudio --- */
.archive-proyectos .hero,
.servicio .hero,
.estudio .hero {
  padding-bottom: 0;
}
.archive-proyectos .hero p,
.archive-proyectos .hero p.lead,
.servicio .hero p,
.servicio .hero p.lead,
.estudio .hero p.lead,
.estudio .hero p {
  color: var(--gm-white);
}
.archive-proyectos .hero .container,
.servicio .hero .container,
.estudio .hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.servicio .hero img,
.estudio .hero img {
  width: 100%;
  aspect-ratio: 8/2;
  object-fit: cover;
}
.servicio .titulo p,
.estudio .titulo p {
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-family: "Avenir Next";
  font-weight: 400;
  line-height: 1.1;
  color: var(--gm-white);
}
.servicio .hero .lead,
.estudio .hero .lead {
  font-size: clamp(2rem, 3vw, 2.3rem);
  margin-bottom: 0;
}
.estudio .trayectoria {
  overflow: clip;
}
.estudio .trayectoria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.estudio .trayectoria .cargo {
  font-size: 1.2rem;
}
.estudio .trayectoria .info-adicional {
  padding: 4rem;
  position: relative;
  color: var(--gm-white);
  margin-top: 4rem;
}
.estudio .trayectoria .info-adicional li {
  position: relative;
  color: var(--gm-white);
  z-index: 2;
}
.estudio .trayectoria .equipo {
  margin-bottom: 6rem;
}
.estudio .trayectoria .info-adicional::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-color: var(--gm-black);
}
.estudio .trayectoria .segundo .info-adicional::before {
  content: "";
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  width: 200%;
  height: 100%;
  background-color: var(--gm-black);
}
.estudio .proyecto .pasos {
  border-left: 4px solid var(--gm-grey);
}
.servicio .como-trabajamos .h2,
.estudio .proyecto .h2 {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.servicio .como-trabajamos .numero,
.estudio .proyecto .numero {
  font-size: 5rem;
  font-weight: 200;
  font-family: "Avenir Next";
}
.estudio .proyecto .paso {
  font-size: 2.3rem;
  font-weight: 400;
}
.servicio .como-trabajamos .paso {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
}
.servicio .como .tarjeta {
  border: 1px solid var(--gm-grey);
  border-radius: 3px;
  height: 100%;
  padding: 2rem;
}
.servicio .caracteristicas .row {
  border-top: 0.5px solid var(--gm-white);
}
.servicio .caracteristicas .row:last-child {
  border-bottom: 0.5px solid var(--gm-white);
}
.servicio .caracteristicas .titulo {
  font-size: 2.3rem;
  font-weight: 600;
  font-style: italic;
}
.servicio .caracteristicas .texto {
  font-size: 1rem;
  font-weight: 200;
}
.servicio .como-trabajamos {
  position: relative;
}
.servicio .como-trabajamos .img-proceso {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  object-fit: cover;
}
.servicio .oscura p {
  color: var(--gm-white);
}
.servicio .oscura .grande p {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  font-family: "Avenir Next";
}
/* --- Proyectos --- */
.tarjeta-proyecto {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
}
.tarjeta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  transition: background 0.3s ease;
}
.tarjeta-proyecto:hover .tarjeta-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.tarjeta-proyecto-wrapper .flecha svg path {
  transition: stroke 0.3s ease;
}
.buscador-ajax {
  position: relative;
}
.buscador-ajax input {
  background: transparent;
  color: var(--gm-black);
  padding: 0.5rem;
  font-weight: 300;
  font-size: 0.9rem;
  border: 1px solid var(--gm-grey) !important;
  border-radius: 3px !important;
}
.buscador-ajax input:focus {
  box-shadow: none;
  border-color: var(--gm-black);
  background: transparent;
}
/* Icono de busqueda */
.buscador-ajax svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.modal-content {
  background-color: var(--gm-white);
}
.modal-content .h1 {
  color: var(--gm-black);
  font-size: 2rem;
  font-weight: 400;
}
.tarjeta-proyecto .h3 {
  font-weight: 400;
  text-transform: unset;
  color: var(--gm-white);
}
.tarjeta-proyecto p {
  color: var(--gm-grey);
}

.meta-proyecto p {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gm-black);
}
.meta-proyecto p.fino {
  font-size: 1rem;
  color: var(--gm-grey);
  font-weight: 400;
}
.descripcion-proyecto {
  font-size: 1rem;
  line-height: 1.6;
}
.galeria-proyecto-carousel {
  scroll-snap-type: x mandatory;
  gap: 1rem;
  scrollbar-width: none; /* Firefox */
}
.galeria-proyecto-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.galeria-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.galeria-item img {
  border-radius: 4px;
  aspect-ratio: 3/2;
}
.modal-header button {
  background-color: var(--gm-black);
  border-radius: 50%;
  color: var(--gm-white);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .galeria-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (min-width: 992px) {
  .galeria-item {
    flex: 0 0 calc(33.33% - 0.67rem);
  }
}
.contacto .informacion .datos .fino {
  color: var(--gm-grey);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1rem;
}
.contacto .informacion .datos a,
.contacto .informacion .datos p {
  color: var(--gm-black);
  font-size: 1.2rem;
  font-weight: 200;
}
.contacto .informacion .datos a {
  text-decoration: none;
}
.contacto .informacion .datos a:hover {
  text-decoration: underline;
}
.contacto .informacion .titulo-form {
  font-size: 1.2rem;
  font-weight: 400;
}
.contacto .informacion .form-wrapper label {
  font-weight: 400;
}
.contacto .informacion .form-wrapper .nf-form-fields-required {
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.contacto .informacion .field-wrap input,
.contacto .informacion .field-wrap textarea {
  border: 1px solid var(--gm-grey);
  border-radius: 3px;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 200;
}
.contacto .informacion .field-wrap input:focus,
.contacto .informacion .field-wrap textarea:focus {
  outline: none;
  border-color: var(--gm-black);
}
.contacto .informacion .field-wrap input[type="submit"] {
  background-color: var(--gm-black);
  color: var(--gm-white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  cursor: pointer;

  /* alineado a la derecha  */
}
/* --- FAQ Accordion --- */
.accordion-item {
  border: none !important;
  background: transparent;
}
.accordion-button {
  background-color: var(--gm-white) !important;
  color: var(--gm-black);
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  padding: 1rem;
}
.accordion-button:not(.collapsed) {
  background-color: var(--gm-white) !important;
  color: var(--gm-black);
}
.accordion-button::after {
  filter: grayscale(1);
}
.accordion-body {
  background-color: var(--gm-white);
  padding: 1rem;
  border: none !important;
  font-weight: 300;
}

/* --- Offcanvas gm --- */
.offcanvas-gm {
  background-color: rgba(0, 0, 0, 0.745) !important;
  height: auto !important;
  min-height: 100vh;
  color: var(--gm-white);
  border-bottom: none !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.offcanvas-gm .menu-items-wrapper ul {
  list-style: none;
  padding: 0 8rem;
  margin: 0;
}

.offcanvas-gm .menu-items-wrapper ul li {
  margin-bottom: 1rem;
}

.offcanvas-gm .menu-items-wrapper ul li a {
  color: var(--gm-white) !important;
  font-size: 2.5rem;
  font-weight: 200;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
  display: inline-block;
}

.offcanvas-gm .menu-items-wrapper ul li a:hover {
  opacity: 0.6;
  padding-left: 1rem;
}

.offcanvas-gm .btn-gm-close {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.offcanvas-gm .btn-gm-close:hover {
  transform: rotate(90deg);
}

.offcanvas-gm .extra-offcanvas .h3 {
  font-weight: 200;
  font-size: 2rem;
}

.offcanvas-gm .extra-offcanvas p {
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .offcanvas-gm .menu-items-wrapper ul li a {
    font-size: 2.8rem;
  }
  .offcanvas-gm .extra-offcanvas .h3 {
    font-size: 1.5rem;
  }
}

/* === Header === */

#masthead .navbar img {
  width: 10rem;
}
#masthead .btn-outline-secondary {
  border: none;
  color: var(--gm-white);
}
/* === Footer === */
#footer {
  padding: 4rem 2rem;
}
#footer .fino {
  font-weight: 200;
}
#footer img {
  width: 100%;
}
#footer .telefono {
  font-size: 1.2rem;
  font-weight: 600;
}
#footer .nombre {
  font-size: 1.2rem;
  font-weight: 400;
}
#footer p {
  margin-bottom: 0;
}
#footer a {
  text-decoration: none;
  color: var(--gm-white);
}
#footer a:hover {
  text-decoration: underline;
}
#footer .separador {
  border-bottom: 1px solid var(--gm-white);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#footer .subtitle {
  margin-top: 2rem;
}
/* === 404 === */

/* === Single === */

/* === Archive === */

/* ==== MQ ==== */

/*sm*/

@media (min-width: 576px) {
  /* ==== Inicio ==== */
  /* --- Hero --- */
  .tarjeta-servicio {
    aspect-ratio: 1;
  }
  /* ==== Páginas ==== */

  /* === Header === */

  /* === Footer === */

  /* === 404 === */

  /* === Single === */

  /* === Archive === */
}

/*md*/
@media (min-width: 768px) {
  /* ==== Inicio ==== */
  /* --- Hero --- */

  /* ==== Páginas ==== */

  /* === Header === */

  /* === Footer === */

  /* === 404 === */

  /* === Single === */

  /* === Archive === */
}

/*lg*/
@media (min-width: 992px) {
  /* ==== Inicio ==== */
  /* --- Hero --- */
  .inicio .miembro-equipo.segundo {
    margin-top: 4rem;
  }
  .tarjeta-servicio {
    aspect-ratio: 3/4;
  }
  /* ==== Páginas ==== */

  /* === Header === */

  /* === Footer === */

  /* === 404 === */

  /* === Single === */

  /* === Archive === */
}

/*xl*/
@media (min-width: 1200px) {
  /* ==== Inicio ==== */
  /* --- Hero --- */

  /* ==== Páginas ==== */

  /* === Header === */

  /* === Footer === */

  /* === 404 === */

  /* === Single === */

  /* === Archive === */
}

/*xxl*/
@media (min-width: 1400px) {
  /* ==== Inicio ==== */
  /* --- Hero --- */

  /* ==== Páginas ==== */

  /* === Header === */

  /* === Footer === */

  /* === 404 === */

  /* === Single === */

  /* === Archive === */
}
