* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  min-height: 100vh;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

:root {
  --touche-vino: #2b0505;
  --touche-dorado: #d4af37;
  --fuente: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  --bikerace-red: #e60000;
  --bikerace-dark: #121212;
}

@keyframes slideInTopBase {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInBottomBase {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes resto-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideInLeftCell {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRightCell {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateCounterClockwise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes keepUpright {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes keepUprightReverse {
  from {
    transform: rotate(-360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes constant-glow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
  }
  50% {
    filter: brightness(3.2) drop-shadow(0 0 40px rgba(230, 194, 122, 0.7)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
  }
}
.resto-body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.resto-body .main-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.resto-body .screen-switch,
.resto-body .category-switch {
  display: none;
}

.resto-body #pantalla-bienvenida {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.resto-body .welcome-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.resto-body .welcome-img {
  display: block;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  animation: resto-pulse 2s infinite ease-in-out;
  transition: filter 0.5s ease;
}
.resto-body .welcome-img:hover {
  filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.4));
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .welcome-img {
    max-width: 450px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .welcome-img {
    max-width: 480px;
    animation: resto-pulse 2s infinite;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .welcome-img {
    max-width: 600px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    animation: resto-pulse 2s infinite;
  }
}

.resto-body .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.resto-body #pantalla-menu {
  display: none;
}

.resto-body #toggle-menu:checked ~ #pantalla-bienvenida {
  display: none;
}

.resto-body #toggle-menu:checked ~ #pantalla-menu {
  display: block;
}

.resto-body .nav-group-left {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  padding: 15px 10px;
  gap: 10px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInTopBase 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .nav-group-left {
    right: auto;
    width: 120px;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    padding: 30px 10px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideInLeftCell 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .nav-group-left {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    padding: 20px 15px;
    gap: 15px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .nav-group-left {
    right: auto;
    width: 180px;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    padding: 60px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .nav-group-left {
    right: auto;
    width: 220px;
    height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    padding: 80px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
  }
}

.resto-body .nav-item {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.6rem;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.resto-body .nav-item:hover {
  color: #d4af37;
  transform: translateY(-2px);
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .nav-item {
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
  }
  .resto-body .nav-item:hover {
    opacity: 1;
    color: #d4af37;
    transform: translateX(5px);
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .nav-item {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .nav-item {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .nav-item {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
  .resto-body .nav-item:hover {
    color: #d4af37;
    transform: translateX(10px);
  }
}

.resto-body #cat-menu:checked ~ #pantalla-menu label[for=cat-menu],
.resto-body #cat-postres:checked ~ #pantalla-menu label[for=cat-postres],
.resto-body #cat-vinos:checked ~ #pantalla-menu label[for=cat-vinos] {
  color: #d4af37;
}

.resto-body .menu-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  z-index: 10;
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .menu-container {
    width: 70vw;
    left: 48%;
    transform: translate(-50%, -50%) scale(0.7);
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .menu-container {
    width: 80vw;
    top: 52%;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .menu-container {
    width: 55vw;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .menu-container {
    width: 50vw;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

.resto-body .menu-board-img {
  width: 100%;
  height: auto;
}

.resto-body .dishes-grid {
  display: none;
  position: absolute;
  width: 62%;
  height: 45%;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
  grid-template-columns: 1fr;
  gap: 6px;
  z-index: 30;
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .dishes-grid {
    width: 72%;
    height: 55%;
    margin-top: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 5px 35px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .dishes-grid {
    width: 75%;
    height: 50%;
    margin-top: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 12px 45px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .dishes-grid {
    width: 75%;
    height: 55%;
    margin-top: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 15px 50px;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .dishes-grid {
    width: 75%;
    height: 55%;
    margin-top: 65px;
    grid-template-columns: 1fr 1fr;
    gap: 25px 60px;
  }
}

.resto-body #cat-menu:checked ~ #pantalla-menu #platillos-grid,
.resto-body #cat-postres:checked ~ #pantalla-menu #grid-postres,
.resto-body #cat-vinos:checked ~ #pantalla-menu #grid-vinos {
  display: grid;
}

.resto-body .dish-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #2b0505;
  font-weight: 700;
  font-size: 0.75rem;
  border-bottom: 1px dotted rgba(43, 5, 5, 0.2);
  transition: color 0.3s ease;
}
.resto-body .dish-item:hover {
  color: #d4af37;
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .dish-item {
    font-size: 0.9rem;
    padding-bottom: 2px;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .dish-item {
    font-size: 0.9rem;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .dish-item {
    font-size: 0.9rem;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .dish-item {
    font-size: 1rem;
    padding-bottom: 8px;
  }
}

.resto-body .dish-item span:last-child {
  padding-left: 8px;
  font-weight: 800;
}

.resto-body .resto-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 12px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInBottomBase 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .resto-footer {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 160px;
    height: 100vh;
    justify-content: center;
    padding: 20px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    gap: 20px;
    animation: slideInRightCell 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .resto-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 0;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .resto-footer {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 240px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    gap: 40px;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .resto-footer {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    gap: 50px;
  }
}

.resto-body .footer-info-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .footer-info-group {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .footer-info-group {
    gap: 40px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .footer-info-group {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .footer-info-group {
    gap: 35px;
  }
}

.resto-body .footer-register {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .footer-register {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .footer-register {
    width: auto;
    gap: 15px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .footer-register {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
}

.resto-body .gold-label {
  color: #d4af37;
  font-size: 0.55rem;
  font-weight: 900;
}

.resto-body .white-text {
  color: #fff;
  font-size: 0.55rem;
  display: block;
}

.resto-body .resto-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #d4af37;
  padding: 8px;
  color: #fff;
  font-size: 0.7rem;
  width: 60%;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s ease;
}
.resto-body .resto-input:focus {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (orientation: landscape) and (max-height: 500px) {
  .resto-body .resto-input {
    width: 100%;
    padding: 6px;
    font-size: 0.65rem;
  }
  .resto-body .resto-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
  }
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .resto-input {
    width: 250px;
    padding: 10px;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .resto-input {
    width: 100%;
    padding: 12px;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .resto-input {
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
  }
}

.resto-body .resto-btn {
  background: #d4af37;
  color: #2b0505;
  border: none;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.resto-body .resto-btn:hover {
  background: #fff;
  transform: scale(1.05);
}
@media screen and (min-width: 501px) and (max-width: 1024px) and (orientation: portrait) {
  .resto-body .resto-btn {
    padding: 10px 20px;
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1025px) and (orientation: landscape), screen and (min-width: 769px) and (max-height: 900px) and (orientation: landscape) {
  .resto-body .resto-btn {
    padding: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1281px) {
  .resto-body .resto-btn {
    padding: 15px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s ease;
  }
  .resto-body .resto-btn:hover {
    background: #fff;
    color: #2b0505;
  }
}

body.page-home.no-scroll {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #121212;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
}

.site-header {
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid #e60000;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .site-header {
    padding: 15px 10px;
    z-index: 100;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .site-header {
    padding: 5px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .site-header {
    padding: 20px 30px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .site-header {
    padding: 12px 50px;
  }
}
@media screen and (min-width: 1025px) {
  .site-header {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px 80px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
}

.header-flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header-flex {
    flex-direction: column;
    gap: 12px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
}

.brand {
  text-decoration: none;
}

.brand-text {
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-style: italic;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .brand-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .brand-text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .brand-text {
    font-size: 2.2rem;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .brand-text {
    font-size: 2rem;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .brand-text {
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin: 0;
    transition: text-shadow 0.3s ease;
  }
  .brand-text:hover {
    text-shadow: 0 0 15px rgba(230, 0, 0, 0.8);
  }
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-links {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav-links {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .nav-links {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .nav-links {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
  }
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .nav-links li a {
    font-size: 0.75rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-links li a {
    font-size: 0.6rem;
    padding: 2px 0;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .nav-links li a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .nav-links li a {
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover {
    color: #fff;
  }
}
@media screen and (min-width: 1025px) {
  .nav-links li a {
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  .nav-links li a:hover {
    color: #fff;
    transform: translateY(-2px);
  }
}

.btn-signin {
  color: #e60000;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .btn-signin {
    font-weight: 800;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .btn-signin {
    font-weight: 800;
    padding: 5px 15px;
    border: 1px solid #e60000;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .btn-signin:hover {
    background-color: #e60000;
    color: #fff !important;
  }
}
@media screen and (min-width: 1025px) {
  .btn-signin {
    font-weight: 800;
    padding: 8px 25px;
    border: 2px solid #e60000;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  .btn-signin:hover {
    background-color: #e60000;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
  }
}

main {
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  main {
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  main {
    position: relative;
  }
}
@media screen and (min-width: 1025px) {
  main {
    position: relative;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  #myCarousel,
  .carousel-inner,
  .carousel-item {
    height: 100%;
  }
}
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .carousel-caption {
    bottom: 15%;
    padding: 0 10px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .carousel-caption {
    bottom: 5%;
    padding: 0 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .carousel-caption {
    bottom: 20%;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .carousel-caption {
    display: block;
    position: absolute;
    bottom: 35%;
    left: 5%;
    right: 5%;
    padding: 0 80px;
    z-index: 10;
  }
}
@media screen and (min-width: 1025px) {
  .carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 35%;
    bottom: auto;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    padding: 0;
    z-index: 10;
  }
}

.carousel-caption h1 {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .carousel-caption h1 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .carousel-caption h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 5px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  }
}
@media screen and (min-width: 1025px) {
  .carousel-caption h1 {
    font-size: 3.8rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9);
  }
}

.carousel-caption p {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .carousel-caption p {
    font-size: 0.9rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .carousel-caption p {
    font-size: 0.75rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  }
}
@media screen and (min-width: 1025px) {
  .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
  }
}

.carousel-caption .btn-primary {
  background-color: #e60000;
  border-color: #e60000;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .carousel-caption .btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .carousel-caption .btn-primary {
    font-size: 0.75rem;
    padding: 5px 15px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .carousel-caption .btn-primary {
    font-size: 1.1rem;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
  }
  .carousel-caption .btn-primary:active {
    transform: scale(0.95);
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .carousel-caption .btn-primary {
    font-size: 1rem;
    padding: 10px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  .carousel-caption .btn-primary:hover {
    background-color: #c00000;
    border-color: #c00000;
  }
  .carousel-caption .btn-primary:active {
    transform: scale(0.95);
  }
}
@media screen and (min-width: 1025px) {
  .carousel-caption .btn-primary {
    font-size: 1rem;
    padding: 12px 30px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
  }
  .carousel-caption .btn-primary:hover {
    background-color: #c00000;
    border-color: #c00000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
  }
  .carousel-caption .btn-primary:active {
    transform: scale(0.95);
  }
}

@media screen and (min-width: 1025px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }
}
.site-footer {
  background-color: #000;
  z-index: 100;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .site-footer {
    padding: 15px 0 10px 0;
    text-align: center;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .site-footer {
    padding: 5px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .site-footer {
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .site-footer {
    padding: 10px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .site-footer {
    padding: 15px 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media screen and (min-width: 1025px) {
  .site-footer .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
}
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .social-links {
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .social-links {
    flex-direction: row;
    gap: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .social-links {
    flex-direction: row;
    align-items: center;
    gap: 25px;
  }
}

.social-links img {
  object-fit: contain;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .social-links img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .social-links img {
    width: 16px;
    height: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .social-links img {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .social-links img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 1025px) {
  .social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
}

@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .social-links a:hover img {
    transform: scale(1.2);
  }
}
@media screen and (min-width: 1025px) {
  .social-links a:hover img {
    transform: scale(1.2) translateY(-2px);
    opacity: 1;
  }
}
.copyright-text {
  color: #777;
  margin: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .copyright-text {
    font-size: 0.65rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  .copyright-text {
    font-size: 0.55rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .copyright-text {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  .copyright-text {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .copyright-text {
    font-size: 0.9rem;
    color: #666;
  }
}

.copyright-text a {
  text-decoration: none;
  color: #777;
}
@media screen and (min-width: 1025px) {
  .copyright-text a {
    color: #888;
    transition: color 0.3s ease;
  }
  .copyright-text a:hover {
    color: #fff;
  }
}

.main-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.main-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.brand-tagline {
  position: fixed;
  top: 25px;
  width: 100%;
  text-align: center;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #cfcfcf 0%, #ffffff 50%, #9e9e9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 110;
}

.display-container {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.brand-center-group {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

.brand-identity {
  transform: scale(0.8);
}

.brand-link {
  display: inline-block;
  text-decoration: none;
}

.luxury-title-img {
  height: 105vh;
  width: auto;
  display: block;
  animation: constant-glow 5s infinite ease-in-out;
}

.gold-title-img {
  position: absolute;
  height: 9vh;
  bottom: 70px;
  left: 55%;
  animation: constant-glow 5s infinite ease-in-out;
  animation-delay: 0.5s;
}

.brand-link:hover img {
  filter: brightness(3.5) drop-shadow(0 0 50px rgba(230, 194, 122, 0.9));
  transition: filter 0.5s ease;
}

.main-nav {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  z-index: 120;
  padding: 12px 35px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 3px;
  background: linear-gradient(to bottom, #cfcfcf 0%, #ffffff 50%, #9e9e9e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
}
.main-nav a:hover {
  opacity: 1;
  letter-spacing: 5px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  transform: translateY(-1px);
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  margin: 5px auto 0;
  transition: width 0.5s ease;
}
.main-nav a:hover::after {
  width: 100%;
}

.carousel-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 50;
  width: 350px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-label {
  display: none;
}

.carousel-column:first-child {
  left: 0;
  margin-left: -200px;
}

.carousel-column:last-child {
  right: 0;
  margin-right: -200px;
}

.carousel-wrapper {
  width: 580px;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotateClockwise 45s infinite linear;
}

.carousel-3d.reverse {
  animation: rotateCounterClockwise 45s infinite linear;
}

.carousel-3d figure {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 50%;
  margin-left: -80px;
  margin-top: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d figure img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
  animation: keepUpright 45s infinite linear;
}

.carousel-3d.reverse figure img {
  animation: keepUprightReverse 45s infinite linear;
}

.carousel-3d figure:nth-child(1) {
  transform: rotate(0deg) translateY(-240px) rotate(0deg);
}

.carousel-3d figure:nth-child(2) {
  transform: rotate(36deg) translateY(-240px) rotate(-36deg);
}

.carousel-3d figure:nth-child(3) {
  transform: rotate(72deg) translateY(-240px) rotate(-72deg);
}

.carousel-3d figure:nth-child(4) {
  transform: rotate(108deg) translateY(-240px) rotate(-108deg);
}

.carousel-3d figure:nth-child(5) {
  transform: rotate(144deg) translateY(-240px) rotate(-144deg);
}

.carousel-3d figure:nth-child(6) {
  transform: rotate(180deg) translateY(-240px) rotate(-180deg);
}

.carousel-3d figure:nth-child(7) {
  transform: rotate(216deg) translateY(-240px) rotate(-216deg);
}

.carousel-3d figure:nth-child(8) {
  transform: rotate(252deg) translateY(-240px) rotate(-252deg);
}

.carousel-3d figure:nth-child(9) {
  transform: rotate(288deg) translateY(-240px) rotate(-288deg);
}

.carousel-3d figure:nth-child(10) {
  transform: rotate(324deg) translateY(-240px) rotate(-324deg);
}

.hidden-checkbox {
  display: none;
}

.glass-btn {
  position: fixed;
  z-index: 150;
  padding: 8px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease, letter-spacing 0.3s ease, opacity 0.6s ease;
}
.glass-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 6px;
}

.floating-center-btn {
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  display: inline-block;
}

.floating-right-btn {
  right: 30px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-right-btn img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.sliding-footer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 65px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 115;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  transition: bottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social {
  position: absolute;
  left: 40px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.footer-social a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.8;
  filter: none;
  display: block;
  transition: all 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.footer-social a.tiktok-link img {
  transform: scale(1.2);
  transform-origin: center;
}

.footer-social a.whatsapp-link img {
  transform: scale(0.85);
  transform-origin: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  transform: translateX(180px);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.login-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-wrap: nowrap;
}

.login-form input {
  width: 180px;
  padding: 8px 15px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #000;
  border-radius: 3px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  outline: none;
  transition: border 0.3s;
}
.login-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.login-form input:focus {
  border-color: #000;
}

.hidden-checkbox:checked ~ #login-footer {
  bottom: 0;
}

.hidden-checkbox:checked ~ #btn-ingresar {
  transform: translateX(calc(-50% - 240px));
  background: rgba(240, 240, 240, 0.9);
  color: #000;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 125;
}

.hidden-checkbox:checked ~ #btn-carrito {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.modelos-page {
  background-color: #121212;
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.modelos-page #modelosCarousel {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page #modelosCarousel {
    height: 50vh;
    min-height: 350px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page #modelosCarousel {
    height: 58vh;
    min-height: 240px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page #modelosCarousel {
    height: 55vh;
    min-height: 400px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page #modelosCarousel {
    height: 52vh;
    min-height: 360px;
    max-height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page #modelosCarousel {
    height: 58vh;
    min-height: 420px;
    max-height: 560px;
  }
}

body.modelos-page .carousel-inner,
body.modelos-page .carousel-item {
  height: 100%;
}

body.modelos-page .carousel-item {
  position: relative;
}

body.modelos-page .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

body.modelos-page .carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.modelos-page .carousel-caption {
  z-index: 2;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .carousel-caption {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    padding: 0 10px;
    text-align: center;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .carousel-caption {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    padding: 0 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .carousel-caption {
    bottom: 14%;
    padding: 0 40px;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .carousel-caption {
    bottom: 15%;
    padding: 0 80px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .carousel-caption {
    bottom: 18%;
    max-width: 800px;
    padding: 0 20px;
  }
}

body.modelos-page .carousel-caption .h1 {
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .carousel-caption .h1 {
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .carousel-caption .h1 {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .carousel-caption .h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .carousel-caption .h1 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .carousel-caption .h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
  }
}

body.modelos-page .carousel-caption p {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .carousel-caption p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .carousel-caption p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .carousel-caption p {
    font-size: 1.05rem;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .carousel-caption p {
    font-size: 1.1rem;
  }
}

body.modelos-page main {
  display: block;
  width: 100%;
  background-color: #121212;
}

body.modelos-page .catalog-section {
  position: relative;
  z-index: 3;
  background-color: #121212;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .catalog-section {
    padding: 40px 15px 50px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .catalog-section {
    padding: 35px 15px 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .catalog-section {
    padding: 50px 30px 60px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .catalog-section {
    padding: 60px 40px 70px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .catalog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 20px 90px;
  }
}

body.modelos-page .catalog-title {
  text-align: center;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .catalog-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .catalog-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .catalog-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .catalog-title {
    font-size: 2.2rem;
    margin-bottom: 55px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .catalog-title {
    font-size: 2.8rem;
    margin-bottom: 70px;
    letter-spacing: 2px;
  }
}

body.modelos-page .modelos-category-row {
  display: flex;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .modelos-category-row {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .modelos-category-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .modelos-category-row {
    flex-direction: row;
    align-items: stretch;
    gap: 25px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .modelos-category-row {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .modelos-category-row {
    gap: 40px;
    margin-bottom: 90px;
  }
}

body.modelos-page .category-label-container {
  background-color: #e60000;
  border-radius: 8px;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .category-label-container {
    padding: 12px 14px;
    text-align: center;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .category-label-container {
    padding: 10px 12px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .category-label-container {
    width: 56px;
    padding: 20px 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .category-label-container {
    width: 64px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .category-label-container {
    width: 76px;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .vertical-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .vertical-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .vertical-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .vertical-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

body.modelos-page .vertical-label span {
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .vertical-label span {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .vertical-label span {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .vertical-label span {
    font-size: 0.95rem;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .vertical-label span {
    font-size: 1rem;
    letter-spacing: 3px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .vertical-label span {
    font-size: 1.2rem;
    letter-spacing: 5px;
  }
}

body.modelos-page .category-grid {
  display: grid;
  width: 100%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .category-grid {
    flex-grow: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .category-grid {
    flex-grow: 1;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 28px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .category-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 32px;
  }
}

body.modelos-page .moto-card-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .moto-card-item {
    padding: 24px 16px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .moto-card-item {
    padding: 18px 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-card-item {
    padding: 28px 18px;
    min-height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .moto-card-item {
    padding: 30px 22px;
    min-height: 390px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-card-item {
    padding: 36px 28px;
    min-height: 430px;
    background: #161616;
    border-color: #252525;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-card-item:hover {
    transform: translateY(-6px);
    border-color: #e60000;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.6);
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-card-item:hover {
    transform: translateY(-10px);
    border-color: #e60000;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6), 0 0 18px rgba(230, 0, 0, 0.1);
  }
}
body.modelos-page .moto-title {
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .moto-title {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .moto-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .moto-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}

body.modelos-page .moto-image {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .moto-image {
    max-width: 240px;
    height: 150px;
    margin-bottom: 14px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .moto-image {
    max-width: 180px;
    height: 110px;
    margin-bottom: 12px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-image {
    max-width: 220px;
    height: 130px;
    margin-bottom: 14px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .moto-image {
    max-width: 250px;
    height: 150px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-image {
    max-width: 320px;
    height: 190px;
    margin-bottom: 24px;
    transition: transform 0.45s ease;
  }
}

@media screen and (min-width: 1200px) {
  body.modelos-page .moto-card-item:hover .moto-image {
    transform: scale(1.06);
  }
}
body.modelos-page .moto-brand-logo {
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .moto-brand-logo {
    width: 42px;
    margin-bottom: 14px;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .moto-brand-logo {
    width: 34px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-brand-logo {
    width: 40px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .moto-brand-logo {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-brand-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
}

body.modelos-page .moto-description {
  color: #bbb;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  body.modelos-page .moto-description {
    font-size: 0.88rem;
  }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
  body.modelos-page .moto-description {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.modelos-page .moto-description {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 850px) and (orientation: landscape) {
  body.modelos-page .moto-description {
    font-size: 0.95rem;
  }
}
@media screen and (min-width: 1200px) {
  body.modelos-page .moto-description {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.75;
  }
}

/*# sourceMappingURL=main.css.map */
