/* =============================================
   V SIMPOSIO CIER – Redes y Ciudades Inteligentes
   ============================================= */

:root {
    --navy:       #1C3B6A;
    --navy-dark:  #122847;
    --coral:      #E8654A;
    --coral-dark: #C94D33;
    --blue:       #007FB7;
    --cream:      #FAF9F3;
    --white:      #FFFFFF;
    --text:       #1A1A2E;
    --text-mid:   #4A5270;
    --border:     #E0DDD4;
    --shadow:     0 4px 24px rgba(28,59,106,0.10);
    --radius:     14px;
    --font:       'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.text-white{
    color: white;
}

.fw-bold{
    font-weight: bold;
}

/* ── UTILITY ── */
.mb-1{
    margin-bottom: .5rem;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 6rem 0; }

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 52px; height: 4px;
    background: var(--coral);
    border-radius: 2px;
    margin-top: 0.7rem;
}
.section-title.light { color: var(--white); }

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 3rem;
    max-width: 640px;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

#consultas .section-sub {
    max-width: max-content;
}

#ok_mensaje{
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
    background: #def9d8;
    padding: 15px;
    border-radius: 30px;
}

.subsec-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}
.mt-lg { margin-top: 4rem; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 1.1rem 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 18px rgba(0,0,0,.18);
    padding: .65rem 0;
}

.nav-container {
    max-width: 1180px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo nav: invisible en top, aparece al scrollear (solo isótipo en blanco) */
.nav-logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.navbar.scrolled .nav-logo {
    opacity: 1;     
    pointer-events: auto;
}
.nav-iso {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}


.nav-links {
    list-style: none;
    display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    font-size: .9rem; font-weight: 500;
    color: var(--navy);
    transition: color .2s;
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.85); }
.nav-links a:hover,
.navbar.scrolled .nav-links a:hover { color: var(--coral); }

.btn-nav {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background .2s !important;
}
.btn-nav:hover { background: var(--coral-dark) !important; }

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: background .3s;
}
.navbar.scrolled .nav-toggle span { background: var(--white); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
    padding-top: 20px;
}

.hero-bg-shape {
    position: absolute;
    top: 0; right: 0;
    width: 52%; height: 100%;
    background: linear-gradient(150deg, #deedf8 0%, #c8e2f3 55%, #b8d8ef 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 1180px; margin: 0 auto; padding: 2rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center; width: 100%;
}

.hero-text { padding: 2rem 0; }

/* Logo del simposio en el hero */
.hero-simposio-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.75rem;
}

.organizers {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 2rem;
}
.org-label {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-mid);
}
.organizers img { height: 62px; object-fit: contain; }

.hero-title {
    display: flex; flex-direction: column;
    margin-bottom: 1.25rem;
}
.title-main {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800; color: var(--navy); line-height: 1.1;
}
.title-sub {
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 500; color: var(--blue);
    margin-top: .3rem;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-mid);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-event-info {
    display: flex; align-items: center; gap: 1.75rem;
    margin-bottom: 2.5rem; flex-wrap: wrap;
}
.event-date { display: flex; flex-direction: column; }
.std-num {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800; color: var(--navy); line-height: 1;
}
.std-num em {
    font-size: .45em; font-style: normal;
    font-weight: 400; color: var(--text-mid);
    vertical-align: middle;
}
.std-month {
    font-size: 1rem; font-weight: 600;
    color: var(--navy); letter-spacing: .04em;
}
.hero-sep { width: 1px; height: 56px; background: var(--border); }
.hero-place { display: flex; flex-direction: column; gap: .2rem; }
.place-hotel { font-size: .88rem; color: var(--text-mid); }
.place-city  { font-size: 1rem;  font-weight: 700; color: var(--navy); }

.btn-primary {
    display: inline-block;
    background: var(--coral); color: var(--white);
    padding: .85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: .95rem;
    transition: background .2s, transform .2s;
    margin-right: 15px;
}

