@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;1,400&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #18181b;
    color: #fff;
    min-height: 100vh;
    padding-top: 80px; /* igual o mayor que la altura del header */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  box-sizing: border-box;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 600px; /* Limita el ancho total del grupo */
}

.main-nav a,
.language-switcher a {
  padding: 8px 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.main-nav a {
  color: #6ca6a8;
}

.main-nav a:hover {
  background-color: #6ca6a8;
  color: #18181b;
}

.language-switcher a {
  color: #aaa;
  border: 1px solid #aaa;
}

.language-switcher a:hover {
  background-color: #6ca6a8;
  color: #18181b;
  border-color: #6ca6a8;
}


@font-face {
    font-family: 'TheBeast';
    src: url('Fonts/TheBeast.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'WoodBlock';
    src: url('Fonts/Wood\ Block\ CG\ Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


.contact-section {
    background-color: #18181b;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-section p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #a0a0a0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Inter', sans-serif;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.contact-form button {
    padding: 12px;
    background-color: #6ca6a8;
    color: #000;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form button:hover {
    background-color: #6ca6a8;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.3em;
    letter-spacing: 1px;
    color: #fff;
}

.logo span {
    font-family: 'TheBeast', sans-serif !important;
    color: #ccc !important;
    font-size: 2em;
    letter-spacing: 0.15em;
    position: relative;
    top: 10px;
}

.logo img {
    height: 70px;
    box-sizing: border-box;
}


.hero {
    text-align: center;
    padding: 18px 0 10px 0;
    background: #6ca6a8;
    border-bottom: 5px solid #18181b;
}
.hero h1 {
    font-size: 2.2em;
    font-weight: 900;
    letter-spacing: 2px;
    color: #18181b;
    margin: 0;
    color: #18181b;
}
.hero p {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: bold;
    font-size: 1.1em;
    color: #18181b;
    margin-top: 6px;
}


.livery-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 auto;
    max-width: 1600px;
}

.livery-row {
    display: flex;
    width: 100%;
    min-height: 320px;
    background: #18181b;
    border-bottom: 2px solid #232326;
}

.livery-img-col {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: #222;
    /* ...existing code... */
}

.livery-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 340px;
    display: block;
}

.sticker-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1f565b;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    letter-spacing: 0.15em;
    z-index: 2;
    pointer-events: none;
}

.sticker-nuevo {
    position: absolute;
    top: 0;
    right: 0;
    background: #ad2422;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 7px 22px 7px 22px;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0.15em;
    z-index: 2;
    pointer-events: none;
    text-transform: uppercase;
}

.livery-info-col {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #18181b;
    color: #fff;
    text-align: center;
    padding: 0 40px;
}

.livery-info-col h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: 1px;
}

.package-label {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    display: block;
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 32px;
    margin-top: 0;
    letter-spacing: 1px;
}


.download-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 48px;
    border-radius: 0;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-top: 18px;
}
.download-btn:hover, .download-btn:focus {
    background:#6ca6a8;
    color: #181818;
    border-color: #6ca6a8;
}

footer {
    text-align: center;
    padding: 1px 0 1px 0;
    color: #181818;
    font-size: 1.1em;
    background: #fff;
    letter-spacing: 2px;
    opacity: 0.7;
    border-top: 5px solid #181818;
    font-family: 'Inter', sans-serif;
}


