/* =========================================================
   PASE GOL · ARGENTINA
   DISEÑO MODERNO
========================================================= */


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

:root {

  --pg-black: #070a0d;
  --pg-black-soft: #10151a;

  --pg-orange: #ff6800;
  --pg-orange-light: #ff8a00;

  --pg-green: #2b8a32;
  --pg-green-dark: #145c22;

  --pg-blue: #74ACDF;
  --pg-blue-dark: #5b9bd0;

  --pg-white: #ffffff;
  --pg-light: #f4f6f3;
  --pg-gray: #697078;
  --pg-gray-light: #e5e9e5;

  --pg-radius: 18px;

}


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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  margin: 0;

  font-family:
    "Trebuchet MS",
    Arial,
    Helvetica,
    sans-serif;

  color: #111;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04)
    ),
    url("img_generales/cesped.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

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

img {
  max-width: 100%;
}


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

.pg-header {

  position: sticky;

  top: 0;

  z-index: 100;

  background:
    rgba(5, 8, 13, 0.94);

  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(255,255,255,0.12);

}


.pg-header__container {

  width: min(1380px, 94%);

  min-height: 76px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

  position: relative;

}


/* =========================================================
   LOGO
========================================================= */

.pg-brand {

  display: flex;

  align-items: center;

  flex-shrink: 0;

}

.pg-brand img {

  height: 80px;

  width: auto;

  display: block;

  transition:
    transform 0.25s ease;

}

.pg-brand:hover img {

  transform:
    scale(1.04);

}


/* =========================================================
   PELOTA
========================================================= */

.giratoria {

  width: 33px;

  height: 33px;

  object-fit: contain;

  position: absolute;

  left: 121px;

  top: 22px;

  z-index: 9999;

  pointer-events: none;

  transition: transform 0.1s linear;

}


/* =========================================================
   MENÚ
========================================================= */

.pg-tabs {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  flex: 1;

}


.newmenuboton1,
.newmenuboton2 {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 9px 17px;

  border-radius: 999px;

  border:
    1px solid rgba(148,163,184,0.45);

  background:
    rgba(15,23,42,0.85);

  color: #e8edf2;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.3px;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;

}


.newmenuboton1:hover {

  transform:
    translateY(-2px);

  background:
    rgba(255,104,0,0.18);

  border-color:
    var(--pg-orange);

  box-shadow:
    0 5px 18px rgba(0,0,0,0.25);

}


/* ACTIVO — ARGENTINA */

.pg-tabs .activo {

  color: #111;

  background:
    linear-gradient(
      180deg,
      #74ACDF 0%,
      #FFFFFF 50%,
      #74ACDF 100%
    );

  border-color: transparent;

  box-shadow:
    0 4px 18px rgba(116,172,223,0.30);

}


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

.pg-social {

  display: flex;

  align-items: center;

  gap: 8px;

  flex-shrink: 0;

}


.pg-social a {

  width: 35px;

  height: 35px;

  display: flex;

  transition:
    transform 0.2s ease;

}


.pg-social a:hover {

  transform:
    translateY(-3px)
    scale(1.08);

}


.pg-social img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 50%;

}


/* =========================================================
   CONTENEDOR GENERAL
========================================================= */

.page {

  width: min(1380px, 94%);

  margin: 26px auto 50px;

  background:
    rgba(245, 251, 245, 0.97);

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 20px 70px rgba(0,0,0,0.30);

}


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

.hero {

  position: relative;

  overflow: hidden;

  background:

    radial-gradient(
      circle at 80% 20%,
      rgba(116,172,223,0.25),
      transparent 35%
    ),

    linear-gradient(
      135deg,
      #080c10 0%,
      #10191b 55%,
      #123b5b 100%
    );

  color: white;

}


.hero::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 5px;

  background:
    linear-gradient(
      90deg,
      #74ACDF,
      #FFFFFF,
      #74ACDF
    );

}


.hero-inner {

  width: min(1180px, 90%);

  min-height: 390px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  align-items: center;

  gap: 70px;

  padding: 65px 0;

}


.eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 2px;

  color:
    var(--pg-blue);

  margin-bottom: 16px;

}


.hero h1 {

  margin: 0;

  font-size:
    clamp(48px, 7vw, 88px);

  line-height: 0.92;

  letter-spacing: -3px;

  text-transform: uppercase;

}


.hero h1 strong {

  display: block;

  color:
    var(--pg-blue);

}


.hero-copy p {

  max-width: 650px;

  margin: 28px 0 0;

  color:
    #cbd5d8;

  font-size: 18px;

  line-height: 1.7;

}


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

.hero-visual {

  display: flex;

  justify-content: center;

}


.hero-image {

  position: relative;

  width: min(390px, 100%);

  aspect-ratio: 1 / 1;

  padding: 20px;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.2);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.4);

}


.hero-image img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  border-radius: 50%;

}


.hero-image span {

  position: absolute;

  right: -15px;

  bottom: 30px;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    var(--pg-blue);

  color: #111;

  font-weight: 900;

  font-size: 13px;

  letter-spacing: 1px;

}


/* =========================================================
   SECCIONES
========================================================= */

.intro-section,
.communities-section {

  width: min(1180px, 90%);

  margin: auto;

  padding: 75px 0;

}


.section-heading {

  max-width: 760px;

  margin: 0 auto 45px;

  text-align: center;

}


.eyebrow.dark {

  color:
    #315d7e;

}


.section-heading h2 {

  width: auto;

  margin: 0;

  font-size:
    clamp(32px, 5vw, 52px);

  line-height: 1.05;

  letter-spacing: -1px;

  text-decoration: none;

}


.section-heading h2 strong {

  color:
    var(--pg-blue-dark);

}


.section-heading p {

  margin: 18px auto 0;

  max-width: 650px;

  color:
    var(--pg-gray);

  font-size: 17px;

  line-height: 1.7;

}


/* =========================================================
   TARJETAS INFO
========================================================= */

.info-cards {

  display: grid;

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

  gap: 25px;

}


.info-card {

  display: grid;

  grid-template-columns: 190px 1fr;

  min-height: 190px;

  overflow: hidden;

  background: white;

  border-radius: var(--pg-radius);

  border:
    1px solid #e1e7e1;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.07);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

}


.info-card:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.13);

}


.info-card-image {

  background:
    #f3f3f3;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 20px;

}


.info-card-image img {

  max-width: 100%;

  max-height: 145px;

  object-fit: contain;

}


.info-card-image.shield img {

  max-height: 160px;

}


.info-card-content {

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}


.info-card-content span {

  color:
    var(--pg-blue-dark);

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 1.5px;

}


.info-card-content h3 {

  margin: 7px 0;

  font-size: 27px;

}


.info-card-content p {

  margin: 0;

  color:
    var(--pg-gray);

  line-height: 1.5;

}


/* =========================================================
   PROVINCIAS
========================================================= */

.communities-section {

  padding-top: 30px;

}


.communities-grid {

  display: grid;

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

  gap: 18px;

}


.community-card {

  position: relative;

  min-height: 205px;

  padding: 18px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background:
    rgba(255,255,255,0.92);

  border:
    1px solid #dfe5df;

  border-radius:
    16px;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;

}


.community-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 4px;

  background:
    var(--pg-blue);

  transform:
    scaleX(0);

  transform-origin:
    center;

  transition:
    transform 0.25s ease;

}


.community-card:hover {

  transform:
    translateY(-7px);

  border-color:
    rgba(116,172,223,0.7);

  box-shadow:
    0 18px 35px rgba(0,0,0,0.13);

}


.community-card:hover::before {

  transform:
    scaleX(1);

}


.community-card img {

  width: 88%;

  max-height: 125px;

  object-fit: contain;

  display: block;

  transition:
    transform 0.3s ease;

}


.community-card:hover img {

  transform:
    scale(1.06);

}


.community-name {

  margin-top: 14px;

  text-align: center;

  font-size: 15px;

  font-weight: 800;

  color:
    #20252a;

}