.btn-outline-primary {
    display: inline-block;
    border: 1px solid var(--coral); color: var(--coral);
    padding: .85rem 2rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: .95rem;
    transition: background .2s, transform .2s;
}
.btn-primary:hover, .btn-outline-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }

@media(max-width:992px){
    .btn-primary, .btn-outline-primary { font-size: .75rem; }
}

.text-t-none{
    text-transform: none !important;
}

/* City illustration — img absoluta sobre el bg-shape, anclada abajo-derecha */
.hero-visual { display: none; }

.hero-buildings-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 70%;
    width: auto;
    z-index: 2;          /* encima del hero-bg-shape (z-index: 0) */
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
    mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

/* ── SOBRE ── */
.sobre-section { background: var(--white); }

.sobre-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-bottom: 4rem;
}
.sobre-desc p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.inline-quote {
    font-style: italic; font-weight: 600;
    color: var(--navy); font-size: .95rem;
    border-left: 4px solid var(--coral);
    padding: .7rem 1.1rem;
    background: #fff8f6; border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}
.sobre-objetivo h3 {
    font-size: 1.2rem; font-weight: 700;
    color: var(--navy); margin-bottom: .9rem;
}
.sobre-objetivo p { color: var(--text-mid); line-height: 1.8; }

.obj-especificos { margin-bottom: 4rem; }
.obj-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.obj-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    border-top: 4px solid var(--coral);
    position: relative;
}
.obj-num {
    position: absolute; top: 1rem; right: 1.2rem;
    font-size: 2.8rem; font-weight: 800;
    color: var(--navy); opacity: .08; line-height: 1;
}
.obj-card h4 {
    font-size: .95rem; font-weight: 700;
    color: var(--navy); margin-bottom: .65rem; line-height: 1.4;
}
.obj-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

