/* =========================================
   VARIABLES
========================================= */

:root {
  --orange: #ff4d16;
  --orange-dark: #df3c09;

  --black: #121212;
  --black-soft: #1b1b1b;

  --cream: #f1ede4;
  --cream-dark: #e2dccf;

  --white: #ffffff;

  --gray: #76736e;
  --border: #ccc6bb;
}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  background: var(--cream);
  color: var(--black);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;
}


body.menu-open {
  overflow: hidden;
}


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


img {
  width: 100%;
  display: block;
}


button,
input,
textarea,
select {
  font: inherit;
}


button {
  border: 0;
}


.container {
  width: min(1200px, 90%);
  margin: auto;
}


.section {
  padding: 120px 0;
}


/* =========================================
   TIPOGRAFÍA
========================================= */

h1,
h2,
blockquote {
  font-weight: 500;
}


em {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;
}


.eyebrow {
  display: block;

  font-size: .65rem;
  font-weight: 900;

  letter-spacing: 2px;

  margin-bottom: 22px;
}


.section-number {
  display: block;

  color: var(--orange);

  font-size: .65rem;
  font-weight: 900;

  letter-spacing: 2px;

  margin-bottom: 20px;
}


.section-number.light {
  color: #aaa;
}


/* =========================================
   HEADER
========================================= */

.header {
  position: absolute;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 100;
}


.navbar {
  height: 95px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom:
    1px solid rgba(0,0,0,.18);
}


.logo {
  font-size: .85rem;
  font-weight: 900;

  letter-spacing: 2px;
}


.logo span {
  color: var(--orange);

  margin-left: 5px;
}


.nav-links {
  display: flex;
  align-items: center;

  gap: 30px;

  list-style: none;
}


.nav-links a {
  font-size: .7rem;
  font-weight: 700;
}


.nav-links a:hover {
  color: var(--orange);
}


.header-cta {
  padding-bottom: 4px;

  border-bottom:
    1px solid var(--black);

  font-size: .62rem;
  font-weight: 900;

  letter-spacing: .7px;
}


.menu-btn {
  display: none;

  background: transparent;

  color: var(--black);

  font-size: 1.7rem;

  cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 900px;

  position: relative;

  background: var(--cream);

  overflow: hidden;
}


.hero-number {
  position: absolute;

  right: -30px;
  top: 60px;

  color: rgba(0,0,0,.035);

  font-size: 22rem;
  font-weight: 900;

  line-height: 1;

  pointer-events: none;
}


.hero-grid {
  min-height: 830px;

  padding-top: 95px;

  display: grid;

  grid-template-columns:
    1fr .8fr;

  gap: 80px;

  align-items: center;

  position: relative;

  z-index: 2;
}


.hero h1 {
  max-width: 700px;

  font-size:
    clamp(4.5rem, 8.5vw, 9rem);

  line-height: .82;

  letter-spacing: -7px;

  margin-bottom: 35px;
}


.hero h1 em {
  color: var(--orange);
}


.hero-content > p {
  max-width: 520px;

  color: var(--gray);

  font-size: 1rem;

  margin-bottom: 35px;
}


.hero-actions {
  display: flex;
  align-items: center;

  gap: 30px;

  flex-wrap: wrap;
}


.btn {
  min-height: 55px;

  padding: 0 24px;

  display: inline-flex;
  align-items: center;

  gap: 35px;

  font-size: .65rem;
  font-weight: 900;

  letter-spacing: .8px;

  cursor: pointer;

  transition: .25s;
}


.btn-black {
  background: var(--black);
  color: white;
}


.btn-black:hover {
  background: var(--orange);
}


.text-link {
  padding-bottom: 4px;

  border-bottom:
    1px solid var(--black);

  font-size: .62rem;
  font-weight: 900;

  letter-spacing: .7px;
}


.hero-visual {
  position: relative;

  height: 650px;
}


.hero-shape {
  position: absolute;

  width: 80%;
  height: 85%;

  right: -10%;
  top: 5%;

  background: var(--orange);

  border-radius:
    50% 50% 5px 5px;
}


