/* ============================================================
   main.css — Grupo Crear
   Stack: HTML5 / CSS3 / Vanilla JS — SIN Bootstrap CSS
   Diseño fiel a capturas Canva
   Mobile-first — breakpoints: 768px / 1024px / 1280px
   ============================================================ */

/* ------------------------------------------------------------
   FUENTES LOCALES — Montserrat (todos los pesos del proyecto)
   Ruta relativa desde assets/css/ → assets/fonts/
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-ExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Black.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  /* Azul principal — Crear Asociados, navbar, botones, footer */
  --azul:              #1A8EC0;
  --azul-dark:         #1570A0;

  /* Verde — Canoser Constructora */
  --verde:             #2f9100;
  --verde-dark:        #267800;

  /* Dorado — acento logo */
  --dorado:            #F5A623;

  /* Neutros */
  --blanco:            #FFFFFF;
  --gris-fondo:        #F4F4F4;
  --gris-texto:        #2C3E50;
  --gris-placeholder:  #888888;
  --gris-borde:        #CCCCCC;
  --negro:             #111111;

  /* Tipografias — Montserrat local (todos los pesos disponibles) */
  --font-heading:      'Montserrat', sans-serif;
  --font-body:         'Montserrat', sans-serif;

  /* Navbar */
  --navbar-h:          72px;

  /* Layout */
  --container-max:     900px;
  --section-pad-x:     clamp(20px, 5vw, 40px);
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--blanco);
  color: var(--gris-texto);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   3. NAVBAR — fijo, fondo blanco siempre
   ------------------------------------------------------------ */
.gc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  padding: 0 var(--section-pad-x);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gc-navbar__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand / Logo PNG */
.gc-navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gc-navbar__logo-img {
  height: 55px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Botón CTA Contacto */
.gc-navbar__cta {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blanco);
  background: var(--azul);
  border-radius: 4px;
  padding: 9px 20px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.gc-navbar__cta:hover {
  background: var(--azul-dark);
  color: var(--blanco);
}

/* ------------------------------------------------------------
   4. HERO — video, overlay, textos, barra bicolor
   ------------------------------------------------------------ */
.gc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video de fondo */
.gc-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Overlay oscuro semi-transparente */
.gc-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

/* Contenido centrado en el hero */
.gc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--section-pad-x);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.gc-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--blanco);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}

/* "GRUPO CREAR" en extra-bold, igual que en el diseño Canva */
.gc-hero__title strong {
  font-weight: 800;
  color: var(--blanco);
}

.gc-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gc-hero__tagline strong {
  font-weight: 700;
  color: var(--blanco);
}

/* Barra bicolor inferior pegada al fondo del hero */
.gc-hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 9px;
  display: flex;
  z-index: 3;
}

.gc-hero__bar-left {
  flex: 1;
  background: var(--azul);
}

.gc-hero__bar-right {
  flex: 1;
  background: var(--verde);
}

/* Mobile hero */
@media (max-width: 767px) {
  .gc-hero__content {
    padding: 0 20px 70px;
  }

  .gc-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .gc-hero__tagline {
    font-size: 0.95rem;
  }

  /* Ocultar barra bicolor en mobile — evita colisión visual con la sección accesos apilada */
  .gc-hero__bar {
    display: none;
  }
}

/* ------------------------------------------------------------
   5. ACCESOS — 2 mitades coloreadas con logos en blanco
   ------------------------------------------------------------ */
.gc-accesos {
  display: flex;
  width: 100%;
  height: 200px;
}

.gc-accesos__mitad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.25s ease;
}

.gc-accesos__mitad:hover {
  filter: brightness(0.88);
}

.gc-accesos__mitad--ca {
  background: var(--azul);
}

.gc-accesos__mitad--cn {
  background: var(--verde);
}