.dirigido-a .dirigido-intro { color: var(--text-mid); margin-bottom: 1.25rem; }
.audience-list {
    list-style: none;
    display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.audience-list li {
    display: flex; gap: .6rem; align-items: flex-start;
    font-size: .88rem; color: var(--text-mid); line-height: 1.55;
    background: var(--cream); border-radius: 8px;
    padding: .75rem 1rem;
}
.audience-list li::before {
    content: '→'; color: var(--coral);
    font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── PROGRAMA ── */
.programa-section { background: var(--navy); }
.programa-section .section-title::after { background: var(--coral); }

.tabs-wrap { margin-top: 2.5rem; }

.tab-btns {
    display: flex; gap: .5rem; flex-wrap: wrap;
    margin-bottom: 2rem;
}
.tab-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.55);
    padding: .55rem 1.4rem;
    border-radius: 50px; cursor: pointer;
    font-family: var(--font); font-weight: 500; font-size: .88rem;
    transition: all .2s;
}
.tab-btn:hover { background: rgba(255,255,255,.14); color: white; }
.tab-btn.active {
    background: var(--coral); border-color: var(--coral);
    color: white; font-weight: 700;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.day-header { margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.day-header h3 { font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: .3rem; }
.day-tema { color: var(--coral); font-weight: 700; font-size: .92rem; }

.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before {
    content: ''; position: absolute;
    left: 6px; top: 8px; bottom: 8px;
    width: 2px; background: rgba(255,255,255,.12);
}
.tl-item { position: relative; margin-bottom: 1rem; }
.tl-dot {
    position: absolute; left: -1.75rem; top: 10px;
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.25);
    border: 2px solid rgba(255,255,255,.4);
}
.tl-highlight .tl-dot { background: var(--coral); border-color: var(--coral); }
.tl-break .tl-dot   { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

.tl-body {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px; padding: .8rem 1.1rem;
}
.tl-highlight .tl-body {
    background: rgba(232,101,74,.1);
    border-color: rgba(232,101,74,.28);
}
.tl-break .tl-body { background: transparent; border: none; padding: .2rem 0; }
.tl-body p {
    color: white;
    margin-top: 10px;
    font-size: .85rem;
}

.tl-tag {
    display: inline-block; font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .18rem .55rem; border-radius: 4px;
    margin-bottom: .35rem;
}
.tag-magistral { background: rgba(0,127,183,.3); color: #7dd3fc; }
.tag-bloque    { background: rgba(255,255,255,.12); color: rgba(255,255,255,.65); }
.tag-cierre    { background: rgba(232,101,74,.3);  color: #fba58c; }
.tag-break     { background: rgba(255,255,255,.07); color: rgba(255,255,255,.35); }

.tl-body h4, .tl-body ul li { font-size: .92rem; font-weight: 500; color: white; line-height: 1.45; }

.tl-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

.tl-body li {
    padding-bottom: 7px;
}



/* ── BANNER patrocinio ── */
.banner-patrocinio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--coral) !important;;
    color: #FFFFFF;
    padding: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
}

  .banner-patrocinio:hover {
    background-color: #E67E22; 
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }

  .banner-patrocinio svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }



/* ── INFORMACIÓN ── */
.info-section { background: var(--navy); }
.info-section .section-title::after { background: var(--coral); }
.info-section h4, .info-section p{
    color: white;
    margin-bottom: 20px;
}

 .info-section p{
    font-size: .9rem;
}

.info-section a.btn-submit{
    text-decoration: none;
    margin-bottom: 30px;
    display: inline-flex;
    width: auto !important;
    font-size: .9rem;
    padding: .5rem 1.5rem;
}

.info-section .tab-btn {
    padding: .55rem 1.2rem;
    font-size: .8rem;
}



/* ── HOTELES ── */
.hoteles-section { background: var(--cream); }

.hotel-sede-wrap { margin-bottom: 1rem; }
.sede-badge {
    display: inline-block;
    background: var(--coral); color: white;
    font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: .28rem .8rem;
    border-radius: 6px 6px 0 0;
}

.hotel-card {
    background: white;
    border-radius: 0 var(--radius) var(--radius) var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
}
.hotel-featured {
    border: 2px solid var(--coral);
    border-radius: 0 var(--radius) var(--radius) var(--radius);
}

.hotel-info { padding: 2rem; display: flex; flex-direction: column; gap: .9rem; }
.hotel-info h3 { font-size: 1.35rem; font-weight: 700; color: var(--navy); }

.hotel-notice {
    font-size: .83rem; color: var(--text-mid);
    background: #fff8f6; border-left: 3px solid var(--coral);
    border-radius: 0 6px 6px 0; padding: .55rem .85rem;
}

.rates { display: flex; gap: .75rem; flex-wrap: wrap; }
.rate {
    display: flex; flex-direction: column; align-items: center;
    background: var(--cream); border-radius: 8px;
    padding: .55rem .9rem; min-width: 88px;
}
.rates-compact .rate { min-width: 140px; align-items: flex-start; }
.rate-label {
    font-size: .68rem; text-transform: uppercase;
    letter-spacing: .06em; color: var(--text-mid); font-weight: 600;
}
.rate-val {
    font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-top: .15rem;
}

.hotel-email {
    display: flex; align-items: center; gap: .45rem;
    color: var(--blue); text-decoration: none;
    font-size: .85rem; font-weight: 500;
    word-break: break-all; transition: color .2s;
}
.hotel-email:hover { color: var(--coral); }

.btn-maps {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--navy); color: white;
    text-decoration: none; padding: .45rem 1rem;
    border-radius: 6px; font-size: .78rem; font-weight: 600;
    transition: background .2s; align-self: flex-start;
}
.btn-maps:hover { background: var(--coral); }

.hotel-map { min-height: 280px; }
.hotel-map iframe { width: 100%; height: 100%; min-height: 280px; border: none; display: block; }

.hint-text { font-size: .875rem; color: var(--text-mid); margin-bottom: 1.75rem; }

.hotels-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.hotels-grid .hotel-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
}
.hotels-grid .hotel-map { min-height: 210px; }
.hotels-grid .hotel-map iframe { min-height: 210px; }

/* ── INSCRIPCIÓN ── */
.inscripcion-section { background: white; }
.consulta-section { background: rgb(238, 237, 237); }


