/* ========================================
   GON POWER - Design System
   Paleta: Colectivo MX
   ======================================== */

/* === VARIABLES === */
:root {
  --gon-green: #8eff00;
  --gon-green-dark: #6fcc00;
  --gon-magenta: #bf22f6;
  --gon-dark: #1d2331;
  --gon-dark-alt: #161c28;
  --gon-light: #f5f6fb;
  --gon-gray: #c7c7c7;
  --gon-white: #ffffff;
  --gon-green-10: rgba(142, 255, 0, 0.1);
  --gon-green-20: rgba(142, 255, 0, 0.2);
  --gon-magenta-20: rgba(191, 34, 246, 0.2);
  --gon-shadow: 0 4px 24px rgba(0,0,0,0.12);
  --gon-radius: 12px;
  --gon-radius-lg: 20px;
  --gon-transition: 0.3s ease;
}

/* === TIPOGRAFIA === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body.gon-page {
  font-family: 'Inter', sans-serif;
  color: var(--gon-dark);
  overflow-x: hidden;
}

/* === BOTONES === */
.btn-gon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--gon-transition);
  text-decoration: none;
}

.btn-gon-primary {
  background: var(--gon-green);
  color: var(--gon-dark);
}

.btn-gon-primary:hover {
  background: var(--gon-green-dark);
  color: var(--gon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 255, 0, 0.35);
}

.btn-gon-outline {
  background: transparent;
  color: var(--gon-white);
  border: 2px solid var(--gon-green);
}

.btn-gon-outline:hover {
  background: var(--gon-green);
  color: var(--gon-dark);
}

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

.btn-gon-magenta:hover {
  background: #a01dd4;
  color: var(--gon-white);
  transform: translateY(-2px);
}

/* === HEADER === */
.gon-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.gon-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gon-header .gon-logo img {
  width: 278px;
  height: 103px;
}

.gon-header .gon-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gon-header .gon-nav a {
  color: var(--gon-white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--gon-transition);
  letter-spacing: 0.3px;
}

.gon-header .gon-nav a:hover,
.gon-header .gon-nav a.active {
  color: var(--gon-green);
}

.gon-header .header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gon-header .header-phone {
  color: var(--gon-white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}

.gon-header .header-phone small {
  font-size: 11px;
  color: var(--gon-green);
  font-weight: 400;
}

.gon-header .header-phone span {
  font-size: 15px;
  font-weight: 700;
}

.gon-header .header-phone:hover {
  color: var(--gon-green);
}

.gon-header .gon-nav a i.fa-chevron-down {
  font-size: 8px;
  margin-left: 2px;
  vertical-align: middle;
}

.gon-header .btn-cotizar {
  background: var(--gon-green);
  color: var(--gon-dark);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--gon-transition);
}

.gon-header .btn-cotizar:hover {
  background: var(--gon-green-dark);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.gon-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.gon-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gon-white);
  margin: 5px 0;
  transition: var(--gon-transition);
}

@media (max-width: 991px) {
  .gon-menu-toggle { display: block; }

  .gon-header .gon-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--gon-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .gon-header .gon-nav.open { display: flex; }

  .gon-header .header-phone { display: none; }
}

/* === HERO (Home) === */
.gon-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gon-dark);
}

.gon-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top right;
  z-index: 1;
}

.gon-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29,35,49,0.92) 0%, rgba(29,35,49,0.6) 50%, rgba(29,35,49,0.2) 100%);
  z-index: 2;
}

.gon-hero .hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
}

.gon-hero .hero-text-wrap {
  max-width: 600px;
}

@media (min-width: 1200px) {
  .gon-hero .hero-text-wrap {
    margin-left: 80px;
  }
}

.gon-hero .social-sidebar {
  position: absolute;
  left: calc((100% - 1140px) / 2);
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

@media (min-width: 1200px) {
  .gon-hero .social-sidebar { display: flex; }
}

.gon-hero .social-sidebar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gon-green);
  color: var(--gon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--gon-transition);
  text-decoration: none;
}