.hero-image {
  position: absolute;

  width: 82%;
  height: 570px;

  left: 0;
  bottom: 0;

  overflow: hidden;

  filter: grayscale(100%);
}


.hero-image img {
  height: 100%;

  object-fit: cover;

  object-position: center top;
}


.hero-caption {
  position: absolute;

  bottom: 0;
  right: 0;

  display: flex;
  flex-direction: column;

  gap: 2px;

  background: var(--black);
  color: white;

  padding: 16px 20px;

  font-size: .55rem;

  letter-spacing: 1px;
}


.hero-caption span:last-child {
  color: #888;
}


.hero-marquee {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 100%;

  padding: 15px 0;

  overflow: hidden;

  background: var(--black);
  color: white;

  white-space: nowrap;
}


.hero-marquee div {
  width: max-content;

  font-size: .7rem;
  font-weight: 800;

  letter-spacing: 2px;

  animation:
    marquee 28s linear infinite;
}


@keyframes marquee {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================================
   CONFERENCIAS
========================================= */

.talks {
  background: white;
}


.section-heading {
  display: grid;

  grid-template-columns:
    1.2fr .6fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 70px;
}


.section-heading h2 {
  max-width: 800px;

  font-size:
    clamp(3.2rem, 6vw, 6rem);

  line-height: .92;

  letter-spacing: -5px;
}


.section-heading h2 em {
  color: var(--orange);
}


.section-heading > p {
  max-width: 400px;

  color: var(--gray);
}


.talks-list {
  border-top:
    1px solid var(--border);
}


.talk {
  display: grid;

  grid-template-columns:
    100px 1fr 80px;

  gap: 30px;

  padding: 45px 0;

  border-bottom:
    1px solid var(--border);

  transition: .3s;
}


.talk:hover {
  padding-left: 25px;
  padding-right: 25px;

  background: var(--cream);
}


.talk-number {
  color: var(--orange);

  font-size: .65rem;
  font-weight: 900;
}


.talk-category {
  color: var(--gray);

  font-size: .58rem;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.talk h3 {
  max-width: 700px;

  font-size:
    clamp(2.2rem, 4vw, 4rem);

  line-height: 1;

  letter-spacing: -3px;

  margin: 10px 0 18px;
}


.talk-content > p {
  max-width: 600px;

  color: var(--gray);

  font-size: .88rem;
}


.talk-meta {
  display: flex;

  gap: 30px;

  margin-top: 25px;

  color: #999;

  font-size: .55rem;

  letter-spacing: 1px;
}


.talk-arrow {
  align-self: center;

  font-size: 2rem;

  font-weight: 300;

  text-align: right;
}


/* =========================================
   SOBRE MÍ
========================================= */

.about {
  padding: 130px 0;

  background: var(--black);

  color: white;
}


.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 100px;

  align-items: center;
}


.about-image {
  height: 680px;

  position: relative;
}


.about-image img {
  height: 100%;

  object-fit: cover;

  filter: grayscale(100%);
}


.about-image-label {
  position: absolute;

  bottom: 0;
  right: 0;

  width: 150px;
  height: 150px;

  padding: 20px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  background: var(--orange);

  color: var(--black);
}


.about-image-label span {
  font-size: .6rem;
  font-weight: 900;

  letter-spacing: 1px;
}


.about-image-label strong {
  font-size: 2rem;
}


.about-content h2 {
  font-size:
    clamp(3rem, 5.5vw, 5.7rem);

  line-height: .92;

  letter-spacing: -5px;

  margin-bottom: 30px;
}


.about-content h2 em {
  display: block;

  color: var(--orange);
}


.about-lead {
  color: white !important;

  font-size: 1.25rem !important;
}


.about-content > p {
  max-width: 520px;

  color: #929292;

  font-size: .9rem;

  margin-bottom: 18px;
}


.signature {
  margin-top: 50px;

  color: var(--orange);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 2rem;

  font-style: italic;
}


/* =========================================
   EXPERIENCIA
========================================= */

.experience {
  background: var(--cream);
}


.experience-heading {
  max-width: 900px;

  margin-bottom: 80px;
}


.experience-heading h2 {
  font-size:
    clamp(3.2rem, 6vw, 6rem);

  line-height: .92;

  letter-spacing: -5px;
}


.experience-heading h2 em {
  color: var(--orange);
}


.stats {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);
}