/* TARIFAS */
/* --- Estilos para los Botones/Pills --- */
.tarifas-tabs-container {
    display: flex;
    gap: 10px;
    margin: 25px 0 15px 0;
}

.tarifa-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tarifa-pill.active, .tarifa-pill:hover {
    background: #28a745; /* Usa aquí tu color verde o azul del simposio */
    border-color: #28a745;
    color: #fff;
}

/* --- Control de visibilidad de bloques --- */
.tarifas-list-dinamica {
    display: none;
}

.tarifas-list-dinamica.active {
    display: block;
}

/* Estructura base para las fijas (puedes adaptarlo a tus columnas originales) */
.tarifas-list-fijas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.page-bonificadas .tarifas-list-fijas {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}

.page-bonificadas #elegir_tarifa .tarifas-list-fijas {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 20px;
}

.page-bonificadas #elegir_tarifa .trc-inner {
    min-height: auto;
}

@media(max-width:992px){
.tarifas-list-fijas {
    grid-template-columns: 1fr 1fr;
}
.page-bonificadas #elegir_tarifa .tarifas-list-fijas {
    grid-template-columns: 1fr 1fr;
}
}







.tarifas-banner {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    margin-bottom: 3rem;
}

.tarifas-banner-bonificada {
    max-width: 460px;
}

.tarifas-banner-inner { color: white; }
.tarifas-banner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.tarifa-vigencia { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.tarifas-list { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tarifa-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px; padding: 1rem 1.5rem;
    display: flex; flex-direction: column; align-items: center;
    flex: 1; min-width: 130px; text-align: center;
}
.ti-label {
    font-size: .7rem;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    line-height: 1rem;
}
.ti-price  { font-size: 1.1rem; font-weight: 800; color: white; margin-top: .2rem; }
.tarifa-nota { font-size: .78rem; color: rgba(255,255,255,.4); }

/* Form */
.insc-form, .consulta-form { max-width: 920px; }

fieldset {
    border: none;
    margin-bottom: 2.5rem;
}
fieldset legend {
    font-size: 1.05rem; font-weight: 700;
    color: var(--navy); margin-bottom: 1.25rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--border);
    width: 100%;
    float: left; /* makes it behave as block */
}
fieldset legend + * { clear: both; }

.form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
#consultas .form-grid {
    grid-template-columns: 1fr 1fr 1fr;
}
.fg { display: flex; flex-direction: column; gap: .38rem; }
.fg-full { grid-column: 1 / -1; }

.fg label, .field-label {
    font-size: .82rem; font-weight: 600; color: var(--text);
}
.field-label { margin-bottom: .75rem; display: block; }

.fg .radio-inline-container label {
    margin-right: 1rem;
    display: inline-flex;
}

input.toggle-factura {
    margin-right: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    font-family: var(--font); font-size: .9rem;
    color: var(--text); background: white;
    border: 1.5px solid var(--border);
    border-radius: 8px; padding: .62rem .85rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none; width: 100%;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,127,183,.1);
}
textarea { resize: vertical; min-height: 80px; }

/* Tarifa radio cards */
.flex-none{
    flex: none !important;
}
.tarifa-radios {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.tarifa-radio-card { cursor: pointer; flex: 1; min-width: 140px; }
.tarifa-radio-card input[type="radio"] { display: none; }
.trc-inner {
    border: 2px solid var(--border); border-radius: 10px;
    padding: 1rem;
    display: flex; flex-direction: column; align-items: center;
    transition: border-color .2s, background .2s;
    background: white; cursor: pointer;
}
#elegir_tarifa .trc-inner{
        min-height: 106px;
    }
@media(max-width:992px){
   #elegir_tarifa .trc-tipo{
        font-size: .6rem;
        line-height: .8rem;
    }
    #elegir_tarifa .trc-inner{
        min-height: 100px;
    }
}