/* CABA DESTACADA */

.community-card.featured {

  border:
    2px solid var(--pg-blue);

  box-shadow:
    0 10px 28px rgba(116,172,223,0.20);

}


.community-card.featured::after {

  content:
    "CAPITAL";

  position: absolute;

  top: 12px;

  right: 12px;

  padding: 4px 8px;

  border-radius: 999px;

  background:
    var(--pg-blue);

  color: #111;

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.5px;

}


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

.pg-footer {

  background:
    #080b0e;

  color:
    #d8dee2;

}


.footer-inner {

  width: min(1180px, 90%);

  min-height: 85px;

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  font-size: 12px;

}


.footer-inner > div {

  display: flex;

  flex-direction: column;

  gap: 4px;

}


.footer-inner strong {

  color:
    white;

  font-size: 15px;

}


.footer-inner span {

  color:
    var(--pg-blue);

  font-size: 10px;

  letter-spacing: 1px;

  text-transform: uppercase;

}


.footer-inner a {

  color:
    var(--pg-blue);

}


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

@media (max-width: 1100px) {

  .pg-header__container {

    flex-wrap: wrap;

    justify-content: center;

    padding: 12px 0;

  }

  .pg-brand {

    width: 100%;

    justify-content: center;

  }

  .giratoria {

    display: none;

  }

  .pg-tabs {

    flex: none;

  }

  .communities-grid {

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

  }

}


@media (max-width: 800px) {

  .hero-inner {

    grid-template-columns:
      1fr;

    text-align: center;

    gap: 40px;

  }

  .hero-copy p {

    margin-left: auto;
    margin-right: auto;

  }

  .hero-visual {

    order: -1;

  }

  .hero-image {

    width: 260px;

  }

  .info-cards {

    grid-template-columns:
      1fr;

  }

  .communities-grid {

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

  }

  .footer-inner {

    padding: 25px 0;

    flex-direction: column;

    text-align: center;

  }

}


@media (max-width: 560px) {

  .pg-header__container {

    width: 96%;

  }

  .pg-brand img {

    height: 50px;

  }

  .pg-tabs {

    gap: 4px;

  }

  .newmenuboton1,
  .newmenuboton2 {

    padding:
      7px 9px;

    font-size: 10px;

  }

  .pg-social a {

    width: 30px;
    height: 30px;

  }

  .page {

    width: 96%;

    margin-top: 10px;

    border-radius: 18px;

  }

  .hero-inner {

    width: 88%;

    padding: 45px 0;

  }

  .hero h1 {

    font-size: 52px;

  }

  .hero-copy p {

    font-size: 15px;

  }

  .intro-section,
  .communities-section {

    width: 88%;

    padding:
      55px 0;

  }

  .communities-grid {

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

    gap: 10px;

  }

  .community-card {

    min-height: 155px;

    padding: 10px;

  }

  .community-card img {

    max-height: 90px;

  }

  .community-name {

    font-size: 12px;

  }

  .info-card {

    grid-template-columns:
      1fr;

  }

  .info-card-image {

    min-height: 170px;

  }

}

/* =========================================================
   SELECTOR DE IDIOMA PERSONALIZADO · PASE GOL
   Google Translate funciona por detrás y su interfaz original
   permanece completamente oculta.
========================================================= */

.google-translate-hidden,
#google_translate_element{

  position:absolute !important;

  width:1px !important;
  height:1px !important;

  overflow:hidden !important;

  opacity:0 !important;

  pointer-events:none !important;

  left:-9999px !important;
  top:-9999px !important;

  margin:0 !important;
  padding:0 !important;

}


#google_translate_element .goog-te-gadget,
#google_translate_element .goog-te-combo,
#google_translate_element img,
#google_translate_element span{

  display:none !important;

}


.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-logo-link,
.goog-te-gadget-icon{

  display:none !important;

}


body{

  top:0 !important;

}


/* CONTENEDOR DEL SELECTOR */

