/* ============================================================
   ICG CONSTRUCTORA — Contacto
   Concept: "Gallery of Connection"
   Prefix: icg-ct-
   Design System: Slate, Carbon, Deep, Gold, Poppins
   ZERO border-radius. Architectural. Image-driven.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --slate:      #465666;
    --carbon:     #2C2C2C;
    --deep:       #1a1a1a;
    --gold:       #C89C53;
    --gold-hover: #b8893f;
    --gold-light: rgba(200, 156, 83, 0.12);
    --gold-glow:  rgba(200, 156, 83, 0.35);
    --light:      #E2E2E2;
    --warm-bg:    #F5F5F3;
    --white:      #FFFFFF;
    --font:       'Poppins', sans-serif;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-arch:   cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-weight: 300;
    color: var(--carbon);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.35s var(--ease-smooth);
}

ul, ol { list-style: none; }

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- SELECTION ---------- */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.icg-ct-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.1s var(--ease-expo),
                transform 1.1s var(--ease-expo);
}

.icg-ct-animate.icg-ct-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.icg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s var(--ease-smooth),
                padding 0.5s var(--ease-smooth),
                box-shadow 0.5s var(--ease-smooth);
}

.icg-navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding-top: 13px;
    padding-bottom: 13px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.icg-navbar__logo {
    width: 160px;
    flex-shrink: 0;
}

.icg-navbar__logo img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.icg-navbar__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icg-navbar__lang {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.35s var(--ease-smooth),
                color 0.35s var(--ease-smooth);
}

.icg-navbar__lang:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.icg-navbar__hamburger {
  width: 44px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.icg-navbar__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-mid) var(--ease-out-expo), opacity var(--t-mid) ease;
}

.icg-navbar__hamburger span:nth-child(3) {
  width: 70%;
  margin-left: auto;
  transition: transform var(--t-mid) var(--ease-out-expo), opacity var(--t-mid) ease, width var(--t-fast) ease;
}

.icg-navbar__hamburger:hover span:nth-child(3) {
  width: 100%;
}

.icg-navbar__hamburger.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.icg-navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.icg-navbar__hamburger.active span:nth-child(3) {
  width: 100%;
  transform: translateY(-12.5px) rotate(-45deg);
}

/* Mobile overlay */
.icg-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    transition: right 0.55s var(--ease-expo);
}

.icg-mobile-menu.open { right: 0; }

.icg-mobile-menu a {
    color: var(--white);
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    transition: color 0.35s var(--ease-smooth);
}

.icg-mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-expo),
                left 0.4s var(--ease-expo);
}

.icg-mobile-menu a:hover {
    color: var(--gold);
}

.icg-mobile-menu a:hover::after,
.icg-mobile-menu a.active::after {
    width: 100%;
    left: 0;
}

.icg-mobile-menu a.active {
    color: var(--gold);
}

.icg-mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: -14px;
}

.icg-mobile-submenu__link {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: rgba(200, 156, 83, 0.45);
    text-transform: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.icg-mobile-submenu__link .icg-mobile-submenu__icon {
    display: none;
}

.icg-mobile-submenu__link:hover {
    color: #C89C53;
}

/* ============================================================
   1. HERO SPLIT — 100vh, Two Halves
   ============================================================ */
.icg-ct-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.icg-ct-hero__bg {
    position: absolute;
    inset: -4%;
    background: url('../imagenes/icg/about-img.jpg') center center / cover no-repeat;
    z-index: 0;
    transform: scale(1.06);
    transition: transform 10s ease-out;
}

.icg-ct-hero:hover .icg-ct-hero__bg {
    transform: scale(1.11);
}

.icg-ct-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(26,26,26,0.82) 0%, rgba(44,44,44,0.55) 55%, rgba(70,86,102,0.20) 100%),
        linear-gradient(to top, rgba(26,26,26,0.90) 0%, transparent 60%);
    z-index: 1;
}

.icg-ct-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #C89C53 0%, rgba(200,156,83,0.3) 60%, transparent 100%);
}