/* Logo PNG en cada mitad */
.gc-accesos__logo-img {
  max-width: 260px;
  width: 55%;
  height: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* Tablet: reducir logos para que no se deformen */
@media (max-width: 1023px) {
  .gc-accesos {
    height: 160px;
  }

  .gc-accesos__logo-img {
    width: 65%;
    max-width: 200px;
  }
}

/* Mobile: stack vertical */
@media (max-width: 767px) {
  .gc-accesos {
    flex-direction: column;
    height: auto;
  }

  .gc-accesos__mitad {
    height: 140px;
    padding: 16px;
  }

  .gc-accesos__logo-img {
    width: 60%;
    max-width: 180px;
  }
}

/* ------------------------------------------------------------
   6. CONTACTO — fondo desaturado, decorador, formulario
   ------------------------------------------------------------ */
.gc-contact {
  position: relative;
  padding: 60px var(--section-pad-x) 80px;
  background: var(--gris-fondo);
  overflow: hidden;
}

/* Imagen de fondo desaturada */
.gc-contact__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/fotoscrear/contacto.png');
  background-size: cover;
  background-position: center 84%;
  filter: grayscale(100%) opacity(0.13);
  z-index: 0;
}

.gc-contact__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Decorador de barras de color */
.gc-contact__decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gc-dec {
  display: inline-block;
  border-radius: 2px;
}

/* 4 cuadrados pequeños oscuros */
.gc-dec--sq {
  width: 10px;
  height: 10px;
  background: #2C3E50;
}

/* Barra larga azul */
.gc-dec--azul-long {
  width: 80px;
  height: 6px;
  background: var(--azul);
}

/* Barra corta gris oscuro */
.gc-dec--gris-short {
  width: 28px;
  height: 6px;
  background: #555555;
}

/* Barra larga dorada */
.gc-dec--dorado-long {
  width: 80px;
  height: 6px;
  background: var(--dorado);
}

/* Barra larga verde */
.gc-dec--verde-long {
  width: 80px;
  height: 6px;
  background: var(--verde);
}

/* Título */
.gc-contact__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 36px;
}

/* ------------------------------------------------------------
   7. FORMULARIO CF7 — estilo underline compatible con CF7
   ------------------------------------------------------------ */
.gc-form,
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.gc-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

/* Label oculto visualmente pero accesible para screen readers */
.gc-form__label--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gc-form__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gris-placeholder);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Inputs estilo underline — aplica también a CF7 */
.gc-form__input,
.gc-form__textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gris-texto);
  background: #ffffff;
  border: none;
  border-bottom: 1px solid var(--gris-borde);
  border-radius: 0;
  padding: 10px 12px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  margin-bottom: 20px;
}

.gc-form__input::placeholder,
.gc-form__textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #384d56;
  font-size: 1rem;
  font-family: var(--font-body);
}

.gc-form__input:focus,
.gc-form__textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-bottom-color: var(--azul);
}

.gc-form__textarea,
.wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Botón submit CF7 */
.wpcf7-form input[type="submit"],
.gc-form__submit {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blanco);
  background: var(--azul);
  border: none;
  border-radius: 3px;
  padding: 12px 28px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.wpcf7-form input[type="submit"]:hover,
.gc-form__submit:hover {
  background: var(--azul-dark);
}

/* Spinner CF7 */
.wpcf7-spinner {
  vertical-align: middle;
  margin-left: 8px;
}

/* Mensajes de validación CF7 */
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.wpcf7-response-output {
  display: none !important; /* SweetAlert2 maneja la confirmación */
}

/* Fila inferior: botón a la izquierda, info pegada al borde derecho */
.gc-form__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 8px;
}

.gc-form__bottom-left {
  padding-top: 4px;
  flex-shrink: 0;
}

.gc-form__bottom-right {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  min-width: 220px;
}

.gc-contact__info-list {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gris-texto);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.gc-contact__info-item a {
  color: var(--gris-texto);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gc-contact__info-item a:hover {
  color: var(--azul);
}

/* Ícono circular azul */
.gc-contact__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--blanco);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Mobile: formulario en columna única */
@media (max-width: 767px) {
  .gc-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gc-form__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .gc-form__bottom-right {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }

  .gc-contact__title {
    font-size: 1.5rem;
  }

  /* Imagen de fondo: recentrar en mobile para evitar recorte */
  .gc-contact__bg {
    background-position: center center;
    background-size: cover;
  }
}

/* ------------------------------------------------------------
   8. FOOTER — fondo azul, 3 columnas
   ------------------------------------------------------------ */