.tarifa-radio-card input:checked + .trc-inner {
    border-color: var(--coral); background: #fff8f6;
}
.trc-tipo {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-mid);
    text-align: center;
    line-height: 1rem;
}
.trc-precio{ font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-top: .2rem; }
.tarifa-radio-card input:checked + .trc-inner .trc-precio { color: var(--coral); }

.form-notes {
    margin: 2rem 0;
    background: var(--cream); border-radius: 8px;
    padding: 1rem 1.2rem;
    font-size: .875rem; color: var(--text-mid);
    display: flex; flex-direction: column; gap: .35rem;
}
.form-notes a { color: var(--blue); text-decoration: none; font-weight: 500; }
.form-notes a:hover { color: var(--coral); }

.btn-submit {
    width: 100%;
    background: var(--coral); color: white;
    border: none; padding: 1rem 2rem;
    border-radius: 50px; cursor: pointer;
    font-family: var(--font); font-size: 1rem; font-weight: 700;
    transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--coral-dark); transform: translateY(-2px); }

/* Form validation states */
.field-error { border-color: #e53e3e !important; background: #fff5f5 !important; }
.card-error .trc-inner { border-color: #e53e3e !important; }

/* Quitar fondo blanco del logo CUCIER (funciona sobre fondos claros y sobre la pastilla blanca del footer) */
.logo-cucier { mix-blend-mode: multiply; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 3rem 0; }
.footer-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 1.75rem; text-align: center;
}

/* Pastilla blanca: ambos logos sobre fondo claro → multiply funciona en los dos */
.footer-logos-wrap {
    display: flex; align-items: center; gap: 1.75rem;
    background: white;
    padding: .75rem 2rem;
    border-radius: 50px;
}
.footer-logo-cier { object-fit: contain; }

.footer-info { display: flex; flex-direction: column; gap: .35rem; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-address {
    font-style: normal; font-size: .8rem;
    color: rgba(255,255,255,.3);
}
.footer-address a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .2s;
}
.footer-address a:hover { color: var(--coral); }











/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .obj-grid { grid-template-columns: 1fr; }
    .hotels-grid { grid-template-columns: 1fr; }
    .sobre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .audience-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: fixed; inset: 0;
        background: var(--navy-dark);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 2rem; z-index: 800;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: white !important; font-size: 1.1rem; }
    .btn-nav { background: var(--coral) !important; }

    .hero-content        { grid-template-columns: 1fr; }
    .hero-visual         { display: none; }
    .hero-bg-shape       { display: none; }
    .hero-buildings-img  { display: none; }

    .hotel-card   { grid-template-columns: 1fr; }
    .hotel-map    { min-height: 230px; }
    .hotel-map iframe { min-height: 230px; }

    .form-grid, #consultas .form-grid { grid-template-columns: 1fr; }
   .tarifa-radios {
    grid-template-columns: 1fr 1fr;
}
    .tarifas-list  {
        flex-direction: column;
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
    .tarifas-banner {
    padding: 2rem 1rem;

}


    .section { padding: 4rem 0; }
    .hero-event-info { gap: 1rem; }
    .hero-simposio-logo {
    width: 250px;
    margin: 0 auto 1.5rem;
}
.hero {
    min-height: auto;
    padding-top: 75px;
}
.hero-tagline {
    font-size: 1.15rem;
}
.hero-text {
    padding: 0;
}
.place-hotel,.place-city {
    font-size: 13px;
}
.std-num {
    font-size: 1.75rem;
}
.std-month {
    font-size: 0.75rem;
}
.sobre-desc p, .sobre-objetivo p {
    font-size: .9rem;
}
.organizers {
    justify-content: center;
}

.tarifa-radios br{
    display: none;
}

}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .rates { flex-direction: column; }
}

@media (min-width: 1400px) {
.hero-buildings-img {
    height: 85%;

}
.hero-simposio-logo {
    width: 360px;
}
.hero-tagline {
    font-size: 2rem;
}
.hero {
    padding-top: 80px;
}
}

@media (min-width: 1600px) {
.hero-buildings-img {
    height: 100%;

}
}