.stats article {
  min-height: 240px;

  padding: 35px 30px;

  border-right:
    1px solid var(--border);
}


.stats article:last-child {
  border-right: 0;
}


.stats strong {
  display: block;

  font-size:
    clamp(3rem, 5vw, 5.5rem);

  line-height: 1;

  letter-spacing: -4px;

  font-weight: 500;
}


.stats strong span {
  color: var(--orange);
}


.stats p {
  max-width: 140px;

  color: var(--gray);

  font-size: .7rem;

  margin-top: 45px;
}


.companies {
  margin-top: 90px;
}


.companies > span {
  display: block;

  color: var(--gray);

  font-size: .6rem;
  font-weight: 800;

  letter-spacing: 1.5px;

  margin-bottom: 25px;
}


.company-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);
}


.company-grid div {
  min-height: 120px;

  display: grid;
  place-items: center;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

  color: #777;

  font-size: 1.15rem;
  font-weight: 900;

  letter-spacing: 2px;
}


/* =========================================
   TESTIMONIO
========================================= */

.testimonial {
  padding: 130px 0;

  background: var(--orange);

  color: var(--black);
}


.testimonial-grid {
  display: grid;

  grid-template-columns:
    .25fr 1fr;

  gap: 60px;
}


.quote-symbol {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 10rem;

  line-height: .6;
}


.quote-content blockquote {
  max-width: 950px;

  font-size:
    clamp(2.5rem, 5vw, 5rem);

  line-height: .98;

  letter-spacing: -4px;
}


.quote-author {
  display: flex;

  justify-content: space-between;

  gap: 40px;

  margin-top: 60px;

  padding-top: 25px;

  border-top:
    1px solid rgba(0,0,0,.35);
}


.quote-author strong,
.quote-author span {
  display: block;

  font-size: .6rem;

  letter-spacing: 1px;
}


.quote-author div span {
  margin-top: 4px;

  color: #63301d;
}


/* =========================================
   BOOKING
========================================= */

.booking {
  padding: 130px 0;

  position: relative;

  overflow: hidden;

  background: var(--cream);
}


.booking-shape {
  position: absolute;

  width: 500px;
  height: 500px;

  border:
    1px solid var(--orange);

  border-radius: 50%;

  left: -250px;
  bottom: -250px;
}


.booking-grid {
  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: 100px;

  position: relative;

  z-index: 2;
}


.booking-copy h2 {
  font-size:
    clamp(3.3rem, 6vw, 6rem);

  line-height: .9;

  letter-spacing: -5px;

  margin-bottom: 30px;
}


.booking-copy h2 em {
  color: var(--orange);
}


.booking-copy > p {
  max-width: 470px;

  color: var(--gray);

  margin-bottom: 45px;
}


.booking-info {
  display: grid;

  gap: 20px;
}


.booking-info div {
  padding-top: 15px;

  border-top:
    1px solid var(--border);
}


.booking-info span {
  display: block;

  color: var(--orange);

  font-size: .55rem;
  font-weight: 900;

  letter-spacing: 1px;

  margin-bottom: 4px;
}


.booking-info strong {
  font-size: .75rem;
}


.booking-form {
  padding: 45px;

  background: white;

  border:
    1px solid var(--border);
}


.form-heading {
  margin-bottom: 35px;
}


.form-heading > span {
  color: var(--orange);

  font-size: .55rem;
  font-weight: 900;

  letter-spacing: 1.5px;
}


.form-heading h3 {
  font-size: 1.7rem;

  margin-top: 5px;
}


.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 20px;
}


.field {
  margin-bottom: 23px;
}


.field label {
  display: block;

  font-size: .6rem;
  font-weight: 900;

  letter-spacing: .7px;

  text-transform: uppercase;

  margin-bottom: 8px;
}