.gon-hero .social-sidebar a:hover {
  background: var(--gon-magenta);
  color: var(--gon-white);
  transform: scale(1.1);
}

.gon-hero .hero-subtitle {
  color: var(--gon-white);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gon-hero .hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gon-magenta), var(--gon-green));
}

.gon-hero h1 {
  color: var(--gon-white);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .gon-hero h1 { font-size: 48px; }
}

@media (max-width: 575px) {
  .gon-hero h1 { font-size: 36px; }
}

/* === BANNER DE PAGINA (Contacto, Quiénes Somos, Servicios) === */
.gon-banner {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gon-dark);
}

.gon-banner .banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  z-index: 1;
}

.gon-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,35,49,0.5) 0%, rgba(29,35,49,0.7) 100%);
  z-index: 2;
}

.gon-banner h1 {
  position: relative;
  z-index: 10;
  color: var(--gon-white);
  font-size: 52px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  max-width: 75%;
  margin: 0 auto;
  padding: 0 24px;
}

.gon-banner .banner-subtitle {
  position: relative;
  z-index: 10;
  color: var(--gon-white);
  font-size: 18px;
  text-align: center;
  max-width: 600px;
  margin: 16px auto 0;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .gon-banner { height: 400px; }
  .gon-banner h1 { font-size: 42px; max-width: 560px; }
}

@media (max-width: 767px) {
  .gon-banner { height: 320px; }
  .gon-banner h1 { font-size: 32px; max-width: 100%; }
}

/* === SECCION GENERICA === */
.gon-section {
  padding: 80px 0;
}

.gon-section-dark {
  background: var(--gon-dark);
  color: var(--gon-white);
}

.gon-section-light {
  background: var(--gon-light);
}

.gon-section-label {
  color: #555;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gon-section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gon-magenta);
}

.gon-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
  color: var(--gon-dark);
}

@media (max-width: 767px) {
  .gon-section { padding: 56px 0; }
  .gon-section-title { font-size: 28px; margin-bottom: 32px; }
}

/* === SERVICIOS CARDS (Home) === */
.gon-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gon-service-card {
  background: var(--gon-white);
  border-radius: var(--gon-radius);
  overflow: hidden;
  box-shadow: var(--gon-shadow);
  transition: transform var(--gon-transition);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.gon-service-card:hover {
  transform: translateY(-4px);
}

.gon-service-card .card-img {
  width: 88px;
  height: 88px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.gon-service-card .card-body {
  padding: 0;
}

.gon-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.gon-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.gon-service-card .card-link {
  color: var(--gon-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--gon-transition);
}

.gon-service-card .card-link:hover {
  color: var(--gon-green-dark);
}

@media (max-width: 991px) {
  .gon-services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* === INFRAESTRUCTURA INTELIGENTE === */
.gon-infra {
  padding: 80px 0;
  background: var(--gon-white);
}

.gon-infra-content {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1.2fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.gon-infra-content > div:first-child,
.gon-infra-content > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gon-infra-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gon-infra-center img {
  max-width: 100%;
  height: auto;
}

.gon-section-label--green::before {
  background: var(--gon-green);
}

.gon-infra-feature {
  text-align: center;
}

.gon-infra-feature .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gon-green);
  color: var(--gon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 14px;
}

.gon-infra-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gon-infra-feature p {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .gon-infra-content {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .gon-infra-center { order: -1; margin-bottom: 32px; }
}

/* === QUIENES SOMOS - Collage === */
.gon-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gon-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--gon-radius);
}

.gon-about-text .label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gon-about-text .label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gon-green);
  flex-shrink: 0;
}

.gon-about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gon-dark);
}

.gon-about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.gon-about-logos {
  margin-top: 24px;
}

.gon-about-logos img {
  max-width: 240px;
  height: auto;
}

@media (max-width: 991px) {
  .gon-about-grid { grid-template-columns: 1fr; }
}

