/* =========================================================
   TEXSPORT — style.css
   Font titoli: Bebas Neue | Font testo, menu e bottoni: Inter
   Palette: bianco / grigio chiaro alternati, rosso come filetto d'accento
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-grey-light: #eef0f1;
  --color-grey: #e2e4e6;
  --color-grey-dark: #6c7278;
  --color-footer-bg: #34363a;
  --color-text: #24262a;
  --color-dark: #101113;
  --color-red: #e30613;
  --color-red-dark: #b70510;
  --color-green: #1f9d55;
  --color-green-dark: #167a42;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 4px;
}

* { box-sizing: border-box; }

/* Sicurezza anti-deformazione: ogni immagine mantiene sempre le sue proporzioni
   reali, a meno che una regola più specifica (es. .gallery-item img) non dica
   diversamente. Evita immagini stirate/deformate su qualunque schermo. */
img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

/* Offset di scroll per le ancore del menu (sito one-page a fasce) */
section[id] { scroll-margin-top: 84px; }
@media (max-width: 991px) {
  section[id] { scroll-margin-top: 68px; }
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: .97rem;
  line-height: 1.85;
  letter-spacing: .1px;
  padding-top: 96px; /* altezza navbar fissa (logo più grande) */
}

/* Titoli: Bebas Neue, mai in grassetto, dimensioni generose */
h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--color-dark);
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

a { color: var(--color-red); text-decoration: none; }
a:hover { color: var(--color-red-dark); }

/* Corpo testo: dimensione uniforme, spaziato, giustificato */
p {
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 1.35rem;
  text-align: justify;
  hyphens: auto;
}
p.no-justify { text-align: left; }
p:last-child { margin-bottom: 0; }

.text-red { color: var(--color-red) !important; }

