/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    color: #fff;
    background: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}
.header,
.header a,
.menu,
.menu a {
    font-family: 'DM Sans', sans-serif;
}
h1 {
    letter-spacing: -0.5px;
}
p {
    line-height: 1.6;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 32px;

    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* fundo ao descer */
.header.scrolled {
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transform: scale(2.38);
    transform-origin: left center;
    margin-top: 10px;
}

.menu a {
    margin: 0 30px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    opacity: 0.9;
    font-weight: 500;
}

.menu a:hover {
    opacity: 1;
}

.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* ================= HERO ================= */
.hero {
    height: 100vh;
    position: relative;

    /* layout editorial correto */
    display: grid;
    grid-template-columns: 1fr minmax(0, 1100px) 1fr;
    align-items: center;

    overflow: hidden; /* importante para o carrossel */
}

/* ================= SLIDES ================= */
.slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ================= OVERLAY ================= */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25)
    );
    z-index: 1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
    grid-column: 2;
    z-index: 2;

    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* badge */
.badge {
    display: inline-block;
    margin-bottom: 26px;
    padding: 8px 22px;

    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;
}

/* title */
.hero-content h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 22px;
    color: #fff;
}

/* subtitle */
.hero-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 38px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= HERO ARROWS ================= */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    width: 52px;
    height: 52px;

    border-radius: 50%;
    border: none;

    background: rgba(0,0,0,0.4);
    color: #fff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0,0,0,0.65);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.btn {
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}

/* primary */
.btn.primary {
    background: #6ea834;
    color: #fff;
}

.btn.primary:hover {
    background: #5f962d;
}

/* secondary */
.btn.secondary {
    border: 1px solid rgba(255,255,255,0.7);
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* ================= SCROLL ANIMATION ================= */

/* estado inicial */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

/* quando visível */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.svg-icon svg {
    width: 28px;
    height: 28px;

    stroke: #ffffff;
    stroke-width: 1.8;
    fill: none;

    /* ícone VISÍVEL por padrão */
    stroke-dasharray: 100;
    stroke-dashoffset: 0;

    transition:
        transform 0.35s ease,
        stroke 0.35s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1.15); }
}

.feature-card:hover .svg-icon svg {
    animation: iconPulse 0.35s ease forwards;
}

.logo-desktop {
    display: block;
}

.logo-mobile {
    display: none;
}

.slides-desktop { display:block; }
.slides-mobile { display:none; }
.motos-section {
    background: #0f0f0f;
    padding: 80px 0;
    color: #fff;
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #9a9a9a;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
}

.motos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.moto-card {
    background: #ffffff;
    color: #000;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.moto-image {
    height: 220px;            
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
}

.moto-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;       
    transition: transform 0.4s ease;
}

.moto-card:hover .moto-image img {
    transform: scale(1.06);
}

.moto-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 16px;
}

.moto-info h3 {
    font-size: 18px;
    margin: 0;
}

.moto-info p {
    font-size: 13px;
    color: #666;
}

.moto-price {
    color: #7ba43a;
    font-weight: 700;
}

.moto-price small {
    font-size: 12px;
    color: #777;
}

.moto-content {
    margin-top: 18px;
    flex-grow: 1;
}

.moto-content h3 {
    font-size: 18px;
    margin: 0;
}

.moto-content p {
    font-size: 13px;
    color: #666;
    margin: 4px 0 12px;
}

.btn-book {
    margin-top: 16px;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.road-section{
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 0; /* se quiser arredondar depois */
}

/* “background” via picture */
.road-media{
position:absolute;
inset:0;
z-index:1;
}

.road-media img{
width:100%;
height:100%;
object-fit:cover;      /* comportamento de background */
object-position:center;
display:block;
}

/* overlay escuro */
.road-overlay{
position:relative;
z-index:2;
height:100%;
display:flex;
align-items:center;
background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 100%
);
}
  
.road-label{
font-size:12px;
letter-spacing:2px;
color:#cfcfcf;
text-transform:uppercase;
}

.road-title{
font-size:48px;
font-weight:700;
color:#fff;
margin:14px 0;
line-height:1.1;
}
  
.road-text{
    max-width:520px;
    font-size:16px;
    color:#e5e5e5;
    margin-bottom:28px;
}

.road-btn{
    display:inline-block;
    background:#fff;
    color:#000;
    padding:14px 26px;
    border-radius:14px;
    font-weight:600;
    text-decoration:none;
    transition:all .25s ease;
}

.road-btn:hover{ background:#eaeaea; }

.site-footer {
    background: #183f33;
    color: #e6ece9;
    padding: 60px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
    gap: 40px;
}

/* LOGO */
.footer-logo {
    height: 80px;
    width: auto;
    transform: scale(2.15); 
    margin-top: -10px;
    margin-left: 60px;
}

.footer-text {
    max-width: 280px;
    color: #cfdad6;
}

/* TITLES */
.site-footer h4 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #ffffff;
}

