/*




 *


 */

html {
  color: #24292e;
  /* GH $gray-900 */
  font: 13px/1.5 normal normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
  @keyframes parpadeo {
      0%, 90%, 100% {
        transform: scaleY(1);
      }
      95% {
        transform: scaleY(0.1);
      }
    }

    .ojo-gattuzo {
      transform-box: fill-box;
      transform-origin: center;
      animation: parpadeo 4s infinite;
    }

    /* La iluminación también debe parpadear junto con los ojos */
    .iluminacion-ojo {
      transform-box: fill-box;
      transform-origin: center;
      animation: parpadeo 4s infinite;
    }
/* ==========================================================================
   5. ANIMACIONES (LOGO Y EFECTOS)
   ========================================================================== */
/* ==========================================================================
   2. SECCIÓN DE CONTACTO (GATTUZO)
   ========================================================================== */
   /* ==========================================================================
   efecto (GATTUZO)
   ========================================================================== */
   /* Animación de entrada para el contenedor */
.contact-container {
    animation: fadeInReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

/* Efecto de resplandor para el título */
.contact-header h2 {
    text-shadow: 0 0 15px rgba(212, 168, 103, 0.4);
    animation: glowText 3s ease-in-out infinite alternate;
}

/* Definición de Keyframes */
@keyframes fadeInReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px rgba(212, 168, 103, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 168, 103, 0.6), 0 0 30px rgba(212, 168, 103, 0.2);
    }
}

/* Retraso para los elementos internos (opcional) */
.form-group {
    animation: fadeInReveal 1s ease forwards;
    opacity: 0;
}

/* Escalona la aparición de cada campo */
.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }
.form-group:nth-child(4) { animation-delay: 0.5s; }
.form-group:nth-child(5) { animation-delay: 0.6s; }
.form-group:nth-child(6) { animation-delay: 0.7s; }
.form-group:nth-child(7) { animation-delay: 0.8s; }
.submit-btn { animation: fadeInReveal 1s ease forwards; animation-delay: 1s; opacity: 0; }/* ==========================================================================
   efecto (GATTUZO)
   ========================================================================== */
