:root {
    --bg:#080807;
    --bg2:#11100e;
    --panel:#15130f;
    --panel2:#1b1711;
    --text:#f4eddf;
    --muted:#b7ad9c;
    --muted2:#82796b;
    --line:rgba(244,237,223,.14);
    --gold:#c5a25b;
    --gold2:#e0bf70;
    --black:#050505;
    --max:1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior:smooth; }

body {
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:
      radial-gradient(circle at 20% 0%, rgba(197,162,91,.12), transparent 30%),
      linear-gradient(180deg,var(--bg),var(--bg2));
    color:var(--text);
}

a { color:inherit; text-decoration:none; }

.wrap {
    width:min(var(--max), calc(100vw - 64px));
    margin:0 auto;
    padding:42px 0 72px;
}

.hero {
    padding:54px 0 34px;
    border-bottom:1px solid rgba(244,237,223,.08);
    margin-bottom:34px;
}

.eyebrow {
    margin:0 0 12px;
    color:var(--gold2);
    font-size:12px;
    font-weight:850;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.hero h1 {
    margin:0;
    max-width:820px;
    font-size:clamp(44px,6vw,82px);
    line-height:.92;
    letter-spacing:-.075em;
}

.hero p {
    max-width:760px;
    margin:24px 0 0;
    color:var(--muted);
    font-size:19px;
    line-height:1.48;
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:18px;
}

.card {
    background:
      linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012)),
      var(--panel);
    border:1px solid rgba(244,237,223,.07);
    overflow:hidden;
    text-decoration:none;
    box-shadow:none;
    transition:transform .14s ease, border-color .14s ease, background .14s ease;
}

.card:hover {
    transform:translateY(-2px);
    border-color:rgba(224,191,112,.28);
    background:
      linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.016)),
      var(--panel);
}

.thumb {
    width:100%;
    aspect-ratio:4 / 3;
    background:var(--panel2);
    overflow:hidden;
}

.thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* GT_CATALOG_PUBLIC_GALLERY_20260525_START */
.item-gallery {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.item-main-image {
    width:100%;
    display:block;
    border-radius:26px;
    border:1px solid rgba(244,237,223,.08);
}

.item-thumbs {
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:2px 2px 6px;
}

.gallery-thumb {
    width:82px;
    min-width:82px;
    aspect-ratio:4 / 3;
    padding:0;
    border-radius:14px;
    border:1px solid rgba(244,237,223,.24);
    background:rgba(244,237,223,.045);
    overflow:hidden;
    cursor:pointer;
    opacity:.92;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,.24);
    outline:none;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
    opacity:1;
    border-color:rgba(244,237,223,.34);
    background:rgba(244,237,223,.065);
}

.gallery-thumb:focus,
.gallery-thumb:focus-visible,
.gallery-thumb:active {
    outline:none;
    border-color:rgba(244,237,223,.34);
    box-shadow:inset 0 0 0 1px rgba(0,0,0,.24);
}

.gallery-thumb img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    pointer-events:none;
}

/* GT_CATALOG_PUBLIC_GALLERY_20260525_END */
.card-body {
    padding:16px;
}

.card h2 {
    font-size:21px;
    margin:0 0 8px;
    line-height:1.08;
    letter-spacing:-.035em;
    color:var(--text);
}

.desc {
    color:var(--muted);
    font-size:14px;
    line-height:1.42;
    min-height:40px;
}

.price {
    margin-top:13px;
    font-weight:850;
    color:var(--gold2);
}

.price-note {
    display:block;
    margin-top:3px;
    color:rgba(244,237,223,.38);
    font-size:9.5px;
    line-height:1.18;
    font-weight:400;
    letter-spacing:0;
    max-width:250px;
}

.legal-note {
    display:block;
    margin-top:8px;
    max-width:960px;
    color:var(--muted2);
    font-size:12px;
    line-height:1.45;
}

.detail {
    display:grid;
    grid-template-columns:minmax(280px,1.05fr) minmax(280px,.95fr);
    gap:28px;
    align-items:start;
    margin-top:32px;
}

.photo-main {
    background:var(--panel);
    border:1px solid rgba(244,237,223,.07);
    overflow:hidden;
}

.photo-main img {
    width:100%;
    display:block;
}

.panel {
    background:
      linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.012)),
      var(--panel);
    border:1px solid rgba(244,237,223,.07);
    padding:28px;
}

.panel h1 {
    margin:0 0 18px;
    font-size:clamp(34px,4.6vw,58px);
    line-height:.95;
    letter-spacing:-.06em;
}

.panel .desc {
    min-height:0;
    font-size:17px;
}

.specs {
    margin-top:20px;
    display:grid;
    gap:8px;
}

.spec {
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding-top:8px;
    border-top:1px solid rgba(244,237,223,.08);
}