/* NEWSLETTER */
.newsletter-form {
    border-bottom: none;
    margin-bottom: 10px;
}

.newsletter-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 6px;
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    padding: 8px 0;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.newsletter-message {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 14px;
    border-radius: 8px;
    text-align: center;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition: 
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.3s ease,
        margin 0.3s ease;
}

.newsletter-message.show {
    max-height: 80px; /* suficiente para 2 linhas */
    opacity: 1;
    padding: 10px 14px;
    margin-bottom: 12px;
}

.newsletter-message.success {
    background-color: rgba(245, 197, 66, 0.1);
    color: #f5c542;
    border: 1px solid rgba(245, 197, 66, 0.4);
}

.newsletter-message.error {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
}

.footer-newsletter .newsletter-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-newsletter .newsletter-row input {
    flex: 1;
    width: auto;
}

.footer-newsletter .newsletter-row button {
    width: auto;
}

.footer-newsletter .newsletter-consent {
    margin-top: 12px;
    font-size: 0.8rem;
    opacity: 0.8;
    float: inline-start;
}

.footer-newsletter .newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.footer-newsletter .newsletter-consent a,
.footer-newsletter .newsletter-consent a:visited,
.footer-newsletter .newsletter-consent a:hover,
.footer-newsletter .newsletter-consent a:active {
    color: #f5c542;
    text-decoration: none;
}

.footer-newsletter small a {
    color: #b9c9c2;
    font-size: 12px;
}

/* LINKS */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer ul a {
    color: #cfdad6;
    text-decoration: none;
}

.site-footer ul a:hover {
    color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 20px 0;
    font-size: 12px;
    color: #b9c9c2;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.testimonials-section {
    background: #f6f7f6;
    padding: 100px 0;
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-badge {
    display: inline-block;
    background: #e7ece9;
    color: #1f3d2b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

.testimonials-title {
    font-size: 38px;
    font-weight: 700;
    color: #1f3d2b;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header strong {
    display: block;
    font-size: 15px;
    color: #111;
}

.testimonial-header span {
    font-size: 13px;
    color: #777;
}

.testimonial-stars {
    color: #f5b400;
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.modal-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,.75);
    display:none; align-items:center; justify-content:center;
    z-index:3000; padding:24px;
}

.modal-overlay.is-open{ display:flex; }

.modal-content{
    width: min(680px, 94vw);   /* MAIS LARGA */
    max-height: 90vh;
    overflow-y: auto;
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    box-shadow:0 30px 90px rgba(0,0,0,.65);
    padding:24px;
    position:relative;
    text-align:center;
}

.modal-content img{
    width:100%;
    max-height:60vh;
    object-fit:contain;
    border-radius:18px;
    margin-bottom:22px;
}

.modal-content h2{
    margin:6px 0 10px;
    font-size:1.8rem;
}

.modal-sub{
    font-size:1rem;
    opacity:.85;
    margin-bottom:6px;
}

.modal-highlight{
    font-size:1.05rem;
    margin-bottom:20px;
}
  
.modal-close{
    position:absolute; top:10px; right:12px;
    width:42px; height:42px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(0,0,0,.35);
    color:#fff; font-size:26px;
    cursor:pointer;
}

.modal-actions{
    display:flex; gap:10px;
    justify-content:center; flex-wrap:wrap;
}

.modal-btn{
    padding:12px 18px;
    border-radius:10px;
    background:#f5c542;
    color:#000; font-weight:700;
    text-decoration:none;
    border:none; cursor:pointer;
}

.modal-btn.secondary{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
}

.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
    background: rgba(245,197,66,0.2);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.guarantee-section {
    background: #111;
    padding: 100px 0;
    color: #fff;
}

.guarantee-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7ba43a;
}

.guarantee-header h2 {
    font-size: 42px;
    margin-top: 10px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.guarantee-item {
    background: #1b1b1b;
    padding: 28px;
    border-radius: 18px;
    transition: all 0.3s ease;
    text-align: center;
}

.guarantee-item:hover {
    transform: translateY(-6px);
    background: #232323;
}

.g-icon svg {
    width: 32px;
    height: 32px;
    stroke: #7ba43a;
    stroke-width: 1.8;
    fill: none;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.guarantee-item:hover .g-icon svg {
    transform: scale(1.15);
    stroke: #ffffff;
}

.guarantee-item.highlight .g-icon svg {
    stroke: #ffffff;
}

.guarantee-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 14px;
    opacity: 0.8;
}

.guarantee-item.highlight {
    background: linear-gradient(135deg, #6ea834, #4d7f22);
    color: #fff;
}

.guarantee-item.highlight p {
    opacity: 0.95;
}

.italy-experience {
    background: #ffffff;
    color: #1a1a1a;
    padding: 120px 0;
}

.italy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.italy-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6ea834;
}

.italy-text h2 {
    font-size: 46px;
    margin: 14px 0 22px;
    line-height: 1.1;
}

.italy-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
    max-width: 520px;
}