/* === QUIENES SOMOS - Misión banner === */
.gon-mission-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.gon-mission-banner .mission-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.gon-mission-banner .mission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29,35,49,0.75);
  z-index: 2;
}

.gon-mission-banner .mission-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gon-mission-banner .label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gon-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gon-mission-banner .label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gon-green);
  flex-shrink: 0;
}

.gon-mission-banner h2 {
  color: var(--gon-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
}

.gon-mission-banner .btn-gon {
  border-radius: 8px;
}

/* === QUIENES SOMOS - Mapa mundial === */
.gon-world-map {
  padding: 80px 0;
  background: var(--gon-white);
}

.gon-world-map .map-content {
  text-align: center;
  width: 115%;
  margin-left: -7.5%;
}

.gon-world-map .map-content img {
  width: 100%;
  height: auto;
}

/* === SERVICIOS - Lista numerada === */
.gon-servicios-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gon-servicios-detail .detail-image {
  position: relative;
}

.gon-servicios-detail .detail-image img {
  width: 100%;
  border-radius: var(--gon-radius-lg);
  object-fit: cover;
}

.gon-servicios-detail .detail-text .label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gon-servicios-detail .detail-text .label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gon-green);
  flex-shrink: 0;
}

.gon-servicios-detail .detail-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--gon-dark);
}

.gon-servicios-detail .detail-text > p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.gon-servicios-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gon-servicios-list li {
  padding: 18px 24px;
  background: var(--gon-light);
  border-radius: var(--gon-radius);
  font-size: 16px;
  font-weight: 600;
  color: var(--gon-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.gon-servicios-list li .num {
  color: var(--gon-dark);
  font-weight: 700;
}

.gon-servicios-list li i {
  margin-left: auto;
  color: var(--gon-dark);
  font-size: 14px;
}

@media (max-width: 991px) {
  .gon-servicios-detail { grid-template-columns: 1fr; }
}

/* === SERVICIOS - Acordeón === */
.gon-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gon-accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: var(--gon-light);
  border: none;
  border-radius: var(--gon-radius);
  font-size: 16px;
  font-weight: 600;
  color: var(--gon-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background var(--gon-transition);
  text-align: left;
  font-family: inherit;
}

.gon-accordion-header:hover {
  background: var(--gon-green);
}

.gon-accordion-header .num {
  font-weight: 700;
}

.gon-accordion-header i {
  margin-left: auto;
  font-size: 14px;
  transition: transform var(--gon-transition);
}

.gon-accordion-item.active .gon-accordion-header {
  background: var(--gon-green);
}

.gon-accordion-item.active .gon-accordion-header i {
  transform: rotate(180deg);
}

.gon-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.gon-accordion-item.active .gon-accordion-body {
  max-height: 300px;
  padding: 16px 24px;
}

.gon-accordion-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* === CONTACTO === */
.gon-contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.gon-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--gon-white);
  border-radius: var(--gon-radius);
  box-shadow: var(--gon-shadow);
}

.gon-contact-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gon-magenta);
  color: var(--gon-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.gon-contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gon-contact-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .gon-contact-info { grid-template-columns: 1fr; }
}

.gon-map {
  width: 100%;
  height: 400px;
  background: var(--gon-light);
  overflow: hidden;
}

.gon-map img,
.gon-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  filter: grayscale(100%);
}

.gon-contact-form {
  max-width: 800px;
  margin: 0 auto;
}

/* CF7: inputs y textarea */
.gon-contact-form .wpcf7-form input[type="text"],
.gon-contact-form .wpcf7-form input[type="email"],
.gon-contact-form .wpcf7-form input[type="tel"],
.gon-contact-form .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--gon-transition);
  background: var(--gon-white);
  color: var(--gon-dark);
}

.gon-contact-form .wpcf7-form input::placeholder,
.gon-contact-form .wpcf7-form textarea::placeholder {
  color: #999;
}

.gon-contact-form .wpcf7-form input:focus,
.gon-contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--gon-green);
}