.gc-footer {
  background: var(--azul);
  width: 100%;
}

.gc-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px var(--section-pad-x) 32px;
}

.gc-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px 48px;
  margin-bottom: 40px;
}

/* Columna Logo */
.gc-footer__col--logo {
  display: flex;
  flex-direction: column;
}

.gc-footer__brand {
  display: flex;
  align-items: center;
}

.gc-footer__logo-img {
  width: 160px;
  height: auto;
  display: block;
}

/* Título columna */
.gc-footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.gc-footer__col-title--mt {
  margin-top: 24px;
}

/* Lista de info de contacto */
.gc-footer__info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-footer__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.gc-footer__info-item a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gc-footer__info-item a:hover {
  color: var(--blanco);
  text-decoration: underline;
}

/* Ícono circular blanco */
.gc-footer__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--blanco);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Horario */
.gc-footer__horario {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 6px;
}

/* Lista de nav del menú */
.gc-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.gc-footer__nav-list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gc-footer__nav-list a:hover {
  color: var(--blanco);
  text-decoration: underline;
}

/* Fila "Síguenos" + íconos inline */
.gc-footer__social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gc-footer__siguenos {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blanco);
  margin-right: 4px;
}

.gc-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blanco);
  color: var(--azul);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.gc-footer__social-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

/* Barra inferior del footer */
.gc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.gc-footer__bottom p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Mobile: stack vertical */
@media (max-width: 767px) {
  .gc-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gc-footer__inner {
    padding: 40px 20px 28px;
  }
}

/* Tablet: 2 columnas */
@media (min-width: 768px) and (max-width: 1023px) {
  .gc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-footer__col--logo {
    grid-column: 1 / -1;
  }
}

/* ------------------------------------------------------------
   9. ACCESIBILIDAD — focus visible, reduced motion
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--dorado);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch targets mínimos 44x44px en mobile */
@media (max-width: 767px) {
  .gc-navbar__cta {
    padding: 10px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .wpcf7-form input[type="submit"],
  .gc-form__submit {
    min-height: 48px;
    width: 100%;
  }

  .gc-footer__social-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Hover solo en dispositivos con puntero preciso */
@media (hover: none) {
  .gc-accesos__mitad:hover {
    filter: none;
  }
}

/* ------------------------------------------------------------
   SECCIÓN DIRECTORIO
   ------------------------------------------------------------ */
.gc-directorio {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) var(--section-pad-x);
}

.gc-directorio__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Subtitulo: NO bold, peso 400 */
.gc-directorio__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--gris-texto);
  margin-bottom: 1.5rem;
}

/* Parrafo centrado ~844px */
.gc-directorio__descripcion {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gris-texto);
  line-height: 1.75;
  max-width: 844px;
  margin: 1.5rem auto 3rem;
  text-align: center;
}

/* Grid 3 columnas */
.gc-directorio__grid {
  display: grid;
  grid-template-columns: repeat(3, 272px);
  gap: 32px;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Card */
.gc-directorio__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contenedor imagen con overflow hidden para mantener proporciones */
.gc-directorio__img-wrap {
  width: 272px;
  height: 382px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Imagen: grayscale por defecto → color en hover */
.gc-directorio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%) brightness(0.92);
  transition: filter 0.4s ease;
}

.gc-directorio__card:hover .gc-directorio__img {
  filter: grayscale(0%) brightness(1);
}

/* Texto bajo la imagen */
.gc-directorio__info {
  margin-top: 1rem;
  text-align: center;
  padding: 0 8px;
}

.gc-directorio__nombre {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gris-texto);
  margin-bottom: 0.35rem;
}

.gc-directorio__cargo {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #5a6a72;
  line-height: 1.5;
}

/* Responsive tablet */
@media (max-width: 1023px) {
  .gc-directorio__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .gc-directorio__img-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 140%;
    position: relative;
  }

  .gc-directorio__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

/* Responsive mobile */
@media (max-width: 767px) {
  .gc-directorio__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .gc-directorio__img-wrap {
    width: 100%;
    padding-bottom: 140%;
    position: relative;
    height: 0;
  }

  .gc-directorio__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
