/* ===========================================
   1. RESET BÁSICO
   =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Dela Gothic One', Lexend, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #222;
}

/* ===========================================
     2. TIPOGRAFÍA GENERAL
     =========================================== */
h1,
h2,
h3,
h4 {
  font-family: 'Dela Gothic One';
  line-height: 1.2rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.google

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
  margin-top: 48px;
}

h3 {
  font-size: 24px;
  margin-top: 32px;
}

h4 {
  font-size: 18px;
  margin-top: 24px;
}

p {
  margin-bottom: 16px;
  font-family: 'Lexend';
}

strong {
  font-weight: bold;
  color: #000000;
}

/* ===========================================
     3. ENLACES
     =========================================== */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  color: #56CD82;
}

a:active {
  color: #1e40af;
}

/* ===========================================
     4. LISTAS
     =========================================== */
ul {
  list-style: none;
}

/* ===========================================
     5. HEADER
     =========================================== */
.header {
  background-color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
}

.header__container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  position: fixed;
  
}

.header__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.header__brand {
    text-align: center;
    display: flex;
    background: rgb(144 238 144 / 20%);
    border-radius: 64px;
    box-shadow: 0 4px 64px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    color: #333;
}

.header__name {
  margin-bottom: 4px;
  font-size: 1rem;
  font-family: 'Dela Gothic One';
}

.header__tagline {
  color: #222222;
  font-size: .5rem;
  padding: 2px;
}


/* 3. El Efecto :hover */
.coin-container:hover .coin {
  /* Rotamos sobre el eje Y (giro horizontal) una vuelta completa (360 grados) */
  transform: rotateY(360deg);
}
/* ===========================================
     6. NAVEGACIÓN
     =========================================== */
.nav {
  text-align: center;
}

.nav__list {
  display: none;
  flex-direction: right;
}

.nav__item {
  display: inline-block;
  margin: 0 16px;
}

.nav__link {
  padding: 8px 12px;
  display: inline-block;
  color: #333333;
  font-weight: 500;
}

.nav__link:hover {
  color: darkgreen;
  text-decoration: none;

}

.nav__link--active {
  color: darkgreen;
  font-weight: bold;
  background-color: #222;
}

/* ===========================================
     7. MAIN CONTENT
     =========================================== */
.main {
  margin: 0 auto;
}

/* ===========================================
     8. HERO SECTION
     =========================================== */
.hero {
  padding: 64px 0;
  text-align: center;
  background: linear-gradient(to top left,  #b987fa,  #61FF98, #56CD82);
  max-width: 100%;

}
#noise-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  mix-blend-mode: overlay;
  pointer-events: none;
    z-index: 1;
  
}

.hero__container {
  max-width: 20%;
  margin: 0 auto;
  padding: 0 20px;
  justify-items: center;
}
/* 1. Contenedor Padre (El espacio 3D) */
.coin-container {
  width: 250px;
  height: 250px;
  perspective: 1000px; 
}
.coin {
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, #C5FF95 0%, #56CD82 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  
  /* Definimos que la transición sea suave */
  transition: transform 0.32s ease-in-out;
  
  /* Avisa al navegador que renderice en un entorno 3D real */
  transform-style: preserve-3d; 
}
.hero__title {
    text-align: center;
    text-transform: uppercase;
    font-size: 4rem;
    /*font-size: clamp(2rem, 4vw, 4rem;)*/
    color: #1a1a1a;
    margin-bottom: 1rem;
    word-wrap: break-word;
    width: 100%;
    justify-items: center;
    padding: 1.5rem 4.25rem;
    line-height: 4rem;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: #222222;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero__description {
  font-size: 18px;
  color: #222;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Roboto';
}

.hero__actions {
  margin-bottom: 48px;
}

.hero__stats {
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
}

.stat {
  display: inline-block;
  margin: .5rem;
  text-align: center;
  width: 25%;
  align-self: flex-start;
}

.stat__number {
  display: block;
  font-size: 2rem;
  /* font-weight: bold; */
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  color: #666666;
}

/* ===========================================
     9. BOTONES
     =========================================== */
.button {
  display: inline-block;
  padding: 16px 24px;
  margin: 8px;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 64px;
  cursor: pointer;
  text-decoration: none;
}

.button--primary {
  background-color: #222;
  color: #C5FF95;
  border-color: #C5FF95;
}

.button--primary:hover {
  background-color: #C5FF95;
  border-color: #222;
  text-decoration: none;
  color:#000000;
}

.button--secondary {
  background-color: rgb(144 238 144 / 70%);
  color: #222;
  border: 1px solid #C5FF95;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.button--secondary:hover {
  background-color: #222;
  color: #C5FF95;
  text-decoration: none;
  box-shadow: 1px 1px 8px;

}

.button--large {
  padding: 16px 32px;
  font-size: 18px;
}



/* ===========================================
     17. CONTACT SECTION
     =========================================== */
.contact {
  padding: 64px 0;
  background-color: #222;
  z-index: 2;
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  
}

.contact__title {
  margin-bottom: 32px;
  color: #C5FF95;
}

.contact__description {
  color: #666666;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__methods {
  margin-bottom: 48px;
}

.contact__method {
  border: 1px solid #C5FF95;
  border-radius: 24px;
  display: inline-block;
  margin: 0 8px 8px;
  text-align: center;
  padding: 24px;
  background-color: #1a1a1a;

}

.contact__method-title {
  font-size: 18px;
  margin-bottom: 8px;
  color: #eaeaea;
}

.contact__link {
  color: #C5FF95;
  font-weight: 100;
  font-family: 'Roboto';
  text-decoration: underline;
  
}

/* ===========================================
     18. FOOTER
     =========================================== */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__nav {
  margin-bottom: 24px;
}

.footer__link {
  color: #ffffff;
  margin: 0 16px;
  display: inline-block;
}

.footer__link:hover {
  color: #93c5fd;
  text-decoration: none;
}

.footer__copyright {
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer__credits {
  color: #9ca3af;
  font-size: 14px;
}

@media (min-width: 441px) {
  .nav__list {
    display: block;
  }

  .values__list {
    padding: 0;
    display: flex;
    /* flex-wrap: wrap;
  }
}