.icg-ct-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 80px 64px;
    max-width: 680px;
}

.icg-ct-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
}

.icg-ct-hero__breadcrumb a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.icg-ct-hero__breadcrumb a:hover { color: #C89C53; }

.icg-ct-hero__breadcrumb-sep {
    color: #C89C53;
    font-weight: 300;
    opacity: 0.8;
}

.icg-ct-hero__title {
    font-family: var(--font);
    font-weight: 300;
    font-size: clamp(44px, 6vw, 80px);
    color: white;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1.0;
    margin: 0;
}

.icg-ct-hero__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: #C89C53;
    margin-top: 24px;
    opacity: 0.75;
}

/* ============================================================
   2. SECCIÓN PRINCIPAL — 3 Bloques Visuales
   ============================================================ */
.icg-ct-main {
    background: var(--white);
    padding: 0;
}

/* ============================================================
   INTRO SPLIT — Estilo Nosotros
   ============================================================ */
.icg-ct-intro {
    background: var(--white);
    padding: 140px 110px;
}

.icg-ct-intro__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.icg-ct-intro__left {
    flex: 0 0 40%;
}

.icg-ct-intro__big {
    display: block;
    font-family: var(--font);
    font-weight: 700;
    font-size: 80px;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 24px;
}

.icg-ct-intro__name {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    color: var(--carbon);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.icg-ct-intro__right {
    flex: 1;
    border-left: 1px solid var(--light);
    padding-left: 60px;
}

.icg-ct-intro__text {
    font-family: var(--font);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.8;
    color: #595959;
    margin-bottom: 24px;
}

.icg-ct-intro__text:last-child {
    margin-bottom: 0;
}

/* ============================================================
   INFO CARDS — 4 columnas sobre fondo slate
   ============================================================ */
.icg-ct-info-cards {
    background: var(--slate);
    padding: 100px 110px;
}

.icg-ct-info-cards__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.icg-ct-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.icg-ct-info-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.icg-ct-info-card__icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 28px;
}

.icg-ct-info-card__line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
    transition: width 0.5s ease;
}

.icg-ct-info-card:hover .icg-ct-info-card__line {
    width: 80px;
}

.icg-ct-info-card__label {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.icg-ct-info-card__value {
    display: block;
    font-family: var(--font);
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
}

.icg-ct-info-card__value--link {
    transition: color 0.3s ease;
}

.icg-ct-info-card__value--link:hover {
    color: var(--gold);
}

/* ============================================================
   BLOQUE 2 — FORMULARIO SOBRE FONDO CARBON
   ============================================================ */
.icg-ct-formblock {
    background: var(--carbon);
    padding: 140px 0;
}

.icg-ct-formblock__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.icg-ct-formblock__title {
    font-family: var(--font);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
}

.icg-ct-formblock__gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
}

.icg-ct-formblock__subtitle {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* ---- Form Grid (dark theme) ---- */
.icg-ct-form {
    text-align: left;
}

.icg-ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.icg-ct-form__row--full {
    grid-template-columns: 1fr;
}

/* ---- Field (dark) ---- */
.icg-ct-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.icg-ct-field__label {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.icg-ct-field__input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 16px 0;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.4s var(--ease-smooth);
    -webkit-appearance: none;
    appearance: none;
}

.icg-ct-field__input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 15px;
}

.icg-ct-field__input:focus {
    border-bottom-color: var(--gold);
}

/* Focus underline animation */
.icg-ct-field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease-expo);
}

.icg-ct-field:focus-within::after {
    width: 100%;
}

/* Select (dark) */
.icg-ct-field__select-wrap {
    position: relative;
}

.icg-ct-field__input--select {
    cursor: pointer;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.2);
}

.icg-ct-field__input--select option {
    background: var(--carbon);
    color: var(--white);
}

.icg-ct-field__select-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--gold);
    pointer-events: none;
    transition: transform 0.35s var(--ease-expo);
}

.icg-ct-field:focus-within .icg-ct-field__select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Textarea (dark) */
.icg-ct-field__input--textarea {
    resize: none;
    height: 150px;
    line-height: 1.75;
    font-family: var(--font);
}