.pg-social .language-selector-custom{

  position:relative !important;

  width:78px !important;
  height:35px !important;

  display:flex !important;

  align-items:center !important;
  justify-content:center !important;

  flex:0 0 78px !important;

  z-index:1000 !important;

}


/* BOTÓN PRINCIPAL */

.pg-social .language-button{

  width:78px !important;
  height:35px !important;

  display:flex !important;

  align-items:center !important;
  justify-content:center !important;

  gap:5px !important;

  padding:0 9px !important;
  margin:0 !important;

  border:1px solid rgba(255,255,255,.18) !important;

  border-radius:999px !important;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.09),
      rgba(255,255,255,.035)
    ) !important;

  color:#ffffff !important;

  font-family:inherit !important;
  font-size:12px !important;
  font-weight:700 !important;

  line-height:1 !important;

  cursor:pointer !important;

  outline:none !important;

  box-shadow:
    0 6px 20px rgba(0,0,0,.18) !important;

  box-sizing:border-box !important;

  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease !important;

}


.pg-social .language-button:hover{

  transform:translateY(-1px) !important;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.06)
    ) !important;

  border-color:var(--pg-blue-light) !important;

}


.pg-social .language-button:focus{

  border-color:var(--pg-blue-light) !important;

  box-shadow:
    0 0 0 3px rgba(66,165,245,.14),
    0 8px 25px rgba(0,0,0,.20) !important;

}


/* MUNDO */

.pg-social .language-world{

  display:inline-flex !important;

  align-items:center !important;
  justify-content:center !important;

  font-size:16px !important;
  line-height:1 !important;

}


/* IDIOMA ACTUAL */

.pg-social .language-current{

  color:#ffffff !important;

  font-size:12px !important;
  font-weight:800 !important;

}


/* FLECHA */

.pg-social .language-arrow{

  color:var(--pg-blue-light) !important;

  font-size:11px !important;
  line-height:1 !important;

}


/* MENÚ DESPLEGABLE */

.pg-social .language-menu{

  position:absolute !important;

  top:calc(100% + 9px) !important;
  right:0 !important;

  width:190px !important;

  padding:7px !important;

  display:none !important;

  flex-direction:column !important;

  gap:2px !important;

  background:#101827 !important;

  border:1px solid rgba(255,255,255,.16) !important;

  border-radius:14px !important;

  box-shadow:
    0 18px 45px rgba(0,0,0,.45) !important;

  z-index:99999 !important;

  box-sizing:border-box !important;

}


.pg-social .language-menu.open{

  display:flex !important;

}


/* OPCIONES */

.pg-social .language-menu button{

  width:100% !important;

  min-height:38px !important;
  height:38px !important;

  display:flex !important;

  align-items:center !important;

  padding:0 11px !important;
  margin:0 !important;

  border:0 !important;

  border-radius:8px !important;

  background:transparent !important;

  color:#ffffff !important;

  font-family:inherit !important;
  font-size:13px !important;
  font-weight:600 !important;

  line-height:1.2 !important;

  text-align:left !important;

  cursor:pointer !important;

  box-sizing:border-box !important;

  transition:
    background .18s ease,
    color .18s ease !important;

}


.pg-social .language-menu button:hover{

  background:rgba(66,165,245,.14) !important;

  color:var(--pg-blue-light) !important;

}


/* AJUSTE DE LAS REDES PARA EL NUEVO SELECTOR */

.pg-social{

  flex-wrap:nowrap;

}


/* MÓVIL */

@media (max-width:560px){

  .pg-social{

    width:100%;

    justify-content:center;

    flex-wrap:wrap;

  }


  .pg-social .language-selector-custom{

    width:42px !important;
    height:30px !important;

    flex-basis:42px !important;

  }


  .pg-social .language-button{

    width:42px !important;
    height:30px !important;

    padding:0 !important;

    gap:0 !important;

  }


  .pg-social .language-current,
  .pg-social .language-arrow{

    display:none !important;

  }


  .pg-social .language-world{

    font-size:17px !important;

  }


  .pg-social .language-menu{

    top:calc(100% + 8px) !important;

    right:0 !important;

  }

}