.spec span {
    color:var(--muted2);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.spec strong {
    color:var(--text);
}

.btns {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:24px;
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    background:var(--gold);
    color:#090806;
    text-decoration:none;
    font-weight:850;
    font-size:13px;
    border:1px solid var(--gold);
}

.btn.secondary {
    background:rgba(5,5,5,.52);
    color:var(--text);
    border:1px solid rgba(244,237,223,.18);
}

@media(max-width:980px) {
.detail{ grid-template-columns:1fr; }
}

@media(max-width:620px) {
.hero h1{ font-size:44px; }
}

/* GTAMPS_EXACT_LANDING_CHROME_BEGIN */
:root{
  --bg:#080807;
  --bg2:#11100e;
  --panel:#15130f;
  --panel2:#1b1711;
  --text:#f4eddf;
  --muted:#b7ad9c;
  --muted2:#82796b;
  --line:rgba(244,237,223,.14);
  --gold:#c5a25b;
  --gold2:#e0bf70;
  --black:#050505;
  --max:1180px;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 20% 0%, rgba(197,162,91,.15), transparent 30%),
    linear-gradient(180deg,#11100e 0%,#080807 42%,#060606 100%);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:-.015em;
  overflow-x:hidden;
}

/* HEADER */

.site-header{
  position:relative;
  z-index:5;
  height:112px;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(244,237,223,.08);
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(12px);
}

.header-inner{
  width:min(var(--max), calc(100vw - 64px));
  margin:0 auto;
  padding-left:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}

.brand{
  display:flex;
  align-items:center;
  min-width:180px;
}

.brand img{
  display:block;
  height:74px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:30px;
  color:var(--muted);
  font-size:13px;
  font-weight:750;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.nav a{
  transition:color .18s ease;
}

.nav a:hover{
  color:var(--gold2);
}

/* FOOTER */

footer{
  border-top:1px solid var(--line);
  color:var(--muted2);
  padding:34px 0 46px;
}

@media(max-width:620px) {
.wrap,
  .header-inner,
  .hero-inner{
    width:calc(100vw - 32px);
  }

.header-inner{
    padding-left:10px;
  }

.site-header{
    height:92px;
  }

.brand img{
    height:62px;
  }
}

/* GT_SOFT_BLOCKS_V3_END */
/* GT_BRAND_GT_DOT_START */
/* Logo + GT • AMPLIFICATION */

.header-inner{
  padding-left:26px !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
  gap:17px !important;
  min-width:auto !important;
}

.brand img{
  height:62px !important;
  width:auto !important;
  max-width:96px !important;
  object-fit:contain !important;
}

.brand-text{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  line-height:1 !important;
  white-space:nowrap !important;
  transform:translateY(1px);
}

.brand-name{
  color:var(--text) !important;
  font-size:13px !important;
  font-weight:850 !important;
  letter-spacing:.36em !important;
  text-transform:uppercase !important;
}

.brand-dot{
  color:var(--gold2) !important;
  display:inline-block !important;
  margin:0 .26em !important;
  letter-spacing:0 !important;
  transform:translateY(-.04em);
}

@media(max-width:980px) {
.header-inner{
    padding-left:16px !important;
  }

.brand{
    gap:13px !important;
  }

.brand img{
    height:54px !important;
    max-width:84px !important;
  }

.brand-name{
    font-size:11.5px !important;
    letter-spacing:.30em !important;
  }

.brand-dot{
    margin:0 .22em !important;
  }
}

@media(max-width:620px) {
.header-inner{
    padding-left:10px !important;
  }

.brand{
    gap:10px !important;
  }

.brand img{
    height:48px !important;
    max-width:74px !important;
  }

.brand-name{
    font-size:10px !important;
    letter-spacing:.22em !important;
  }

.brand-dot{
    margin:0 .18em !important;
  }
}

/* GT_BRAND_GT_DOT_END */


/* GT_BRAND_FONT_WEIGHT_LIGHTER_START */
/* GT • AMPLIFICATION menos pesado */

.brand-name{
  font-weight:600 !important;
  letter-spacing:.40em !important;
  font-size:13px !important;
}

.brand-dot{
  font-weight:600 !important;
}

@media(max-width:980px) {
.brand-name{
    font-weight:600 !important;
    letter-spacing:.33em !important;
    font-size:11.5px !important;
  }
}

@media(max-width:620px) {
.brand-name{
    font-weight:600 !important;
    letter-spacing:.24em !important;
    font-size:10px !important;
  }
}

/* GT_BRAND_FONT_WEIGHT_LIGHTER_END */


/* GT_BRAND_GAP_LOGO_TEXT_START */
/* Más aire entre logo y GT • AMPLIFICATION */

.brand{
  gap:26px !important;
}

@media(max-width:980px) {
.brand{
    gap:20px !important;
  }
}

@media(max-width:620px) {
.brand{
    gap:14px !important;
  }
}

/* GT_BRAND_GAP_LOGO_TEXT_END */
/* GT_HERO_CAROUSEL_TEXT_PHOTO_START */
/* Carrusel hero: sin bloque contenedor grande, solo texto con placa */

.hero-carousel{
  justify-self:end;
  width:min(640px,100%);
  align-self:center;
  position:relative;
}

/* GT_HERO_DOTS_CLEAN_20260521_END */










/* GT_HEADER_WORDMARK_15PX_20260522_START */

/*
  Ajuste fino header:
  - El logo queda estable.
  - El wordmark GT • AMPLIFICATION se separa aprox. 15px hacia la derecha.
  - Se aumenta el interletrado.
*/

/* Reset de transformaciones previas sobre logo */
header .brand img,
header a.brand img,
header .brand-link img,
header .brand-wrap img,
.site-header .brand img,
.topbar .brand img {
  transform: none !important;
}

/* Mover sólo el texto / wordmark */
header .brand span,
header a.brand span,
header .brand strong,
header a.brand strong,
header .brand b,
header a.brand b,
header .wordmark,
header .brand-wordmark,
header .brand-title,
header .site-title,
header .brand-main {
  display: inline-block;
  margin-left: 15px;
  letter-spacing: 0.24em;
}

/* Si el punto separador viene como elemento separado, que respire sin desarmar */
header .brand b,
header a.brand b,
header .wordmark b,
header .brand-wordmark b {
  margin-left: .22em;
  margin-right: .22em;
}

/* GT_HEADER_WORDMARK_15PX_20260522_END */



/* GT_HOME_LAYOUT_BASE_20260522_START */

/* Layout general: compacto sin perder aire */
@media (min-width: 761px) {
  #taller,
  #construccion,
  #componentes,
  #trabajo-banco,
  #pool,
  #contacto {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  #taller + #construccion,
  #construccion + #componentes,
  #componentes + #trabajo-banco,
  #trabajo-banco + #pool,
  #pool + #contacto {
    padding-top: 28px;
  }

  #contacto {
    padding-bottom: 38px;
  }
}

