:root {
  --orange: #f7771d;
  --orange-dark: #e56d12;
  --green: #2f7a50;
  --green-title: #256f46;
  --green-dark: #21372a;
  --green-soft: #edf5ee;
  --green-line: rgba(47, 122, 80, 0.10);
  --white: #ffffff;
  --muted: #5c7163;
  --text: #304137;
  --shadow: 0 18px 50px rgba(38, 85, 59, 0.10);
  --transition: 260ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 193, 72, 0.12), transparent 22%),
    radial-gradient(circle at right 12% top 20%, rgba(104, 185, 175, 0.10), transparent 18%),
    linear-gradient(180deg, #f8fcf7 0%, #eef7ee 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* =========================
   FONDO
========================= */

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
  opacity: 0.38;
  z-index: -1;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(104, 185, 175, 0.18);
  top: -70px;
  left: -30px;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: rgba(162, 193, 72, 0.16);
  right: 4%;
  top: 18%;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: rgba(247, 119, 29, 0.08);
  bottom: 5%;
  left: 10%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: max-content;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
  font-family: "Arial Rounded MT Bold", "Poppins", Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text sup {
  font-size: 0.48em;
  position: relative;
  top: -0.65em;
  margin-left: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav-links a:hover {
  background: rgba(47, 122, 80, 0.08);
  color: var(--green);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 205, 123, 0.10);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-dark);
  margin: 4px auto;
  border-radius: 999px;
}

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

.hero-simple {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 4rem;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-isologo {
  width: min(520px, 86vw);
  margin: 0 auto 1.2rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(36, 80, 52, 0.12));
}

.hero-content h1 {
  margin: 0 0 0.9rem;
  font-family: "Arial Rounded MT Bold", "Poppins", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--green-title);
}

#correo {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #3b7151;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 500;
  transition: color var(--transition);
}

#correo:hover {
  color: var(--orange);
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  font-weight: 600;
}

/* =========================
   REDES
========================= */

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
  width: min(760px, 100%);
  margin: 0 auto;
}

.social-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(35, 60, 43, 0.16);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.04);
  filter: saturate(1.08);
}

/* Colores reales / reconocibles por red social */

.social-youtube {
  background: #ff0000;
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.24);
}

.social-facebook {
  background: #1877f2;
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.24);
}

.social-instagram {
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
  box-shadow: 0 14px 28px rgba(214, 36, 159, 0.24);
}

.social-snapchat {
  background: #fffc00;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 14px 28px rgba(255, 252, 0, 0.28);
}

.social-tiktok {
  background: #050505;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}
.social-tiktok i {
  text-shadow:
    -2px -1px 0 #25f4ee,
    2px 1px 0 #fe2c55;
}

.social-x {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}


.social-threads {
  background: #ffffff;
  color: #000000;
  border: 1px solid #cecece;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}
.social-threads i {
  font-weight: 700;
}

.social-whatsapp {
  background: #25d366;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.24);
}
.social-threads:hover {
  background: #f7f7f7;
  border-color: #000000;
}
/* =========================
   SECCIONES DE TEXTO
========================= */

.text-section {
  padding: 2rem 0 4.5rem;
}

.alt-section {
  padding-top: 0;
}

.section-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 2.4rem 2rem;
}

.section-box h2 {
  margin: 0 0 1.4rem;
  font-family: "Arial Rounded MT Bold", "Poppins", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--green-title);
}

.section-box p {
  margin: 0 0 1.05rem;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.section-box strong {
  color: var(--green-dark);
}

.section-end {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--green-dark);
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    text-align: center;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: 1.45rem;
  }

  .hero-isologo {
    width: min(460px, 78vw);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.4rem, 1120px);
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .navbar {
    min-height: 68px;
    padding: 0.8rem 1rem;
    border-radius: 26px;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-icon {
    width: 28px;
    height: 28px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-simple {
    min-height: auto;
    padding: 1.8rem 0 3rem;
  }

  /*
    ACÁ ESTABA EL PROBLEMA:
    antes estaba en width: min(150px, 42vw);
    por eso en mobile quedaba chiquito.
  */
  .hero-isologo {
    width: min(330px, 78vw);
    margin-bottom: 1rem;
  }

  .hero-content h1 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 1.04;
    margin-bottom: 0.85rem;
  }

  #correo {
    font-size: 0.95rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.45rem;
  }

  .social-icons {
    width: min(340px, 100%);
    gap: 0.85rem;
  }

  .social-icon {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .text-section {
    padding: 1.2rem 0 2.8rem;
  }

  .section-box {
    padding: 1.5rem 1rem;
    border-radius: 22px;
  }

  .section-box h2 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }

  .section-box p {
    font-size: 0.97rem;
    line-height: 1.8;
  }
}

/* =========================
   MOBILE MUY CHICO
========================= */

@media (max-width: 380px) {
  .brand-text {
    font-size: 0.95rem;
  }

  .brand-icon {
    width: 25px;
    height: 25px;
  }

  .hero-isologo {
    width: min(300px, 82vw);
  }

  .hero-content h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .social-icons {
    width: min(300px, 100%);
    gap: 0.75rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }
}