<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GR ---------- MAIN VARS ----------- */
:root {
  --color-primary: #363636; /* #394A59; */
  --color-primary-light: #59758d;
  --color-secondary: #00aae4; /* #36BF7F; */
  --color-secondary-light: #00aae4; /* #75d3a7; */
  --color-secondary-dark: #464646; /* #1C5E3E; */
  --color-secondary-pale: #d9ebf1; /* #def4e9; */
  --color-accent: #D96666;
  --color-shadow-light: #939393; /* #1C5E3E; */
  --color-shadow-dark: #767676; /* #1C5E3E; */
}

/* GR ----------- MAIN BASE STYLES -------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Set core root defaults */
html {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  margin: 0;
}

/* Update default margin */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0 0 1.5rem;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a {
  text-decoration-skip-ink: auto;
  color: var(--color-secondary-dark);
}

a:hover,
a:focus-visible {
  color: var(--color-secondary);
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

svg {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* GR ---------- Layout ---------- */
.container {
  width: min(65em, 100%);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  width: min(35em, 100%);
}

/* GR ---------- Utility ---------- */
.code--inline {
  background-color: #eee;
  padding: 0.125em 0.25em;
  border: 0.0625rem solid #ccc;
  border-radius: 0.25em;
  color: #000;
  text-transform: none;
  white-space: nowrap;
}

/* GR ---------- Typography ---------- */
h1 {
  font-size: 2.019rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.756rem;
  line-height: 1.3;
}

h3 {
  color: var(--color-secondary-dark);
  font-size: 1.525rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.325rem;
  color: var(--color-accent);
  margin: 0;
  line-height: 1.3;
}

h5 {
  font-size: 1.15rem;
  font-weight: normal;
  line-height: 1.3;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 45em) {
  h1 {
    font-size: 2.481rem;
  }
  h2 {
    font-size: 2.069rem;
  }
  h3 {
    font-size: 1.725rem;
  }
  h4 {
    font-size: 1.438rem;
  }
  h5 {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 60em) {
  h1 {
    font-size: 3.056rem;
  }
  h2 {
    font-size: 2.444rem;
  }
  h3 {
    font-size: 1.956rem;
  }
  h4 {
    font-size: 1.563rem;
  }
  h5 {
    font-size: 1.25rem;
  }
}
/* GR ---------- Accessibility ---------- */
*:focus-visible {
  outline: 0.125rem solid var(--color-secondary);
  outline-offset: 0.125rem;
}

.skip-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.skip-links a {
  position: absolute;
  top: -10rem;
  left: 0.5rem;
  z-index: 100000;
  display: inline-block;
  padding: 0.55em 1.5em 0.5em;
  background-color: var(--color-secondary);
  border: 0.125rem solid var(--color-secondary);
  color: #000;
  border-radius: 0.25em;
  /* link necessary styles */
  text-decoration: none;
}

.skip-links a:focus {
  top: 0.75rem;
  outline: 0;
}

.screen-reader-text {
  position: absolute;
  clip-path: polygon(0 0, 0.1% 0, 0.1% 0.1%, 0 0.1%);
}

/* GR ---------- Buttons ---------- */
.btn,
input[type=submit] {
  /* common styles */
  display: inline-block;
  padding: 0.55em 1.5em 0.5em;
  background-color: var(--color-secondary);
  border: 0.125rem solid var(--color-secondary);
  color: #fff;
  border-radius: 0.25em;
  /* link necessary styles */
  text-decoration: none;
  /* button necessary styles */
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: #fff;
}

.btn--secondary {
  background-color: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
  color: white;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--color-secondary-light) !important;
  border-color: var(--color-secondary-light) !important;
  color: white;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn--small {
  font-size: 0.75rem;
}

.btn--large {
  font-size: 1.25rem;
}

/* GR ---------- Header ---------- */
.masthead {
  background-color: var(--color-primary);
  color: #fff;
  border-top: 0.25rem solid var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.masthead .container {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.masthead a {
  color: #fff;
  text-decoration: none;
}

.masthead a:hover,
.masthead a:focus-visible {
  color: var(--color-secondary);
}

.masthead .logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1.525rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
}

.masthead .logo__img {
  width: 4rem;
}

.masthead .logo__text {
  font-size: 1.525rem;
  font-weight: bold;
  line-height: 1.3;
}

.masthead nav {
  position: fixed;
  top: 0;
  right: -66.6666%;
  width: 66.6666vw;
  height: 100vh;
  box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.15);
  background-color: var(--color-primary);
  border-top: 0.25rem solid var(--color-accent);
}

.masthead nav.open {
  right: 0;
}

.masthead ul {
  padding: 6rem 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.masthead ul a {
  display: block;
  padding: 0.75rem 1.5rem;
  text-align: right;
  font-size: 1.5rem;
}

.masthead ul a:hover,
.masthead ul a:focus-visible {
  color: #fff;
  background-color: var(--color-secondary);
}

.masthead .sub-masthead {
  background-color: #222d36;
  color: #fff;
}

@media only screen and (min-width: 45em) {
  .masthead .container {
    padding: 0 1.5rem;
  }
  .masthead .site-title &gt; * {
    font-size: 1.725rem;
  }
  .masthead nav {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    box-shadow: none;
    z-index: auto;
    background-color: transparent;
    border: 0;
  }
  .masthead ul {
    flex-direction: row;
    padding: 0;
  }
  .masthead ul a {
    padding: 1.5rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 60em) {
  .masthead .site-title &gt; * {
    font-size: 1.956rem;
  }
}
/* GR ----- FOOTER -----  */
.footer {
  background-color: #394a59;
  color: #fff;
  border-bottom: 0.5rem solid var(--color-secondary);
}

.footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-secondary);
}

.footer .logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer .logo__img {
  width: 4rem;
}

.footer .logo__text {
  font-size: 1.525rem;
  font-weight: bold;
}

.footer ul {
  list-style: none;
  margin: 0;
  border-left: 0.124rem solid var(--color-secondary);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media only screen and (min-width: 45em) {
  .footer .container {
    flex-direction: row;
  }
  .footer .logo {
    flex: 2 0;
    align-items: flex-start;
  }
  .footer nav,
  .footer small {
    flex: 1 0;
  }
}
/* GR ---------- Banner ---------- */
.banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/banner-01.jpg");
  background-position: center;
  background-size: cover;
}

.banner .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 75vh;
  padding: 3rem 1.5rem;
}

.banner__content {
  width: min(35em, 100%);
}

.banner__title {
  font-size: 1.756rem;
  line-height: 1.3;
  color: var(--color-secondary-pale);
}

.banner__text {
  font-size: 1.15rem;
  color: #fff;
}

@media only screen and (min-width: 45em) {
  .banner__title {
    font-size: 2.069rem;
  }
  .banner__text {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 60em) {
  .banner__title {
    font-size: 2.444rem;
  }
  .banner__text {
    font-size: 1.25rem;
  }
}
/* GR ---------- Regular Text ---------- */
.regular-text .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.regular-text__title,
.regular-text__content {
  grid-column: span 12;
}

.regular-text__title {
  margin: 0;
}

@media only screen and (min-width: 60em) {
  .regular-text__title {
    grid-column: span 4;
  }
  .regular-text__content {
    grid-column: span 8;
  }
}
/* GR ---------- Card Group ---------- */
.card-group {
  background-color: var(--color-secondary-pale);
}

.card-group .container {
  --cols: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(var(--cols), 1fr);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.card-group__title {
  grid-column: 1/-1;
}

.card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1333333333);
  background-color: #fff;
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.card:hover,
.card:focus-visible {
  color: #000;
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.1333333333);
}

.card__image img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}

.card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  align-items: flex-start;
}