:root {
            --bg-dark: #202124;
            --accent-blue: #8bbbae;
            --text-white: #FFFFFF;
            --input-bg: rgba(255, 255, 255, 0.05);
            --shadow-black: rgba(0, 0, 0, 0.9);
        }

        body {
            margin: 0;
            background-color: var(--bg-dark);
        }

        .gattuzo-contact-section {
            background-color: var(--bg-dark);
            padding: 80px 20px;
            font-family: "Tw Cen MT", "Twentieth Century", sans-serif;
            color: var(--text-white);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .contact-container {
            width: 100%;
            max-width: 850px;
            background: rgba(32, 33, 36, 0.98);
            padding: 50px;
            border-radius: 4px;
            border: none;
            
            /* SOMBRA NEGRA PROFUNDA */
            box-shadow: 0 10px 30px -12px var(--shadow-black), 
                        0 18px 36px -18px var(--shadow-black);
            
            /* ANIMACIÓN DE ENTRADA */
            animation: fadeInReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            opacity: 0;
        }

        .contact-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .contact-header h2 {
            font-size: 26px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-blue);
            margin-bottom: 12px;
            /* Efecto sutil de resplandor */
            text-shadow: 0 0 15px rgba(139, 187, 174, 0.2);
        }

        .contact-header p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .form-group {
            margin-bottom: 25px;
            animation: fadeInReveal 1s ease forwards;
            opacity: 0;
        }

        /* Escalado de aparición para los campos */
        .form-group:nth-child(1) { animation-delay: 0.2s; }
        .form-group:nth-child(2) { animation-delay: 0.3s; }
        .form-group:nth-child(3) { animation-delay: 0.4s; }
        .form-group:nth-child(4) { animation-delay: 0.5s; }
        .form-group:nth-child(5) { animation-delay: 0.6s; }
        .form-group:nth-child(6) { animation-delay: 0.7s; }

        .form-group label {
            display: block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-weight: bold;
            color: var(--accent-blue);
        }

        .form-control {
            width: 100%;
            background: var(--input-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            padding: 16px;
            color: var(--text-white);
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-blue);
            box-shadow: 0 0 15px rgba(139, 187, 174, 0.1);
        }

        /* Estilo para el Selector */
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238bbbae' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 20px) center;
            padding-right: 45px;
        }

        select.form-control option {
            background-color: var(--bg-dark);
            color: var(--text-white);
        }

        .submit-btn {
            width: 100%;
            background: transparent;
            color: var(--accent-blue);
            border: 1px solid var(--accent-blue);
            padding: 18px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            margin-top: 20px;
            opacity: 0;
            animation: fadeInReveal 1s ease forwards;
            animation-delay: 0.9s;
        }

        .submit-btn:hover {
            background: var(--accent-blue);
            color: var(--bg-dark);
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        /* Definición de Animaciones */
        @keyframes fadeInReveal {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsividad Móvil */
        @media (max-width: 768px) {
            .contact-container {
                padding: 30px 20px;
            }
            .contact-header h2 {
                font-size: 20px;
            }
        }= 
		/* =========================================================================
   2. SECCIÓN DE CONTACTO (GATTUZO)
   ========================================================================== */
 

body {
  margin: 0;
}


h1 {
  font-size: 2em;
  font-weight: 300;
}


h2 {
  font-size: 1.75em;
  font-weight: 300;
  margin: 0 0 2em 0;
}


a {
  color: #FFC926;
  /* One blue */
  text-decoration: none;
}

/* Sections -------------------------- */

.section-content {
  max-width: 40em;
  margin: 0 auto;
  padding: 6em 4em;
}


.section.hero,
.section.footer {
  color: #ffffff7a;
  background-color: #202124;
  -webkit-font-smoothing: antialiased;
  transition: background 1s;
}


.section.hero {
  background-image: radial-gradient(#202124, #202124);
}


.section.footer a {
  color: #8bbbae;
  /* light One blue */
}


.section.footer .love a {
  color: inherit;
  /* light One blue */
}


.section.footer .section-content + .section-content {
  padding-top: 0;
}

/* Hero -------------------------- */

.hero {
  position: relative;
  text-align: center;
}

/* Logos */

.logos {
  font-size: 4em;
  line-height: 0;
}


.logos .icon-atom {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}


.logos .octicon-mark-github {
  font-size: 1em;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
}


.logos-plus {
  font-size: 0.5em;
  font-weight: 300;
  margin: 0 .5em;
  vertical-align: middle;
}


.tagline {
  font-size: 2.5em;
}

/* BG */

.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}


.hero .bg {
  opacity: .15;
  transition: opacity 2s;
}


.hero:active .bg {
  opacity: 1;
  transition-delay: .2s;
}


.bg-item {
  position: absolute;
}

/* Intro animation */

.hero {
  overflow: hidden;
}


.hero .header,
.hero .features {
  animation: animate-content .64s ease-out backwards;
}


.hero .header {
  animation-delay: 1s;
}


.hero .features {
  animation-delay: 1.3s;
}


.hero .bg {
  animation: animate-bg 5s 1.6s ease-in-out backwards;
}

@keyframes animate-content {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
}
@keyframes animate-bg {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
}
/* Features -------------------------- */

.features {
  position: relative;
  margin: 4em 0;
}


video {
  border-radius: 4px;
  background-image: url();
  background-repeat: no-repeat;
  box-shadow: 0px 30px 20px -20px rgba(0, 0, 0, 0.60);
}

/* Hide play button on iOS */

video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none;
}


.features-description {
  padding: 0 4em;
  margin-top: 2em;
  text-align: left;
  font-size: 1.25em;
}


.features-description strong {
  padding: 0em .2em;
  background-color: rgba();
}


.features-button {
  color: #FFC926;
  font-weight: bold;
  text-decoration: underline;
}

.features-button:hover {
  color: #F1DDA0;
}

.features-button:active {
  color: #FFC926;
}

/* footer -------------------------- */

.footer {
  position: relative;
}


.love {
  text-decoration: none;
  text-align: center;
}


.love .octicon-logo-github {
  position: relative;
  top: 0.11em;
}

/* Responsive -------------------------- */
/* Background */

.bg-item {
  display: none;
}

@media (min-width: 701px) {
  /* Wide */
  .hero .bg {
    background-image: url();
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 84%;
  }
}
@media (max-width: 700px) {
  /* Narrow */
 /
  .hero .bg {
    background-image: url();
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (min-width: 1400px) {
  /* Wide */
 
  .hero {
    padding-top: 100px;
  }


  .footer {
    padding-bottom: 100px;
  }

  .bg-item {
    display: block;
  }

  .bg-item--planet-3 {
    top: 780px;
    left: 10vw;
  }


  .bg-item--planet-2 {
    top: 400px;
    left: 2vw;
  }

 
  .bg-item--planet-1 {
    top: -240px;
    left: 75vw;
  }

  .bg-item--octonaut {
    top: 460px;
    right: -5vw;
  }


  .bg-item--rocket {
    top: 80px;
    right: 66vw;
  }
}
@media (min-width: 980px) and (max-width: 1399px) {

  .hero {
    padding-top: 150px;
  }


  .bg-item {
    display: block;
  }


  .bg-item--planet-3 {
    bottom: 60px;
    right: 80vw;
  }


  .bg-item--planet-2 {
    bottom: 740px;
    right: 85vw;
  }

  .bg-item--planet-1 {
    top: -300px;
    left: 72vw;
  }

 
  .bg-item--octonaut {
    bottom: 40px;
    left: 78vw;
  }


  .bg-item--rocket {
    top: 70px;
    right: 55vw;
  }
}
@media (min-width: 701px) and (max-width: 979px) {
  /* Medium */

  .hero {
    padding-top: 150px;
    padding-bottom: 100px;
  }


  .footer {
    padding-bottom: 100px;
  }


  .bg-item--planet-3 {
    display: block;
    bottom: -30px;
    left: 40vw;
  }


  .bg-item--planet-2 {
    display: block;
    bottom: 40px;
    right: 75vw;
  }

 
  .bg-item--planet-1 {
    display: block;
    top: -160px;
    left: 75vw;
    width: 430px;
  }


  .bg-item--octonaut {
    display: block;
    bottom: 40px;
    left: 70vw;
  }


  .bg-item--rocket {
    display: block;
    top: 20px;
    right: 52vw;
    width: 500px;
    transform: rotate(5deg);
    clip-path: inset(0px 0px 700px 0px);
  }
}
@media (max-width: 700px) {
  /* Narrow */

  .hero {
    padding-top: 150px;
  }

 
  .footer {
    padding-bottom: 100px;
  }


  .bg-item--planet-3 {
    display: block;
    bottom: 90px;
    right: 75vw;
  }


  .bg-item--planet-1 {
    display: block;
    top: -90px;
    left: 75vw;
    width: 300px;
  }


  .bg-item--octonaut {
    display: block;
    bottom: 140px;
    left: 70vw;
  }


  .bg-item--rocket {
    display: block;
    top: 40px;
    right: 46vw;
    width: 430px;
    transform: rotate(5deg);
    clip-path: inset(0px 0px 500px 0px);
  }
}
/* Footer */
@media (min-width: 1400px) {

  .footer {
    padding-bottom: 100px;
  }


  .bg-item--bottom {
    bottom: 0;
    left: 50%;
    margin-left: -680px;
  }


  .bg-item--bottom-stars {
    display: block;
    bottom: 150px;
    left: 50%;
    margin-left: -650px;
  }
}
@media (max-width: 1399px) {

  .footer {
    padding-bottom: 100px;
  }


  .bg-item--bottom {
    display: block;
    bottom: 0;
    right: -11%;
    width: 120%;
  }


  .bg-item--bottom-stars {
    display: block;
    bottom: 12vw;
    left: 6%;
    width: 88%;
  }
}
/* Swoosh */
@media (min-width: 1400px) {

  .bg-item--swoosh {
    display: block;
    bottom: 100px;
    right: 50%;
    margin-right: -490px;
    height: 620px;
  }
}
@media (min-width: 900px) and (max-width: 1399px) {

  .bg-item--swoosh {
    display: block;
    bottom: 8vw;
    right: 8vw;
    height: 800px;
  }
}
@media (max-width: 899px) {
 
  .bg-item--swoosh {
    display: block;
    bottom: 8vw;
    right: 10vw;
    height: 60vw;
  }
}
/* Desktop */
@media (min-width: 900px) {

  .hero .section-content {
    max-width: 780px;
    /* fit the laptop */
  }

 
  video {
    width: 780px;
    height: auto;
    background-size: 780px 560px;
  }


  .columns {
    columns: 2;
    column-gap: 4em;
  }

  .column {
    -webkit-column-break-inside: avoid;
    column-break-inside: avoid;
  }
}
/* Mobile last :) */
@media (max-width: 899px) {

  .video-container {
    position: relative;
    width: 100%;
    padding-top: 71.7948717949%;
    /* ratio 560:780*100 */
  }

  .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
  }


  .column + .column {
    margin-top: 4em;
  }
}
@media (max-width: 700px) {

  html {
    font-size: 14px;
  }


  h2 {
    margin-bottom: 1em;
  }

  .section-content {
    padding: 2em;
  }


  .features {
    margin: 2em 0;
  }


  .features-description {
    padding: 0;
  }


  .column + .column {
    margin-top: 2em;
  }
}
/* ------------------------------------------------------------------------------ */
/* Login -------------------------- */

.section.hero--login {
  background-color: #262f40;
  background-image: url(), radial-gradient(#202124, #202124);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 400px;
  padding: 0;
}


.section.hero--login .section-content {
  padding: 130px 2em 0 2em;
}


.section.footer--login {
  color: inherit;
  background: none;
}


.section.footer--login .love {
  padding-top: 0;
}


.account-token {
  margin-top: 4em;
}


.account-token h3 {
  font-size: 1.1em;
}


.account-token-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}


.account-token-form input,
.account-token-form button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: .5em 1em;
  margin: .4em;
  border-radius: 3px;
  box-sizing: border-box;
}


.show-token {
  flex: 1;
  color: inherit;
  text-align: center;
  border: 1px solid #d1d1d2;
}


.copy-token {
  border: none;
  color: #ffffff78;
  border: 1px solid transparent;
  background-color: #2A677F;
  /* One blue */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
}


.copy-token:focus,
.copy-token:hover {
  background-color: #667cea;
}


.copy-token:active {
  background-color: #4b65e7;
}

/* sign-in-explanation */

.note {
  color: #939395;
}
@charset "UTF-8";
@font-face {
  font-family: 'octicons';
  src: url(https://db.onlinewebfonts.com/t/1e6396faf00b0b4e055514147eb66134.eot?#iefix) format("embedded-opentype"), url(https://db.onlinewebfonts.com/t/1e6396faf00b0b4e055514147eb66134.woff) format("woff"), url(https://db.onlinewebfonts.com/t/1e6396faf00b0b4e055514147eb66134.ttf) format("truetype"), url(s) format("svg");
  font-weight: normal;
  font-style: normal;
}

.octicon {
  font: normal normal 16px octicons;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.mega-octicon {
  font: normal normal 32px octicons;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.octicon-alert:before {
  content: '\f02d';
}

/*  */

.octicon-alignment-align:before {
  content: '\f08a';
}

/*  */

.octicon-alignment-aligned-to:before {
  content: '\f08e';
}

/*  */

.octicon-alignment-unalign:before {
  content: '\f08b';
}

/*  */

.octicon-arrow-down:before {
  content: '\f03f';
}

/*  */

.octicon-arrow-left:before {
  content: '\f040';
}

/*  */

.octicon-arrow-right:before {
  content: '\f03e';
}

/*  */

.octicon-arrow-small-down:before {
  content: '\f0a0';
}

/*  */

.octicon-arrow-small-left:before {
  content: '\f0a1';
}

/*  */

.octicon-arrow-small-right:before {
  content: '\f071';
}

/*  */

.octicon-arrow-small-up:before {
  content: '\f09f';
}

/*  */

.octicon-arrow-up:before {
  content: '\f03d';
}

/*  */

.octicon-beer:before {
  content: '\f069';
}

/*  */

.octicon-book:before {
  content: '\f007';
}

/*  */

.octicon-bookmark:before {
  content: '\f07b';
}

/*  */

.octicon-briefcase:before {
  content: '\f0d3';
}

/*  */

.octicon-broadcast:before {
  content: '\f048';
}

/*  */

.octicon-browser:before {
  content: '\f0c5';
}

/*  */

.octicon-bug:before {
  content: '\f091';
}

/*  */

.octicon-calendar:before {
  content: '\f068';
}

/*  */

.octicon-check:before {
  content: '\f03a';
}

/*  */

.octicon-checklist:before {
  content: '\f076';
}

/*  */

.octicon-chevron-down:before {
  content: '\f0a3';
}

/*  */

.octicon-chevron-left:before {
  content: '\f0a4';
}

/*  */

.octicon-chevron-right:before {
  content: '\f078';
}

/*  */

.octicon-chevron-up:before {
  content: '\f0a2';
}

/*  */

.octicon-circle-slash:before {
  content: '\f084';
}

/*  */

.octicon-circuit-board:before {
  content: '\f0d6';
}

/*  */

.octicon-clippy:before {
  content: '\f035';
}

/*  */

.octicon-clock:before {
  content: '\f046';
}

/*  */

.octicon-cloud-download:before {
  content: '\f00b';
}

/*  */

.octicon-cloud-upload:before {
  content: '\f00c';
}

/*  */

.octicon-code:before {
  content: '\f05f';
}

/*  */

.octicon-color-mode:before {
  content: '\f065';
}

/*  */

.octicon-comment-add:before,
.octicon-comment:before {
  content: '\f02b';
}

/*  */

.octicon-comment-discussion:before {
  content: '\f04f';
}

/*  */

.octicon-credit-card:before {
  content: '\f045';
}

/*  */

.octicon-dash:before {
  content: '\f0ca';
}

/*  */

.octicon-dashboard:before {
  content: '\f07d';
}

/*  */
/
.octicon-database:before {
  content: '\f096';
}

/*  */

.octicon-device-camera:before {
  content: '\f056';
}

/*  */

.octicon-device-camera-video:before {
  content: '\f057';
}

/*  */

.octicon-device-desktop:before {
  content: '\f27c';
}

/*  */

.octicon-device-mobile:before {
  content: '\f038';
}

/*  */

.octicon-diff:before {
  content: '\f04d';
}

/*  */

.octicon-diff-added:before {
  content: '\f06b';
}

/*  */

.octicon-diff-ignored:before {
  content: '\f099';
}

/*  */

.octicon-diff-modified:before {
  content: '\f06d';
}

/*  */

.octicon-diff-removed:before {
  content: '\f06c';
}


.octicon-diff-renamed:before {
  content: '\f06e';
}


.octicon-ellipsis:before {
  content: '\f09a';
}


.octicon-eye-unwatch:before,
.octicon-eye-watch:before,
.octicon-eye:before {
  content: '\f04e';
}


.octicon-file-binary:before {
  content: '\f094';
}

.octicon-file-code:before {
  content: '\f010';
}


.octicon-file-directory:before {
  content: '\f016';
}

.octicon-file-media:before {
  content: '\f012';
}


.octicon-file-pdf:before {
  content: '\f014';
}


.octicon-file-submodule:before {
  content: '\f017';
}


.octicon-file-symlink-directory:before {
  content: '\f0b1';
}

.octicon-file-symlink-file:before {
  content: '\f0b0';
}


.octicon-file-text:before {
  content: '\f011';
}


.octicon-file-zip:before {
  content: '\f013';
}


.octicon-flame:before {
  content: '\f0d2';
}


.octicon-fold:before {
  content: '\f0cc';
}


.octicon-gear:before {
  content: '\f02f';
}


.octicon-gift:before {
  content: '\f042';
}

.octicon-gist:before {
  content: '\f00e';
}


.octicon-gist-secret:before {
  content: '\f08c';
}


.octicon-git-branch-create:before,
.octicon-git-branch-delete:before,
.octicon-git-branch:before {
  content: '\f020';
}


.octicon-git-commit:before {
  content: '\f01f';
}


.octicon-git-compare:before {
  content: '\f0ac';
}


.octicon-git-merge:before {
  content: '\f023';
}


.octicon-git-pull-request-abandoned:before,
.octicon-git-pull-request:before {
  content: '\f009';
}


.octicon-globe:before {
  content: '\f0b6';
}


.octicon-graph:before {
  content: '\f043';
}


.octicon-heart:before {
  content: '\2665';
}


.octicon-history:before {
  content: '\f07e';
}

/
.octicon-home:before {
  content: '\f08d';
}


.octicon-horizontal-rule:before {
  content: '\f070';
}


.octicon-hourglass:before {
  content: '\f09e';
}

.octicon-hubot:before {
  content: '\f09d';
}


.octicon-inbox:before {
  content: '\f0cf';
}


.octicon-info:before {
  content: '\f059';
}


.octicon-issue-closed:before {
  content: '\f028';
}

.octicon-issue-opened:before {
  content: '\f026';
}


.octicon-issue-reopened:before {
  content: '\f027';
}


.octicon-jersey:before {
  content: '\f019';
}


.octicon-jump-down:before {
  content: '\f072';
}


.octicon-jump-left:before {
  content: '\f0a5';
}


.octicon-jump-right:before {
  content: '\f0a6';
}


.octicon-jump-up:before {
  content: '\f073';
}


.octicon-key:before {
  content: '\f049';
}


.octicon-keyboard:before {
  content: '\f00d';
}


.octicon-law:before {
  content: '\f0d8';
}


.octicon-light-bulb:before {
  content: '\f000';
}


.octicon-link:before {
  content: '\f05c';
}


.octicon-link-external:before {
  content: '\f07f';
}


.octicon-list-ordered:before {
  content: '\f062';
}


.octicon-list-unordered:before {
  content: '\f061';
}


.octicon-location:before {
  content: '\f060';
}


.octicon-gist-private:before,
.octicon-mirror-private:before,
.octicon-git-fork-private:before,
.octicon-lock:before {
  content: '\f06a';
}


.octicon-logo-github:before {
  content: '\f092';
}


.octicon-mail:before {
  content: '\f03b';
}


.octicon-mail-read:before {
  content: '\f03c';
}


.octicon-mail-reply:before {
  content: '\f051';
}

.octicon-mark-github:before {
  content: '\f00a';
}


.octicon-markdown:before {
  content: '\f0c9';
}


.octicon-megaphone:before {
  content: '\f077';
}


.octicon-mention:before {
  content: '\f0be';
}


.octicon-microscope:before {
  content: '\f089';
}


.octicon-milestone:before {
  content: '\f075';
}


.octicon-mirror-public:before,
.octicon-mirror:before {
  content: '\f024';
}


.octicon-mortar-board:before {
  content: '\f0d7';
}


.octicon-move-down:before {
  content: '\f0a8';
}


.octicon-move-left:before {
  content: '\f074';
}


.octicon-move-right:before {
  content: '\f0a9';
}


.octicon-move-up:before {
  content: '\f0a7';
}


.octicon-mute:before {
  content: '\f080';
}


.octicon-no-newline:before {
  content: '\f09c';
}


.octicon-octoface:before {
  content: '\f008';
}


.octicon-organization:before {
  content: '\f037';
}


.octicon-package:before {
  content: '\f0c4';
}


.octicon-paintcan:before {
  content: '\f0d1';
}

.octicon-pencil:before {
  content: '\f058';
}


.octicon-person-add:before,
.octicon-person-follow:before,
.octicon-person:before {
  content: '\f018';
}


.octicon-pin:before {
  content: '\f041';
}

.octicon-playback-fast-forward:before {
  content: '\f0bd';
}


.octicon-playback-pause:before {
  content: '\f0bb';
}


.octicon-playback-play:before {
  content: '\f0bf';
}


.octicon-playback-rewind:before {
  content: '\f0bc';
}


.octicon-plug:before {
  content: '\f0d4';
}


.octicon-repo-create:before,
.octicon-gist-new:before,
.octicon-file-directory-create:before,
.octicon-file-add:before,
.octicon-plus:before {
  content: '\f05d';
}


.octicon-podium:before {
  content: '\f0af';
}


.octicon-primitive-dot:before {
  content: '\f052';
}


.octicon-primitive-square:before {
  content: '\f053';
}


.octicon-pulse:before {
  content: '\f085';
}


.octicon-puzzle:before {
  content: '\f0c0';
}


.octicon-question:before {
  content: '\f02c';
}


.octicon-quote:before {
  content: '\f063';
}


.octicon-radio-tower:before {
  content: '\f030';
}


.octicon-repo-delete:before,
.octicon-repo:before {
  content: '\f001';
}


.octicon-repo-clone:before {
  content: '\f04c';
}

.octicon-repo-force-push:before {
  content: '\f04a';
}

.octicon-gist-fork:before,
.octicon-repo-forked:before {
  content: '\f002';
}


.octicon-repo-pull:before {
  content: '\f006';
}


.octicon-repo-push:before {
  content: '\f005';
}


.octicon-rocket:before {
  content: '\f033';
}


.octicon-rss:before {
  content: '\f034';
}


.octicon-ruby:before {
  content: '\f047';
}


.octicon-screen-full:before {
  content: '\f066';
}

.octicon-screen-normal:before {
  content: '\f067';
}


.octicon-search-save:before,
.octicon-search:before {
  content: '\f02e';
}


.octicon-server:before {
  content: '\f097';
}


.octicon-settings:before {
  content: '\f07c';
}


.octicon-log-in:before,
.octicon-sign-in:before {
  content: '\f036';
}


.octicon-log-out:before,
.octicon-sign-out:before {
  content: '\f032';
}


.octicon-split:before {
  content: '\f0c6';
}


.octicon-squirrel:before {
  content: '\f0b2';
}


.octicon-star-add:before,
.octicon-star-delete:before,
.octicon-star:before {
  content: '\f02a';
}


.octicon-steps:before {
  content: '\f0c7';
}


.octicon-stop:before {
  content: '\f08f';
}


.octicon-repo-sync:before,
.octicon-sync:before {
  content: '\f087';
}


.octicon-tag-remove:before,
.octicon-tag-add:before,
.octicon-tag:before {
  content: '\f015';
}

.octicon-telescope:before {
  content: '\f088';
}


.octicon-terminal:before {
  content: '\f0c8';
}


.octicon-three-bars:before {
  content: '\f05e';
}


.octicon-tools:before {
  content: '\f031';
}


.octicon-trashcan:before {
  content: '\f0d0';
}

.octicon-triangle-down:before {
  content: '\f05b';
}


.octicon-triangle-left:before {
  content: '\f044';
}


.octicon-triangle-right:before {
  content: '\f05a';
}

.octicon-triangle-up:before {
  content: '\f0aa';
}


.octicon-unfold:before {
  content: '\f039';
}

.octicon-unmute:before {
  content: '\f0ba';
}

.octicon-versions:before {
  content: '\f064';
}


.octicon-remove-close:before,
.octicon-x:before {
  content: '\f081';
}

.octicon-zap:before {
  content: '\26A1';
}

/* ==========================================================================
   3. CHAT INTERACTIVO (GATTUZO)
   ========================================================================== */
 .gato-chat-container {
        font-family: "Tw Cen MT", "Twentieth Century", sans-serif;
        position: fixed;
        bottom: 20px;
        left: 20px; 
        z-index: 9999;
        display: block;
    }

    /* --- GLOBO DE AYUDA --- */
    .chat-help-bubble {
        position: absolute;
        bottom: 75px;
        left: 10px;
        background: #FFFFFF;
        color: #000000;
        padding: 10px 15px;
        border-radius: 4px; 
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        border: 1px solid rgba(191, 163, 126, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
        pointer-events: none;
    }

    .chat-help-bubble.show-bubble {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* --- MENÚ DE OPCIONES --- */
    .chat-options {
        position: absolute;
        bottom: 80px;
        left: 0; 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2;
    }

    .chat-options.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .option-btn {
        display: flex;
        align-items: center;
        background: rgba(32, 33, 36, 0.98); /* Color #202124 solicitado */
        backdrop-filter: blur(10px);
        color: #FFFFFF;
        padding: 15px 20px;
        border-radius: 4px; /* Rectángulos ligeramente redondeados */
        text-decoration: none;
        border: 1px solid rgba(191, 163, 126, 0.2);
        box-shadow: 0 4px 15px rgba(0,0,0,0.6);
        transition: background 0.3s, transform 0.3s, border-color 0.3s;
        min-width: 280px;
    }

    .btn-content {
        display: flex;
        flex-direction: column;
    }

    .btn-title {
        font-size: 13px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        margin-bottom: 2px;
    }

    .btn-desc {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: normal;
        line-height: 1.2;
    }

    .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .btn-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .option-btn:hover {
        background: #202124; 
        border-color: rgba(191, 163, 126, 0.6);
        transform: translateX(5px); 
    }

    .option-btn:hover .btn-desc {
        color: #FFFFFF;
    }

    /* --- BOTÓN DISPARADOR (XAT) --- */
    .gato-pulse-trigger {
        display: block;
        width: 60px; 
        height: 60px; 
        border-radius: 50%;
        cursor: pointer; 
        background: rgba(15, 15, 15, 0.9) url('xat.png') center/contain no-repeat;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(191, 163, 126, 0.15); 
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
        position: relative;
        padding: 0;
    }

    /* EFECTO DE LÍNEA GIRATORIA REESTABLECIDO */
    .gato-pulse-trigger::after {
        content: '';
        position: absolute;
        top: -3px; 
        left: -3px; 
        right: -3px; 
        bottom: -3px;
        border-radius: 50%;
        border: 1px solid transparent;
        border-top-color: rgba(191, 163, 126, 0.6); 
        animation: spinSoft 4s linear infinite;
        pointer-events: none;
    }

    @keyframes spinSoft {
        0% { transform: rotate(0deg); }

        100% { transform: rotate(360deg); }
    }

    /* INDICADOR ONLINE */
    .online-indicator {
        position: absolute;
        top: 4px; 
        right: 4px;
        width: 10px; 
        height: 10px;
        z-index: 3;
    }

    .dot {
        width: 100%; height: 100%;
        background-color: #25d366; 
        border-radius: 50%;
    }

    .pulse {
        position: absolute;
        top: 0; width: 100%; height: 100%;
        background-color: #25d366;
        border-radius: 50%;
        animation: pulseGreen 2.5s infinite;
        opacity: 0.6;
    }

    @keyframes pulseGreen {
        0% { transform: scale(1); opacity: 0.6; }
        70% { transform: scale(2.8); opacity: 0; }
        100% { transform: scale(1); opacity: 0; }
    }

    /* ACCESIBILIDAD */
    .sr-only {
        position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
    }
/* ==========================================================================
   3. CHAT INTERACTIVO (GATTUZO)
   ========================================================================== */
	 
  /* Contenedor principal del mapa - GOOGLE MAPS */
    .gattuzo-map-container {
        width: 100%;
        max-width: autopx;
        margin: autopx auto;
        background: #202124;
        padding: 0; /* Eliminado para que el mapa llegue al ras */
        border-radius: 4px;
        border: none; /* Eliminado el borde oro */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    /* Contenedor que aplica el modo oscuro al mapa */
    .map-frame-wrapper {
        position: relative;
        width: 100%;
        height: 400px; 
        border-radius: 4px;
        overflow: hidden;
    }

    /* Filtro profesional para que el mapa sea oscuro y elegante */
    .map-frame-wrapper iframe {
        width: 100% !important;
        height: 100% !important;
        border: 0 !important;
        filter: grayscale(100%) invert(92%) contrast(85%);
        display: block; /* Evita espacios en blanco residuales debajo */
    }

    /* Recupera un poco de color al pasar el mouse */
    .map-frame-wrapper:hover iframe {
        filter: grayscale(30%) invert(92%) contrast(90%);
        transition: filter 0.5s ease;
    }*/
/* Contenedor principal del mapa - GOOGLE MAPS */
	