/* Footer dentro del mismo container */
footer {
  padding: 26px 0 36px;
}

footer .footer-inner {
  text-align: left;
}

footer .footer-inner p {
  margin: 0;
}

footer .footer-inner p + p {
  margin-top: .45rem;
}

footer .footer-inner a {
  color: inherit;
  text-decoration: none;
}

footer .footer-inner a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
footer {
    padding: 26px 0 32px;
  }

footer .footer-inner p + p {
    margin-top: .5rem;
  }
}

/* GT_HERO_LEAD_SOURCE_20260522_END */



/* GT_VISUAL_FINAL_V1_20260522_START */

/*
  GT AMPS landing V1 — ajuste visual final
  Alcance:
  - No toca copy.
  - No toca hero.
  - No toca catálogo dinámico.
  - Reemplaza el bloque visual final existente, no suma otra capa nueva.
*/

/* Ritmo entre Taller y bloque compacto */
#taller {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(20px, 2.6vw, 34px);
}

/* Footer dentro del mismo margen y con menos aire muerto */
footer {
  padding-top: clamp(22px, 2.6vw, 32px);
  padding-bottom: clamp(26px, 3.2vw, 40px);
}

footer .footer-inner {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

#contacto + footer {
  margin-top: 0;
}

/* GT_CONTACTO_SPACING_POOL_20260522_END */


/* GT_VERTICAL_POOL_CONTACT_20260522_START */
/*
  Ritmo vertical Pool / Contacto / Footer:
  - menos pozo negro entre Pool y Contacto
  - Contacto menos alto
  - footer un poco más cerca
*/

/* Pool baja un poco menos aire abajo */
#pool {
  padding-bottom: clamp(22px, 2.8vw, 36px) !important;
}

/* Menos caída hacia el footer */
#contacto.gt-contact-reset {
  padding-bottom: clamp(26px, 3vw, 40px) !important;
}

#contacto + footer {
  margin-top: 0 !important;
}

footer {
  padding-top: clamp(24px, 2.8vw, 34px) !important;
}

/* GT_VERTICAL_POOL_CONTACT_20260522_END */


/* GT_FOOTER_DOS_LINEAS_20260522_START */
footer .footer-inner {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

footer .footer-inner p + p {
  margin-top: .42rem;
}

/* GT_FOOTER_DOS_LINEAS_20260522_END */











/* GT_HERO_CAROUSEL_BANDA_ANCHA_20260522_START */
/*
  Carrusel como banda visual ancha:
  - visible
  - sin textos
  - imagen ocupa todo el ancho útil del sitio
  - queda debajo del texto del hero, antes de Taller
*/

.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  min-height: min(760px, calc(100vh - 112px)) !important;
  padding-top: clamp(58px, 7vh, 84px) !important;
  padding-bottom: clamp(58px, 7vh, 84px) !important;
}

/* GT_POOL_UPDATED_BADGE_INJECTED_20260525_END */





/* GT_SOCIAL_FOOTER_CSS_20260523_START */
.gt-social-footer {
  margin: .55rem 0 0;
  font-size: .92rem;
  opacity: .62;
}

.gt-social-footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(204, 160, 84, .25);
}

.gt-social-footer a:hover,
.gt-social-footer a:focus-visible {
  opacity: 1;
  border-bottom-color: rgba(204, 160, 84, .72);
}

.gt-social-footer span {
  opacity: .45;
  margin: 0 .18rem;
}
/* GTAMPS_EXACT_LANDING_CHROME_END */