.card__title {
  font-size: 1.325rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card__text {
  flex-grow: 2;
}

@media only screen and (min-width: 45em) {
  .card-group .container {
    --cols: 2;
  }
  .card__title {
    font-size: 1.438rem;
  }
}
@media only screen and (min-width: 60em) {
  .card-group .container {
    --cols: 3;
  }
  .card__title {
    font-size: 1.563rem;
  }
}
/* GR ---- CONTACT FORM ---- */
.contact {
  background-color: var(--color-secondary-pale);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.contact__wrap {
  background-color: #fafafa;
  border-radius: 1.5rem;
  box-shadow: 0 0.25rem 0.6rem var(--color-shadow-dark);
  overflow: hidden;
  display: grid;
  --cols: 1;
  grid-template-columns: repeat(var(--cols), 1fr);
}

.contact__form {
  padding: 3rem 1.5rem;
  display: grid;
  --cols: 1;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: 1.5rem;
}

.form__unit.full {
  grid-column: 1/-1;
}

.btn__contact {
  background-color: var(--color-primary-light) !important;
  border-color: var(--color-primary-light) !important;
}

.btn__contact:hover {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
}

.contact__image {
  aspect-ratio: 16/9;
  background-color: var(--color-secondary);
  background-image: url("../images/contact-01.jpeg");
  background-size: 50%;
  background-size: cover;
}

.form__title {
  margin-bottom: 0;
}

.contact__form input, textarea {
  display: block;
  width: 100%;
  padding: 0.25rem;
  border: 0.0625rem solid #ccc;
  border-radius: 0.25rem;
}

label {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media only screen and (min-width: 45em) {
  .contact__wrap {
    --cols: 3;
  }
  .contact__form {
    grid-column: span 2;
    padding: 6rem 3rem;
    --cols: 2;
  }
  .contact__image {
    aspect-ratio: auto;
  }
  .contact__image {
    aspect-ratio: auto;
  }
}
@media only screen and (min-width: 60em) {
  .contact__wrap {
    --cols: 2;
  }
  .contact__form {
    grid-column: span 1;
  }
}
/* GR ---------- Nav Toggle ---------- */
.nav-toggle {
  width: 2.5rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.nav-toggle .tog {
  width: 100%;
  height: 4px;
  background-color: #fff;
  position: relative;
}

.tog.top {
  top: 0;
}

.tog.bottom {
  bottom: 0;
}

.open .top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.open .middle {
  opacity: 0;
}

.open .bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media only screen and (min-width: 45em) {
  .nav-toggle {
    display: none;
  }
}
.click-to-close {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5333333333);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.click-to-close.open {
  opacity: 1;
  pointer-events: all;
}

/* ---------- To Top ---------- */
.to-top {
  transition: transform 0.2s, bottom 0.2s;
}

.to-top {
  position: fixed;
  bottom: -0.5rem;
  right: 1.5rem;
  background-color: var(--color-secondary);
  color: #000;
  padding: 0.5rem 0.5rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  text-decoration: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1333333333);
  transform: translateY(100%);
}

.to-top.visible {
  transform: translateY(0);
}

.to-top:hover,
.to-top:focus-visible {
  bottom: 0;
  color: #000;
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  clip-path: polygon(0 0, 0.1% 0, 0.1% 0.1%, 0 0.1%);
}

/* GR ------ PORTFOLIO STYLE ------- */
.portfolio__group {
  display: grid;
  --cols: 1;
  grid-template-columns: repeat(var(--cols), 1fr);
}

.portfolio {
  width: 20rem;
  margin: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.6rem var(--color-shadow-light);
  background-color: white;
  position: relative;
  overflow: hidden;
}

.portfolio img {
  width: 100%;
}

.portfolio__info {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem 1rem;
  letter-spacing: 0.5px;
}

.portfolio__group h2 {
  color: var(--color-primary);
}

.portfolio__info h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.portfolio__info span {
  background-color: var(--color-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
}

.portfolio__tech {
  color: var(--color-secondary-pale);
}
.portfolio__tech_orange {
  background-color: orange !important;
  color: var(--color-secondary-pale);
}

.portfolio_link,
.portfolio_link:hover,
.portfolio_link:focus {
  text-decoration: none;
  text-transform: none;
  color: var(--color-primary);
}

.portfolio img{
  width: 10rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.portfolio__info span.green {
  color: lightgreen;
}

.portfolio__info span.orange {
  color: orange;
}

.portfolio__info span.red {
  color: red;
}

.overview {
  /* position: absolute; */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  padding: 1rem;
  max-height: 100%;
  font-size: 0.9rem;
  /* transform: translateY(101%);
  transition: transform 0.3s ease-in; */
}

.portfolio:hover .overview,
.portfolio:focus .overview {
  transform: translateY(0);
}

@media only screen and (min-width: 45em) {
  .portfolio__group {
    --cols: 2;
  }
}
@media only screen and (min-width: 60em) {
  .portfolio__group {
    --cols: 3;
  }
}
/* GR ---------- Skills Style ---------- */
.skills-group {
  background-color: white;
}

.skills-group .container {
  --cols: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(var(--cols), 1fr);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.skills-group__title {
  grid-column: 1/-1;
}

.skills__main-title {
  color: var(--color-primary);
  grid-column: 1/-1;
}

.skills__main-subtitle {
  color: var(--color-primary-light);
  grid-column: 1/-1;
}

.skills {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1333333333);
  background-color: #fff;
  color: #000;
  text-decoration: none;
  /* display: grid; */
  /* grid-column: span 1; */
  display: flex;
  flex-direction: row;
  /* flex-direction: column; */
}

.skills:hover,
.skills:focus-visible {
  color: #000;
  box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.1333333333);
}

.skills__image {
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  white-space: nowrap;
}

.skills__image img {
  vertical-align: middle;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  max-width: 10rem;
  right: 0;
  top: 0;
}

.skills__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 2;
  align-items: flex-start;
  max-width: 21rem;
}

.skills__title {
  font-size: 1.325rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.skills__text {
  flex-grow: 2;
}

@media only screen and (min-width: 45em) {
  .skills-group .container {
    --cols: 2;
  }
  .skills__title {
    font-size: 1.438rem;
  }
}
@media only screen and (min-width: 60em) {
  .skills-group .container {
    --cols: 2;
  }
  .skills__title {
    font-size: 1.563rem;
  }
}

.inscripcion-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    padding: 20px;
}

.inscripcion-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.inscripcion-message {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}
</pre></body></html>