/* ---- Submit Button (outlined gold) ---- */
.icg-ct-form__footer {
    margin-top: 48px;
}

.icg-ct-btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 0;
    color: var(--gold);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 22px 0;
    cursor: pointer;
    transition: background 0.45s var(--ease-smooth),
                color 0.45s var(--ease-smooth),
                transform 0.35s var(--ease-smooth);
}

.icg-ct-btn-submit:hover {
    background: var(--gold);
    color: var(--white);
}

.icg-ct-btn-submit:active {
    transform: scale(0.98);
}

/* Button states */
.icg-ct-btn-submit.sending {
    background: var(--slate);
    border-color: var(--slate);
    color: var(--white);
    cursor: wait;
    pointer-events: none;
}

.icg-ct-btn-submit.sent {
    background: #3a8a5f;
    border-color: #3a8a5f;
    color: var(--white);
    pointer-events: none;
}

/* ============================================================
   BLOQUE 3 — SALA DE VENTAS
   ============================================================ */
.icg-ct-sala {
    background: var(--white);
    padding: 0;
}

.icg-ct-sala__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.icg-ct-sala__content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icg-ct-sala__map {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.icg-ct-sala__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(80%) brightness(0.85);
    transition: filter 0.6s ease;
}

.icg-ct-sala__map:hover iframe {
    filter: grayscale(0%) brightness(1);
}

.icg-ct-sala__tag {
    display: block;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.icg-ct-sala__title {
    font-family: var(--font);
    font-size: 36px;
    font-weight: 300;
    color: var(--carbon);
    line-height: 1.3;
    margin-bottom: 24px;
}

.icg-ct-sala__line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

.icg-ct-sala__text {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 24px;
}

.icg-ct-sala__address {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 300;
    color: var(--slate);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icg-ct-sala__address i {
    color: var(--gold);
    font-size: 18px;
}

.icg-ct-sala__social {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.icg-ct-sala__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--gold);
    font-size: 22px;
    transition: color 0.35s var(--ease-smooth),
                transform 0.35s var(--ease-smooth);
}

.icg-ct-sala__social a:hover {
    color: var(--gold-hover);
    transform: translateY(-2px);
}

.icg-ct-sala__btn {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 16px 40px;
    transition: background 0.45s var(--ease-smooth),
                color 0.45s var(--ease-smooth);
}

.icg-ct-sala__btn:hover {
    background: var(--gold);
    color: var(--white);
}

/* Mapa section eliminada — ahora integrada en sala de ventas */
.icg-ct-mapsection__frame iframe {
    border: 0;
    display: block;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.8s var(--ease-smooth);
}

.icg-ct-mapsection__frame:hover iframe {
    filter: grayscale(0%) brightness(1);
}

/* ============================================================
   FOOTER UNIFICADO ICG
   ============================================================ */
.icg-footer {
    background: #2C2C2C;
    padding: 80px 123px;
    position: relative;
    overflow: hidden;
}

.icg-footer__inner {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.icg-footer__brand {
    display: flex;
    flex-direction: column;
}

.icg-footer__logo {
    width: 266px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.icg-footer__brand-text {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
}

.icg-footer__brand-text strong {
    font-weight: 700;
}

.icg-footer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.icg-footer__col h4 {
    font-size: 24px;
    font-weight: 700;
    color: #C89C53;
    text-transform: uppercase;
    letter-spacing: 2.16px;
    margin-bottom: 30px;
}

.icg-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icg-footer__col ul li a {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 50px;
    display: block;
    transition: color 0.3s ease;
}

.icg-footer__col ul li a:hover {
    color: #fff;
}

.icg-footer__address {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 24px;
    margin-bottom: 20px;
}

.icg-footer__contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 50px;
    transition: color 0.3s ease;
}

.icg-footer__contact-links a:hover {
    color: #fff;
}

.icg-footer__sala {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    margin-bottom: 0;
}

.icg-footer__cita-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #AB874B;
    color: #C89C53;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 28px;
    margin-top: 12px;
    transition: background 0.3s ease, color 0.3s ease;
    height: 52px;
    white-space: nowrap;
}

.icg-footer__cita-btn:hover {
    background: rgba(200, 156, 83, 0.1);
    color: #C89C53;
}

.icg-footer__decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 616px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.icg-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(200, 156, 83, 0.25);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: icg-ct-whatsapp-pulse 2.5s infinite;
}