.gon-contact-form .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* CF7: hacer que los wrappers sean block para que inputs ocupen 100% */
.gon-contact-form .wpcf7-form-control-wrap {
  display: block;
}

/* CF7: eliminar márgenes extras de los <p> que CF7 genera */
.gon-contact-form .wpcf7-form > p {
  margin-bottom: 16px;
}

/* CF7: row de Bootstrap dentro del form */
.gon-contact-form .wpcf7-form .row {
  margin-bottom: 16px;
}

.gon-contact-form .wpcf7-form .row [class*="col-"] .wpcf7-form-control-wrap {
  display: block;
}

/* CF7: botón enviar con estilo Gon */
.gon-contact-form .wpcf7-form input[type="submit"] {
  display: inline-block;
  background: var(--gon-green);
  color: var(--gon-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--gon-transition), transform var(--gon-transition);
  letter-spacing: 0.5px;
  width: auto;
}

.gon-contact-form .wpcf7-form input[type="submit"]:hover {
  background: var(--gon-green-dark);
  transform: translateY(-2px);
}

/* CF7: centrar botón */
.gon-contact-form .wpcf7-form p:last-of-type {
  text-align: center;
}

/* CF7: mensajes de respuesta */
.gon-contact-form .wpcf7-response-output {
  border-radius: 8px !important;
  text-align: center;
  font-size: 14px;
  margin: 16px 0 0 !important;
}

/* CF7: spinner de envío */
.gon-contact-form .wpcf7-spinner {
  margin: 10px auto 0;
  display: block;
}

/* CF7: validación inline */
.gon-contact-form .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

.gon-contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #e74c3c;
  margin-top: -12px;
  margin-bottom: 12px;
}

/* === FOOTER === */
.gon-footer {
  background: var(--gon-dark);
  color: var(--gon-white);
  padding: 60px 0 0;
}

.gon-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.gon-footer .footer-logo img {
  height: 64px;
  margin-bottom: 16px;
}

.gon-footer .footer-desc {
  font-size: 13px;
  color: var(--gon-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.gon-footer .footer-phone {
  color: var(--gon-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gon-footer .footer-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.gon-footer .footer-phone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gon-footer .footer-phone-text small {
  font-size: 12px;
  color: var(--gon-gray);
}

.gon-footer .footer-phone-text strong {
  font-size: 16px;
  font-weight: 700;
}

.gon-footer h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gon-white);
}

.gon-footer .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gon-footer .footer-nav li { margin-bottom: 10px; }

.gon-footer .footer-nav a {
  color: var(--gon-white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--gon-transition);
}

.gon-footer .footer-nav a:hover {
  color: var(--gon-green);
}

.gon-footer .footer-contact p {
  font-size: 14px;
  color: var(--gon-white);
  line-height: 1.6;
  margin-bottom: 12px;
}

.gon-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.gon-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--gon-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all var(--gon-transition);
}

.gon-footer .footer-social a:hover {
  background: var(--gon-green);
  color: var(--gon-dark);
  border-color: var(--gon-green);
}

.gon-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.gon-footer-bottom p {
  font-size: 12px;
  color: var(--gon-gray);
  margin: 0;
}

@media (max-width: 767px) {
  .gon-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === SCROLL TO TOP === */
.gon-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gon-green);
  color: var(--gon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(142,255,0,0.3);
  transition: all var(--gon-transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.gon-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.gon-scroll-top:hover {
  background: var(--gon-magenta);
  color: var(--gon-white);
  transform: translateY(-2px);
}

/* === OCULTAR ELEMENTOS ENERGOX BASE === */
.default-home-slider,
.banner-slider-consultint,
.preloader,
#rev_slider_1_1_wrapper,
.navbar-area:not(.gon-header),
.footer-area:not(.gon-footer),
.energox-slider,
.back-to-top:not(.gon-scroll-top) {
  display: none !important;
}

/* === UTILIDADES === */
.text-gon-green { color: var(--gon-green); }
.bg-gon-dark { background: var(--gon-dark); }
.bg-gon-light { background: var(--gon-light); }