.field input,
.field select,
.field textarea {
  width: 100%;

  padding: 13px 0;

  background: transparent;

  border: 0;

  border-bottom:
    1px solid #bbb;

  outline: none;
}


.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
}


.field textarea {
  min-height: 110px;

  resize: vertical;
}


.submit-button {
  width: 100%;

  min-height: 60px;

  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--black);
  color: white;

  cursor: pointer;

  transition: .25s;
}


.submit-button span {
  font-size: .65rem;
  font-weight: 900;

  letter-spacing: .8px;
}


.submit-button strong {
  color: var(--orange);

  font-size: 1.3rem;
}


.submit-button:hover {
  background: var(--orange);
}


.submit-button:hover strong {
  color: white;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding: 90px 0 25px;

  background: var(--black);

  color: white;
}


.footer-main {
  display: flex;

  justify-content: space-between;

  gap: 80px;

  padding-bottom: 80px;
}


.footer-name span,
.footer-name strong {
  display: block;

  font-size:
    clamp(3.5rem, 8vw, 8rem);

  line-height: .75;

  letter-spacing: -6px;
}


.footer-name strong {
  color: var(--orange);
}


.footer-nav {
  display: flex;

  gap: 80px;
}


.footer-nav div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.footer-nav div > span {
  color: #555;

  font-size: .55rem;

  letter-spacing: 1.5px;

  margin-bottom: 10px;
}


.footer-nav a {
  color: #999;

  font-size: .7rem;
}


.footer-nav a:hover {
  color: white;
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding-top: 25px;

  border-top:
    1px solid #333;

  color: #555;

  font-size: .6rem;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .desktop-cta {
    display: none;
  }


  .menu-btn {
    display: block;
  }


  .nav-links {
    display: none;

    position: absolute;

    top: 95px;
    left: 0;

    width: 100%;

    min-height:
      calc(100vh - 95px);

    padding: 50px 5%;

    background: var(--cream);

    flex-direction: column;

    align-items: flex-start;
  }


  .nav-links.active {
    display: flex;
  }


  .nav-links a {
    font-size: 1.5rem;
  }


  .hero-grid,
  .section-heading,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }


  .hero-grid {
    padding:
      160px 0 100px;

    gap: 50px;
  }


  .hero-visual {
    max-width: 650px;
  }


  .stats {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .testimonial-grid {
    grid-template-columns: 1fr;
  }


  .quote-symbol {
    font-size: 6rem;
  }


  .footer-main {
    flex-direction: column;
  }

}


@media (max-width: 650px) {

  .section {
    padding: 80px 0;
  }


  .navbar {
    height: 80px;
  }


  .nav-links {
    top: 80px;

    min-height:
      calc(100vh - 80px);
  }


  .hero-grid {
    padding-top: 130px;
  }


  .hero h1 {
    font-size: 4.5rem;

    letter-spacing: -4px;
  }


  .hero-visual {
    height: 520px;
  }


  .hero-image {
    height: 470px;

    width: 88%;
  }


  .hero-shape {
    height: 80%;
  }


  .talk {
    grid-template-columns:
      40px 1fr;

    gap: 10px;
  }


  .talk-arrow {
    display: none;
  }


  .talk-meta {
    flex-direction: column;

    gap: 5px;
  }


  .about {
    padding: 80px 0;
  }


  .about-image {
    height: 500px;
  }


  .stats {
    grid-template-columns: 1fr;
  }


  .stats article {
    min-height: 190px;

    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }


  .company-grid {
    grid-template-columns: 1fr 1fr;
  }


  .testimonial {
    padding: 80px 0;
  }


  .quote-content blockquote {
    letter-spacing: -3px;
  }


  .quote-author {
    flex-direction: column;
  }


  .booking {
    padding: 80px 0;
  }


  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .booking-form {
    padding: 30px 20px;
  }


  .footer-nav {
    flex-direction: column;

    gap: 35px;
  }


  .footer-bottom {
    flex-direction: column;
  }

}