.italy-btn {
    display: inline-block;
    margin-top: 10px;
    background: #6ea834;
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}

.italy-btn:hover {
    background: #5c922c;
    transform: translateY(-2px);
}

.italy-visual img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #111;
    z-index: 5001;
    transition: right .35s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    padding: 26px 26px 110px; 
  }

.mobile-menu.active {
    right: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
}

.mobile-menu a {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 54px;
  }

.mobile-menu-logo {
    height: 40px;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu.active ~ .menu-toggle {
    display: none;
}

.mobile-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mobile-links a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 650;
}

.mobile-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f5c542;
    transition: 0.3s ease;
}

.mobile-links a:hover::after {
    width: 100%;
}

.mobile-language {
    margin-top: auto;
}

.mobile-language select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 14px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 5000;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* OVERLAY */
  #cookie-banner {
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
/* BANNER */
#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #111;
    border-radius: 14px;
    padding: 24px 32px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: fadeInUp 0.4s ease;
}

/* CONTENT FLEX */
.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
}

#cookie-banner a {
    color: #00c853;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

/* BUTTONS */
.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: #00c853;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #00a844;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #222;
}

/* ANIMATION */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ===== BOTÕES DEFINITIVOS MOTO ===== */

.moto-actions {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.moto-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

/* Scopri */
.moto-btn-secondary {
    background: #f3f3f3;
    color: #111;
    border-color: #e0e0e0;
}

.moto-btn-secondary:hover {
    background: #e9e9e9;
}

/* Prenota */
.moto-btn-primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.moto-btn-primary:hover {
    background: #000;
}

.italy-experience {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.italy-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.italy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.25)
    );
    z-index: 1;
}

.italy-grid {
    position: relative;
    z-index: 2;
}

.italy-text {
    color: #fff;
    max-width: 650px;
}

.motos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.rental-badge {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.footer-contact {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact a {
    color: #f5c542;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-wrapper img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1500px) {
    .logo img {
        height: 50px;
        margin-top: 14px; 
    }
}

@media (min-width: 1200px){
    .modal-content{
      width: 760px;
    }
    .italy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .italy-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .italy-visual {
        margin-top: 40px;
    }
  }

  
@media (max-width: 1024px) {
    .logo img {
        height: 50px;
        margin-top: 14px; 
        margin-left: -30px;
    }
    .menu {
        display: none;
    }
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 992px) { 
    .logo img {
        height: 50px;
        margin-top: 14px; 
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 18px;
    }

    .logo {
        align-items: flex-start;
    }

    .logo img {
        height: 70px;
        margin-top: 14px; 
        margin-left: -15px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 42px;
    }

    .menu-toggle {
        display: block;
    }

    .slides-desktop { display:none; }
    .slides-mobile { display:block; }


    .hero {
        grid-template-columns: 1fr;  
        justify-items: center;       
        align-items: center;          
        text-align: center;
    }

    .hero-content {
        grid-column: auto;            
        margin-top: 0;                
        padding: 0 20px;
    }


    .hero-content h1 {
        font-size: 42px;
    }

    .hero-arrow {
        display:none;
    }

    .motos-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px; 
    }

    .motos-grid {
        grid-template-columns: 1fr; 
        gap: 24px;
    }

    .moto-card {
        border-radius: 20px;
    }

    .moto-image {
        height: 240px;
    }

    .road-section{ height:620px; }
    .road-title{ font-size:34px; }
    .road-text{ font-size:15px; }

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

    .footer-logo {
        height: 60px;
        transform: scale(2.45);
        margin-top: -39px;
        margin-left: 40px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 22px;
    }
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-header h2 {
        font-size: 28px;
    }
    .actions { display: none; } 

    .italy-experience {
        padding: 80px 0;
    }

    .italy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
  
    .italy-text {
        margin: 0 auto;
        max-width: 480px;
    }
  
    .italy-text h2 {
        font-size: 34px;
        line-height: 1.15;
    }
  
    .italy-text p {
        margin-left: auto;
        margin-right: auto;
    }
    #cookie-banner {
        top: 70%;
    }
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }

}


@media (max-width: 600px) {
    .footer-logo {
        height: 60px;
        transform: scale(1.95);
        margin-top: -39px;
        margin-left: 29px;
        margin-bottom: 10px;
    }
}