/* ============ SFONDI A FASCIA — alternanza netta bianco / grigio chiaro ============ */
.fascia-white { background: #ffffff; }
.fascia-white-strip { background: #ffffff; }
.fascia-grey {
  background: linear-gradient(180deg, #e7e8ea 0%, #f2f3f4 55%, #ffffff 100%);
}
.fascia-red {
  background: var(--color-red);
  color: #fff;
}
.fascia-red h1,
.fascia-red h2,
.fascia-red h3,
.fascia-red h4 { color: #fff; }
.fascia-red .section-eyebrow { color: #fff; }
.fascia-red .red-divider { background-color: #fff; }
.fascia-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #101113 0%, #26282b 100%);
  color: #fff;
}
/* Immagine di sfondo (bitmap) opzionale, impostabile via HTML sul div .fascia-bg-image */
.fascia-dark .fascia-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fascia-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(16,17,19,.88) 0%, rgba(38,40,43,.88) 100%);
}
.fascia-dark > .container { position: relative; z-index: 2; }

/* Ogni fascia è separata da un filetto rosso netto */
.fascia { border-top: 2px solid var(--color-red); }

/* Linea sottile rossa decorativa */
.red-divider {
  width: 64px;
  height: 3px;
  background-color: var(--color-red);
  border: 0;
  margin: 0 auto 1.8rem;
}
.red-divider.left { margin: 0 0 1.8rem; }

.section-eyebrow {
  font-family: var(--font-body);
  color: var(--color-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
}

.section-pad { padding: 6.5rem 0; }
.section-pad-top { padding-top: 6.5rem; }
.section-pad-bottom { padding-bottom: 4.5rem; }
@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .section-pad-top { padding-top: 3.5rem; }
  .section-pad-bottom { padding-bottom: 3.5rem; }
  h3 { font-size: 1.68rem; }
}

/* ============ BUTTONS — font Inter, mai Bebas Neue ============ */
.btn-texsport {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  font-size: .88rem;
  background-color: var(--color-red);
  border: 2px solid var(--color-red);
  color: #fff;
  padding: .8rem 1.9rem;
  border-radius: var(--radius);
  transition: all .2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
}
.btn-texsport:hover {
  background-color: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}
.btn-texsport-outline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  font-size: .88rem;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: .8rem 1.9rem;
  border-radius: var(--radius);
  transition: all .2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-texsport-outline:hover {
  background-color: #fff;
  color: var(--color-dark);
}
.btn-green {
  background-color: var(--color-green);
  border-color: var(--color-green);
}
.btn-green:hover {
  background-color: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

/* ============ NAVBAR — menu più piccolo, logo più grande ============ */
.navbar-texsport {
  background-color: rgba(255,255,255,.98);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: .4rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
}
.navbar-texsport .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}
.navbar-texsport .navbar-brand img {
  height: 74px;
  width: auto;
  display: block;
}
.navbar-texsport .navbar-nav {
  flex-grow: 1;
  justify-content: space-evenly;
}
.navbar-texsport .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .1px;
  color: var(--color-dark);
  margin: 0 .3rem;
  padding: .4rem 0 !important;
  position: relative;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-texsport .nav-link { font-size: .76rem; margin: 0 .15rem; }
}
.navbar-texsport .nav-link:hover,
.navbar-texsport .nav-link.active {
  color: var(--color-red);
  border-bottom-color: var(--color-red);
}
.navbar-texsport .nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  background: var(--color-green);
  color: #fff !important;
  padding: .55rem 1.2rem !important;
  border-radius: var(--radius);
  margin-left: .5rem;
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.navbar-texsport .nav-cta:hover { background: var(--color-green-dark); }
.navbar-texsport .nav-cta i { font-size: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1a1b1d 0%, #2b2d30 55%, #3a3c40 100%);
  overflow: hidden;
}
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
}
.hero-bg-slide {
  position: absolute;
  inset: -10px; /* margine extra per evitare bordi vuoti durante lo zoom */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity, transform;
  animation-duration: 18s; /* durata totale del ciclo (3 immagini) */
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
/* Immagine 1: visibile da 0s a 6s circa, con dissolvenza in entrata/uscita e zoom Ken Burns */
.hero-bg-slide:nth-child(1) { animation-name: heroSlide1; }
@keyframes heroSlide1 {
  0%     { opacity: 0; transform: scale(1); }
  5.5%   { opacity: 1; transform: scale(1.03); }
  27.7%  { opacity: 1; transform: scale(1.12); }
  33.3%  { opacity: 0; transform: scale(1.15); }
  100%   { opacity: 0; transform: scale(1); }
}
/* Immagine 2: visibile da 6s a 12s circa */
.hero-bg-slide:nth-child(2) { animation-name: heroSlide2; }
@keyframes heroSlide2 {
  0%     { opacity: 0; transform: scale(1); }
  33.3%  { opacity: 0; transform: scale(1); }
  38.8%  { opacity: 1; transform: scale(1.03); }
  61.1%  { opacity: 1; transform: scale(1.12); }
  66.6%  { opacity: 0; transform: scale(1.15); }
  100%   { opacity: 0; transform: scale(1); }
}
/* Immagine 3: visibile da 12s a 18s circa */
.hero-bg-slide:nth-child(3) { animation-name: heroSlide3; }
@keyframes heroSlide3 {
  0%     { opacity: 0; transform: scale(1); }
  66.6%  { opacity: 0; transform: scale(1); }
  72.2%  { opacity: 1; transform: scale(1.03); }
  94.4%  { opacity: 1; transform: scale(1.12); }
  100%   { opacity: 0; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide { animation: none; opacity: 1; }
  .hero-bg-slide:not(:first-child) { display: none; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero .badge-new {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--color-red);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: .78rem;
  padding: .4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero p.lead {
  color: #e7e7e8;
  max-width: 600px;
  text-align: left;
  font-size: 1.05rem;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1a1b1d 0%, #2b2d30 100%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.breadcrumb-texsport a { color: #d9d9d9; }
.breadcrumb-texsport span { color: var(--color-red); }

/* ============ BLOCCHI DI CONTENUTO ============ */
.content-block { margin-bottom: 1rem; }
.content-block .content-media { margin-bottom: 2rem; }
.content-block.media-bottom .content-media { margin-bottom: 0; margin-top: 2rem; }
.content-block .content-text :last-child { margin-bottom: 0; }

/* Box statistica/icona a 3 colonne — box bianchi, filetto grigio, angoli smussati */
.stat-box {
  text-align: center;
  padding: 2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--color-grey);
  border-radius: 16px;
  height: 100%;
}
.stat-box i { font-size: 2.6rem; color: var(--color-red); margin-bottom: 1rem; display: inline-block; }
.stat-box h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.stat-box p { text-align: center; font-size: .92rem; }
@media (max-width: 767px) {
  .stat-box h3 { font-size: 1.56rem; }
}

/* Box "tecnologia" a griglia 2 colonne */
.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  height: 100%;
}
.tech-item i { font-size: 1.5rem; color: var(--color-red); margin-top: .1rem; }
.tech-item p { margin-bottom: 0; font-size: .93rem; text-align: left; }

/* Varianti scure (fasce fascia-dark: Tecnologia, Configuratore, Impatto) */
.fascia-dark h2, .fascia-dark h3 { color: #fff; }
.fascia-dark p { color: #d3d4d6; }
.fascia-dark .tech-item {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.16);
}
.fascia-dark .tech-item p { color: #d3d4d6; }
.fascia-dark img { opacity: .92; }

/* Fascia larga tutta pagina con immagine di sfondo (placeholder) */
.full-bleed-band {
  position: relative;
  width: 100%;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2c30 0%, #101113 100%);
}
.full-bleed-band .band-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.full-bleed-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.55) 100%);
}
.full-bleed-band .band-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 2rem;
}
.full-bleed-band h2 { color: #fff; margin-bottom: 0; }

/* Citazione in evidenza */
.pull-quote {
  background: var(--color-grey-light);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  font-style: normal;
  font-size: .97rem;
  line-height: 1.85;
  text-align: justify;
  color: var(--color-text);
}

/* Box "badge" compatto, centrato verticalmente, con claim pubblicitario */
.pull-quote-badge {
  max-width: 380px;
  margin: 0 auto;
  padding: 1.6rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.pull-quote-badge .quote-badge-headline {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: .5px;
  color: var(--color-red);
  text-transform: uppercase;
}
.pull-quote-badge .quote-badge-sub {
  display: block;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--color-text);
}

/* Galleria immagini 4+4 */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Fascia impatto con sfondo */
.impact-band {
  position: relative;
  background: linear-gradient(135deg, #101113 0%, #26282b 100%);
  background-attachment: fixed;
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
  border-top: 2px solid var(--color-red);
}
.impact-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, rgba(227,6,19,.05) 0 3px, transparent 3px 60px);
}
.impact-band .container { position: relative; z-index: 2; }
.impact-band h2 { color: #fff; }
.impact-band p { color: #d9d9da; max-width: 700px; margin: 0 auto 2rem; text-align: center; }

/* ============ FEATURE BOX ============ */
.feature-box {
  background: #fff;
  border: 1px solid var(--color-grey);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem;
  height: 100%;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.feature-box i {
  font-size: 2.8rem;
  color: var(--color-red);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.feature-box h3 { font-size: 1.15rem; margin-bottom: .5rem; }
@media (max-width: 767px) {
  .feature-box h3 { font-size: 1.38rem; }
}
.feature-box p {
  font-size: .88rem;
  text-align: center;
  color: var(--color-grey-dark);
  margin-bottom: 0;
}

/* ============ COLLEZIONE ============ */
.model-card {
  background: #fff;
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .2s ease, transform .2s ease;
}
.model-card:hover { box-shadow: 0 14px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.model-card img { display: block; width: 100%; height: auto; }
.model-card .model-body { padding: 1.5rem; }
.model-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.model-card p { text-align: left; font-size: .9rem; }
@media (max-width: 767px) {
  /* 2 box per riga da smartphone: riduco leggermente padding e testo per adattarli alla larghezza */
  .model-card .model-body { padding: .9rem; }
  .model-card h3 { font-size: 1.2rem; }
  .model-card p { font-size: .78rem; }
  .badge-available, .badge-soon { font-size: .58rem; padding: .25rem .5rem; }
}
.badge-available {
  background: var(--color-green); color: #fff; font-family: var(--font-body);
  font-size: .68rem; text-transform: uppercase; letter-spacing: .5px;
  padding: .3rem .7rem; border-radius: 2px; font-weight: 700;
}
.badge-soon {
  background: var(--color-grey-dark); color: #fff; font-family: var(--font-body);
  font-size: .68rem; text-transform: uppercase; letter-spacing: .5px;
  padding: .3rem .7rem; border-radius: 2px; font-weight: 700;
}

/* ============ CONFIGURATORE BANNER ============ */
.configurator-band {
  background: linear-gradient(135deg, #1a1b1d 0%, #2b2d30 100%);
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
  border-top: 2px solid var(--color-red);
}
.configurator-band h1, .configurator-band h2 { color: #fff; }
.configurator-band p { text-align: center; }
.step-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.15);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem;
  height: 100%;
  text-align: center;
}
.step-box i { font-size: 2.8rem; color: var(--color-red); margin-bottom: 1.1rem; display: inline-block; }
.step-box h2, .step-box h3 { color: #fff; font-size: 2rem; }
.step-box p { color: #c7c8ca; font-size: .88rem; text-align: center; margin-bottom: 0; }
@media (max-width: 767px) {
  /* 3 box per riga anche da smartphone: riduco padding, icona e testo per farli stare comodi */
  .step-box { padding: 1rem .5rem; }
  .step-box i { font-size: 1.6rem; margin-bottom: .5rem; }
  .step-box h2, .step-box h3 { font-size: 1.2rem; margin-bottom: .3rem; } /* -20% poi +25%: rimangono più grandi rispetto agli altri H3 mobile */
  .step-box p { font-size: .72rem; line-height: 1.3; }
}

/* ============ CONTATTI ============ */
.contact-info-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.9rem;
}
.contact-info-item i {
  font-size: 1.7rem;
  color: var(--color-red);
  width: 40px;
  text-align: center;
  margin-top: .1rem;
}
.contact-info-item div p { text-align: left; margin: 0; font-size: .93rem; }
.map-wrapper {
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-consent-box {
  background: var(--color-grey-light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-consent-box i { font-size: 2.2rem; }

.form-texsport label { font-weight: 600; font-size: .88rem; }
.form-texsport .form-control {
  border-radius: var(--radius);
  border: 1px solid #d3d5d8;
  padding: .7rem .9rem;
  font-size: .93rem;
}
.form-texsport .form-control:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 .2rem rgba(227,6,19,.12);
}
.captcha-box {
  background: var(--color-grey-light);
  border: 1px dashed #c9cbce;
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
}
.btn-submit {
  width: auto;
  min-width: 220px;
}

/* ============ FOOTER — grigio scuro, non nero ============ */
.site-footer {
  background: var(--color-footer-bg);
  color: #c7c8ca;
  padding: 4.5rem 0 1.5rem;
}
.site-footer .footer-logo img { height: 56px; width: auto; }
.site-footer p {
  text-align: left;
  font-size: .9rem;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.site-footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1.3rem;
}
.site-footer a { color: #c7c8ca; }
.site-footer a:hover { color: var(--color-red); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .6rem; font-size: .9rem; }
.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid #4a4c50;
  border-radius: 50%;
  margin-right: .5rem;
  color: #fff;
  font-size: 1.2rem;
}
.site-footer .social-icons a:hover { background: var(--color-red); border-color: var(--color-red); }
.footer-bottom {
  border-top: 1px solid #45474b;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  color: #9a9ca0;
}
.footer-bottom p,
.footer-bottom span {
  font-size: .8rem;
  text-align: left;
  margin: 0;
}
.footer-bottom a { color: #9a9ca0; }
.footer-bottom a:hover { color: var(--color-red); }

/* ============ COOKIE BANNER ============ */
#cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,11,.55);
  z-index: 2000;
}
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2001;
  background: #fff;
  border-top: 3px solid var(--color-red);
  box-shadow: 0 -6px 24px rgba(0,0,0,.18);
  padding: 1.6rem 0;
}
#cookie-banner p { font-size: .88rem; margin-bottom: 0; text-align: left; }
#cookie-banner .cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: flex-end; }
#cookie-preferences { display: none; }
#cookie-preferences .form-check { margin-bottom: .8rem; }

@media (max-width: 991px) {
  body { padding-top: 74px; }
  .hero { min-height: 80vh; }
  .navbar-texsport .navbar-brand img { height: 50px; }
}