.icg-whatsapp:hover {
    transform: scale(1.08);
    animation: none;
    box-shadow: 0 0 0 10px rgba(200, 156, 83, 0.3);
}

.icg-whatsapp i {
    font-size: 40px;
    color: #C89C53;
}

@keyframes icg-ct-whatsapp-pulse {
    0% { box-shadow: 0 0 0 6px rgba(200, 156, 83, 0.25); }
    70% { box-shadow: 0 0 0 18px rgba(200, 156, 83, 0); }
    100% { box-shadow: 0 0 0 6px rgba(200, 156, 83, 0); }
}

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

/* --- 1200px --- */
@media (max-width: 1200px) {
    /* Banner */
    .icg-ct-banner__grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 60px 50px;
        row-gap: 36px;
    }

    .icg-ct-banner__value {
        font-size: 18px;
    }

    /* Form block */
    .icg-ct-formblock {
        padding: 100px 0;
    }

    .icg-ct-formblock__inner {
        max-width: 100%;
        padding: 0 60px;
    }

    .icg-ct-formblock__title {
        font-size: 38px;
    }

    /* Sala */
    .icg-ct-sala {
        padding: 80px 60px;
    }

    .icg-ct-mapsection__inner {
        padding: 60px 60px;
    }

    .icg-footer {
        padding: 80px 60px;
    }
}

/* --- 991px --- */
@media (max-width: 991px) {
    .icg-ct-intro {
        padding: 80px 40px;
    }

    .icg-ct-intro__inner {
        flex-direction: column;
        gap: 48px;
    }

    .icg-ct-intro__left {
        flex: none;
    }

    .icg-ct-intro__big {
        font-size: 56px;
    }

    .icg-ct-intro__right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--light);
        padding-top: 40px;
    }

    .icg-ct-info-cards {
        padding: 80px 40px;
    }

    .icg-ct-info-cards__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .icg-navbar {
        padding: 18px 40px;
    }

    .icg-ct-hero {
        min-height: 340px;
    }

    .icg-ct-hero__content {
        padding: 0 40px 48px;
    }

    .icg-ct-hero__title {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .icg-ct-hero__breadcrumb {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Banner */
    .icg-ct-banner {
        height: 450px;
    }

    .icg-ct-banner__grid {
        padding: 0 40px 44px;
    }

    .icg-ct-banner__value {
        font-size: 17px;
    }

    /* Form */
    .icg-ct-formblock {
        padding: 80px 0;
    }

    .icg-ct-formblock__inner {
        padding: 0 40px;
    }

    .icg-ct-formblock__title {
        font-size: 34px;
    }

    .icg-ct-formblock__subtitle {
        font-size: 16px;
    }

    .icg-ct-form__row {
        gap: 24px;
    }

    /* Sala — stack */
    .icg-ct-sala {
        padding: 80px 40px;
    }

    .icg-ct-sala__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .icg-ct-sala__image {
        height: 350px;
    }

    .icg-ct-sala__content {
        padding-left: 0;
    }

    .icg-ct-sala__title {
        font-size: 30px;
    }

    .icg-ct-sala__text {
        font-size: 16px;
    }

    .icg-ct-mapsection__inner {
        padding: 60px 40px;
    }

    .icg-ct-mapsection__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .icg-ct-mapsection__frame {
        height: 320px;
    }

    .icg-footer {
        padding: 60px 30px;
    }

    .icg-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .icg-footer__columns {
        grid-template-columns: 1fr 1fr;
    }

    .icg-footer__col h4 {
        font-size: 20px;
    }

    .icg-footer__col ul li a {
        font-size: 16px;
    }
}

/* --- 576px --- */
@media (max-width: 576px) {
    .icg-ct-intro {
        padding: 60px 20px;
    }

    .icg-ct-intro__big {
        font-size: 42px;
    }

    .icg-ct-intro__name {
        font-size: 17px;
    }

    .icg-ct-intro__text {
        font-size: 17px;
    }

    .icg-ct-info-cards {
        padding: 60px 20px;
    }

    .icg-ct-info-cards__inner {
        grid-template-columns: 1fr;
    }

    .icg-ct-info-card {
        padding: 36px 28px;
    }

    .icg-navbar {
        padding: 16px 20px;
    }

    .icg-navbar.scrolled {
        padding: 10px 20px;
    }

    .icg-navbar__logo img {
        max-height: 50px;
        width: auto;
    }

    .icg-ct-hero {
        min-height: 320px;
    }

    .icg-ct-hero__content {
        padding: 0 20px 40px;
    }

    .icg-ct-hero__title {
        font-size: 28px;
    }

    .icg-ct-hero__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    /* Banner — 1 col compact */
    .icg-ct-banner {
        height: auto;
        min-height: 0;
    }

    .icg-ct-banner__img {
        height: 320px;
    }

    .icg-ct-banner__overlay {
        background: linear-gradient(to top, rgba(44, 44, 44, 0.92) 0%, rgba(44, 44, 44, 0.55) 50%, transparent 80%);
    }

    .icg-ct-banner__grid {
        position: relative;
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 28px;
        background: var(--deep);
    }

    .icg-ct-banner__value {
        font-size: 16px;
    }

    .icg-ct-banner__label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    /* Form block */
    .icg-ct-formblock {
        padding: 60px 0;
    }

    .icg-ct-formblock__inner {
        padding: 0 24px;
    }

    .icg-ct-formblock__title {
        font-size: 28px;
    }

    .icg-ct-formblock__subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .icg-ct-form__row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .icg-ct-field {
        margin-bottom: 24px;
    }

    .icg-ct-btn-submit {
        padding: 18px 0;
    }

    /* Sala */
    .icg-ct-sala {
        padding: 60px 24px;
    }

    .icg-ct-sala__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .icg-ct-sala__image {
        height: 260px;
    }

    .icg-ct-sala__content {
        padding-left: 0;
    }

    .icg-ct-sala__title {
        font-size: 26px;
    }

    .icg-ct-sala__text {
        font-size: 16px;
    }

    .icg-ct-sala__btn {
        padding: 16px 36px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .icg-ct-mapsection__inner {
        padding: 48px 24px;
    }

    .icg-ct-mapsection__title {
        font-size: 22px;
    }

    .icg-ct-mapsection__address {
        font-size: 15px;
    }

    .icg-ct-mapsection__frame {
        height: 260px;
    }

    .icg-footer {
        padding: 40px 20px;
    }

    .icg-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .icg-footer__logo {
        width: 200px;
    }

    .icg-footer__columns {
        grid-template-columns: 1fr;
    }

    .icg-footer__col h4 {
        font-size: 18px;
    }

    .icg-footer__col ul li a {
        font-size: 16px;
        line-height: 40px;
    }

    .icg-footer__address {
        font-size: 16px;
    }

    .icg-footer__brand-text {
        font-size: 16px;
    }

    .icg-footer__sala {
        font-size: 16px;
    }

    .icg-footer__cita-btn {
        font-size: 16px;
        padding: 10px 24px;
        width: auto;
    }

    .icg-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .icg-whatsapp i {
        font-size: 24px;
    }
}

/* Placeholders blancos para inputs del formulario de contacto */
.icg-ct-field__input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.icg-ct-field__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.icg-ct-field__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.icg-ct-field__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.icg-ct-field__input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

/* Placeholder visible en select (option disabled selected) */
select.icg-ct-field__input:invalid,
select.icg-ct-field__input option[value=""][disabled] {
    color: rgba(255, 255, 255, 0.55);
}

select.icg-ct-field__input option {
    color: #111;
}
