
.moto {padding: 10px 4px;
        line-height: 20px;}

@media (min-width: 1024px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* Grid com 2 colunas para apps.html e tours.html */
.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
/* Agrupa link e separador para evitar quebra isolada */
.footer-link-group {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.footer-link-group:last-child .footer-sep {
    display: none;
}
/* Footer separator: impede quebra de linha e mantém alinhado */
.footer-sep {
    display: inline-block;
    margin: 0 0.4em;
    -webkit-user-select: none;
    user-select: none;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .footer-links {
        flex-wrap: wrap;
    }
    .footer-sep {
        white-space: nowrap;
        margin: 0 0.4em;
        display: inline-block;
        /* Garante que o separador nunca fique sozinho */
    }
}
/* Footer links: impede quebra de palavras e mantém links juntos */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    justify-content: center;
    align-items: center;
}
.footer-links a {
    white-space: nowrap;
}
.footer-links a:last-child {
    margin-left: auto;
}
@media (max-width: 600px) {
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .footer-links a:last-child {
        flex-basis: 100%;
        margin-left: 0;
        margin-top: 0.5em;
    }
}
/* Oculta elementos (ex: modais) */
.hidden {
    display: none !important;
}
/* Evita quebra de linha nos hashtags */
.nowrap {
    white-space: nowrap;
}
/* Substitui white-space:nowrap inline dos hashtags */
.nowrap {
    white-space: nowrap;
}
/* Substitui estilos inline dos hashtags-capsules */
.hashtag-capsule {
    white-space: nowrap;
    font-size: 17px;
    color: #666;
    font-weight: 500;
    margin-right: 12px;
    display: inline-block;
}
/* Substitui white-space:nowrap inline dos hashtags */
.nowrap {
    white-space: nowrap;
}
/* Ícones de descrição (material-symbols-outlined) */
.icon-desc {
    vertical-align: middle;
    font-size: 1.3em;
    margin-right: 6px;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.main-container {
    width: 100%;
    padding-top: 10px;
}
.header {
  width: 100%;
}

/* Modais de contacto (CTA e Footer) */
.modal-title {
    color: var(--color-primary-blue);
    font-size: 1.18em;
    font-weight: normal;
    margin-bottom: 12px;
    text-align: left;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.contact-email {
    margin-top: 0;
    margin-bottom: 8px;
}
.email-link {
    color: var(--color-primary-blue);
    text-decoration: underline;
}
.phone-link {
    text-decoration: none;
}
.modal-send-btn {
    background: var(--color-primary-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 6px;
    text-align: center;
    transition: background 0.2s;
    height: 42px;
}
.modal-msg {
    color: green;
    font-size: 0.95em;
    margin-top: 6px;
    display: none;
}
.modal-overlay, .modal-contact, .modal-contact * {
    color: initial;
    text-align: initial;
}
.modal-contact {
    color: #222;
    text-align: left;
}
.modal-contact h2 {
    color: var(--color-primary-blue) !important;
    text-align: left !important;
}
.modal-contact .contact-info {
    color: #222;
    text-align: left;
}
.modal-contact input, .modal-contact textarea {
    color: #222;
}
.modal-contact a {
    display: flex;
  align-items: stretch;
  height: 42px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  text-decoration: none;
}


/* Usado na politicas de privacidade e termos de uso*/
/* Garante que os bullets dos <li> fiquem alinhados verticalmente com o início do texto */
    .docs-section {
        padding-top: 20px;
        margin: 0 auto;
        max-width: 900px;}
    .docs-section ul {
        list-style-position: outside;
        padding-left: 1.5em;
    }
    .docs-section ul li {
        text-indent: 0;
        padding-left: 0.2em;
        margin-bottom: 0.7em;
        display: list-item;
    }
    .docs-section ul li {
        /* bullets sempre à esquerda, texto recua nas linhas seguintes */
        list-style-type: disc;
        overflow-wrap: break-word;
        word-break: break-word;
    }

/* --- Footer --- */
.site-footer {
    background: #222;
    color: #fff;
    padding: 32px 0 18px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 1.05em;
}
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-brand {
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links {
    margin: 8px 0;
}
.footer-links a {
    color: #fff;
    text-decoration: underline;
    margin: 0 4px;
    font-size: 0.98em;
}
.footer-links a:hover {
    color: #ffd700;
}
.footer-social {
    margin: 8px 0 0 0;
}
.footer-social a {
    color: #fff;
    margin: 0 8px;
    font-size: 1.4em;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #ffd700;
}
.footer-copy {
    margin-top: 10px;
    font-size: 0.93em;
    color: #bbb;
}
/* Logo no header junto ao texto */
.logo-img {
    height: 2.2em;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 3px;
}
/* --- Badges das Lojas (Play Store & App Store) --- */
.store-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.store-badges a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 90vw;
    text-decoration: none;
}
.store-badges img {
    width: auto;
    max-width: 100%;
    height: 70px;
    max-height: 70px;
    display: block;
    object-fit: contain;
}

@media (min-width: 480px) {
    .store-badges {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2px;
        margin-bottom: 0px;
    }
    .store-badges a {
        width: 50%;
        min-width: 200px;
        max-width: 320px;
    }
    .store-badges img {
        width: 100%;
        min-width: 120px;
        max-width: 320px;
        height: 60px;
        max-height: 60px;
    }
}

body {
    /* font-family: 'Poppins', Arial, sans-serif; */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: #f8f8f8;
}

/* Variáveis CSS */
:root {
    --color-primary-blue: #0072CE;
    --color-cta-red: #e74c3c;
    --color-text-dark: #333;
    --color-text-secondary: #777;
    --color-border-light: #ddd;
    --border-radius-default: 8px;
    --box-shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {color:var(--color-text-dark);}
    .hero-content p {color: var(--color-primary-blue);}

.section-title {    
    padding-bottom: 17px;
    text-align: center;}  
    
.card-footer {
    margin-top: auto;  /* O segredo: ocupa todo o espaço livre acima dele */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0px;
}

/* Garante que as margens padrão dos parágrafos não estraguem o alinhamento */
.card-footer p {
    margin: 0;
}    
.price strong {
    color: var(--color-cta-red); /* Exemplo de uma cor de destaque, como laranja */
    font-size: 1.1em;
    font-weight: normal;
}

.ideal-para {
    line-height: 20px;
    margin-top: auto;
    align-self: flex-end;
    width: 100%;
}

.hashtags-capsules {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0px 12px;
    margin: 4px 8px;
    overflow: hidden;
}

.hashtag {
    font-size: 17px;
    color: #6f6f6f; /* Cor neutra para não competir com o CTA */
    font-weight: 500;
}

.btn-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}
/* Modal de Contacto */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    transition: opacity 0.2s;
}
.modal-contact {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 24px 24px 24px;
    max-width: 95vw;
    width: 460px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: modalIn 0.2s;
}
@keyframes modalIn {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: none; opacity: 1; }
}
.modal-contact h2 {
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--color-primary-blue);
    font-weight: normal;
}
.modal-contact .close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.modal-contact .close-modal:hover {
    color: var(--color-primary-blue);
}
.modal-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.modal-contact .contact-info button {
    margin-left: 8px;
    padding: 2px 10px;
    font-size: 0.95em;
    border-radius: 6px;
    border: 1px solid var(--color-primary-blue);
    background: #f8f8f8;
    color: var(--color-primary-blue);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.modal-contact .contact-info button:hover {
    background: var(--color-primary-blue);
    color: #fff;
}
.modal-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modal-contact input[type="email"],
.modal-contact textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    resize: vertical;
}
.modal-contact textarea {
    min-height: 60px;
    max-height: 180px;
}
.modal-contact button[type="submit"] {
    background: var(--color-primary-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
    text-align: center;
}
.modal-contact button[type="submit"]:hover {
    background: #005bb5;
}
/* Carousel styles */
.carousel {
    position: relative;
    width: 100%;
    margin: 0 auto 24px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery .carousel {
    max-width: 100%;
}

.gallery img, .card-image img,
.gallery .carousel-image {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-default);
}
/*  O contentor (a moldura 16:9) */
.product-card .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;      /* Define o rácio fixo */
    overflow: hidden;          /* Corta o que sobrar da imagem */
    flex-shrink: 0;
    display: block;
}

/* Precisamos que o link ocupe todo o espaço da div 16:9 */
.product-card .card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card .card-image img 
    {   width: 100% !important;
        height: 100% !important;   /* Obriga a imagem a ter a altura do rácio */
        object-fit: cover;         /* Faz o crop inteligente para não esticar */
        display: block;
        transition: transform 0.5s ease;
        border-radius: var(--border-radius-default) var(--border-radius-default) 0 0;}


.carousel-images {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    overflow: hidden;
    position: relative;
    display: block;
}

.carousel-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s;
    position: absolute;
    left: 0;
    top: 0;
}
.carousel-image.active {
    opacity: 1;
    position: relative;
}

/* Carousel Button Component */
/* Correção da Centralização Geométrica que discutimos antes */
.carousel-btn {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid transparent;
    border-radius: 50%; /* Círculo perfeito */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--color-primary-blue);
}

.carousel-btn .arrow {
    width: 14px; /* Ajustado para harmonia visual */
    height: 14px;
    border-top: 3px solid rgba(255, 255, 255, 0.7);
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    /* Removidos os margins fixos para usar o flex do pai */
}

.carousel-btn.prev .arrow {
    transform: rotate(-135deg) translateX(-2px); /* Ajuste fino de centro de massa */
}

.carousel-btn.next .arrow {
    transform: rotate(45deg) translateX(-2px);
}

.carousel-btn.prev {
    left: 10px;
}
.carousel-btn.next {
    right: 10px;
}
.carousel-btn:hover {
    background: #0071eb78;
    color: #fff;
}

.carousel-markers {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
}
.carousel-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border-light);
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-marker.active {
    background: var(--color-primary-blue);
}


/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px; /* Padding para evitar que o conteúdo cole nas bordas em telas menores */
}

/* --- Header (Mobile First) --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 10px;
    background-color: #f8f8f8;
    color: rgb(0, 0, 0);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    z-index: 1100;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: rgb(0 164 0);
    letter-spacing: 2px;
    
}

.hero-content {text-align: center}
.hero-content h1 {
    font-size: 21px;
    text-transform: uppercase;
    line-height: 1.1;
    padding-bottom: 4px;
    display: inline-block;
    transform: scaleY(1.3);
}
.hero-content p {
    font-size: 21px;
    line-height: 1.2;}

.main-nav {
    display: none; /* Oculto por padrão no mobile */
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: #777777;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}


/* Active page link */
.nav-list a.active {
    color: black;
    font-weight: bold;
}


.nav-list a:hover {
    color: var(--color-primary-blue);
}

.menu-toggle {
    background: none;
    border: none;
    color: rgb(138,138,138);
    font-size: 1.5rem;
    cursor: pointer;
    display: block; /* Visível no mobile */
}

/* Menu de navegação (aparece no mobile quando ativo) */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%; /* Abaixo do header */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--box-shadow-light);
}

.main-nav.active .nav-list {
    flex-direction: column;
    padding: 10px 0;
}

.main-nav.active .nav-list li {
    padding: 10px 20px;
}

.main-nav.active .nav-list a {
    display: block;
    width: 100%;
}

/* --- Seletor de Idioma (Dropdown) --- */
.language-item.dropdown {
    position: relative;
    display: flex;
    flex-direction: column; /* No mobile, empilha verticalmente */
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 10px 0;
}

/* Submenu de idiomas */
.dropdown-menu {
    display: none; /* Escondido por padrão */
    list-style: none;
    padding-left: 20px; /* Recuo para parecer sub-item no mobile */
    background-color: rgb(255, 255, 255);
    border-radius: var(--border-radius-default);
}

.dropdown-menu li a {
    display: block;
    color: #777777;
    text-decoration: none;
    padding: 8px 0;
    font-size: 0.85rem;
}

/* Mostra o menu quando a classe .active for adicionada pelo JS (Mobile) */
.language-item.dropdown.active .dropdown-menu {
    display: block;
}


/* --- Main Content Layout (Mobile First) --- */
.main-content {
    display: flex;
    flex-direction: column; /* Coluna única por padrão */
    gap: 8px;
    padding: 0 0;
}

/* --- Seção de Grids ---INDEX page */
.grid-section {
    padding: 20px 0;
}

.product-grid {
    display: grid;
    gap: 24px;
    /* O navegador cria quantas colunas couberem com no mínimo 280px cada */
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 24px;
}

.subtitle {
    color:var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 21px;
    text-align:center;}

/* --- Gallery Section ---PRODUCT pages */
.gallery {
   /* background-color: #fff;*/
    padding: 20px 0px;
    border-radius: var(--border-radius-default);
    /*box-shadow: var(--box-shadow-light);*/
}

.gallery-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    line-height: 28px;
    text-align: center;
}


.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    font-weight: normal;
    text-align: center;
}

.photo-grid {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.photo-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-default);
    object-fit: cover; /* Para garantir que as imagens cubram o espaço */
}

/* No mobile, as side-images também se empilham */
.photo-grid .side-images {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    padding: 0 10px;
}

/* --- Booking Card (Mobile First) --- */
.booking-card {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius-default);
    box-shadow: var(--box-shadow-light);
    top: 63px;

}

.booking-card h3 {
    font-size: 1.3rem;
    margin-top: 15px;
    color: #333333;
}

.booking-card p {
    line-height:1.5rem;
    font-size: 1.1rem;
  /*  color: var(--color-text-secondary);  */
}

.booking-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary-blue);
    text-align:center;
}

.cta-button {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 12px 20px;
    background-color: var(--color-cta-red);
    color: white;
    border: none;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    z-index: 1001;
}

.cta-button:hover {
    background-color: #c0392b; /* Tom mais escuro de vermelho */
}

/* --- Description Article --- */
.description {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius-default);
    box-shadow: var(--box-shadow-light);
}

.description h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.description p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* --- Estilo dos Cards (Inspirado no modelo) --- */
.product-card {
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--box-shadow-light);
}

.card-image {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: block;
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image:hover img {
    transform: scale(1.12);
}

.category {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-info h3 {
    margin: 6px 0 0;
    color: var(--color-text-dark);
    line-height: 1;
   font-size: 28px;
   white-space: nowrap;
   text-align: center;
   }

   /* Nova classe de redução */
.font-smaller {
    letter-spacing: 0.1px;
    font-size: 22px !important;
}

.card-info  {
    display: flex;
    flex-direction: column;
    flex-grow: 1;      /* Ocupa todo o espaço vertical restante no card */
    min-height: 175px; /* Mantém a tua altura mínima */
    padding: 0px 6px 1px 6px;
}

.details {
    color: #666;
    margin-bottom: 0px;
    font-size: 20px;
}

.booking-card .price {
    margin-top: auto; /* Empurra o preço para o rodapé do card */
    padding-top: 10px;
    font-size: 22px;
}

    /* Primeira coluna (conteúdo principal) */
    .gallery {
        grid-column: 1 / 2; /* Ocupa a primeira coluna */
    }

    .photo-grid {
        display: block;
        width: 100%;
    }

    .photo-grid .main-image {
        grid-row: 1 / span 2; /* Ocupa duas linhas */
        height: 100%; /* Garante que a imagem principal se estique */
    }

    .photo-grid .main-image img {
        height: 100%;
    }

    .photo-grid .side-images {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }


    .description {
        grid-column: 1 / 2; /* Ocupa a segunda coluna */
        /* Pode ser necessário ajustar o margin-top se o booking-card for muito alto */
    }


    /* Ordem de empilhamento vertical na segunda coluna */
    .main-content > .booking-card {
        order: 1; /* booking-card primeiro na coluna 2 */
    }
    .main-content > .description {
        order: 2; /* description segundo na coluna 2 */
    }

    /*MEDIA QUERIES */
    /* Responsividade de Colunas */
@media (min-width: 600px) {

    .header {
        position: sticky !important; /* Garante que ele fique fixo no topo */
        top: 0 !important;
        transform: translateY(0) !important; /* Força o header a ficar visível, ignorando o JS */
        transition: none; /* Opcional: remove a transição se não quiser animação ao redimensionar */
    }
   
    .main-container {padding:30px 0  10px}

    .hero-banner {padding-bottom:20px}

    .hero-content h1 {font-size:35px}
    .hero-content p {font-size:20px}

    .gallery {
        padding: 28px;
    }


    .cta-button {
        position: static; /* Volta para o fluxo normal dentro do aside */
        width: 100%;
        margin-top: 10px; /* Espaço opcional acima do botão dentro do card */
        box-shadow: none; /* Remove a sombra de destaque do modo sticky */
        border-radius: 25px;  
        /* Garante que as propriedades visuais originais se mantenham */
        height: 50px;
        padding: 12px 20px;
        font-size: 1.4rem;
    }

    .card-info h3 {
    margin: 6px 0 0;
    color: var(--color-text-dark);
    line-height: 1;
    font-size: 22px;
    white-space: nowrap;
    text-align: center;
   }

   /* Nova classe de redução */
    .font-smaller {
        letter-spacing: 0.1px;
        font-size: 18px !important;
        padding-top: 3px;
    }

    .subtitle { font-size: 20px;}

    .details {font-size: 18px;}
    .price {font-size: 18px;}

    section.contact-page .btn-group{max-width:560px}

    section.contact-page {max-width:562px; margin: 0 auto;}

    .modal-send-btn {max-width:560px}
}


/* --- Desktop Styles (Media Query) --- */

@media (min-width: 1024px) {

        .product-grid {
        grid-template-columns: repeat(3, 1fr);
        }
        .header {
            padding: 12px 10px;
        }

        .hero-content h1 {font-size:50px}
        .hero-content p {font-size:25px}

        .main-nav {
            display: block; /* Visível no desktop */
        /* position: ;  */
            top: auto;
            left: auto;
            width: auto;
            background-color: transparent;
            box-shadow: none;
        }

        .main-nav .nav-list {
            flex-direction: row;
            padding: 0;
        }
        
        .main-nav .nav-list li {
            padding: 0;
        }

        .menu-toggle {
            display: none; /* Oculto no desktop */
        }

        .main-container {padding:30px 6px 10px}

        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr; /* Duas colunas para desktop */
            gap: 8px;
            padding: 4px 6px 24px;
        }

        .language-item.dropdown {
            flex-direction: row;
            align-items: center;
        }

        .dropdown-toggle {
            color: var(--color-text-dark);
            padding: 0;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: var(--box-shadow-light);
            min-width: 100px;
            padding: 10px;
            border: 1px solid var(--color-border-light);
            display: none; /* Volta a esconder para o hover funcionar */
        }

        .dropdown-menu li a {
            color: var(--color-text-secondary);
        }

        .dropdown-menu li a:hover {
            color: var(--color-primary-blue);
        }

        /* No Desktop, o dropdown aparece ao passar o rato (Hover) */
        .language-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        .booking-card {
            grid-column: 2 / 3; /* Ocupa a segunda coluna */
            position: sticky; /* Sticky no desktop */
            top: 75px;
            align-self: start; /* Fixa no topo da sua área no grid */
        }

        .grid-section {
            padding: 40px 0;
        }

        .section-title {    
            padding-bottom: 35px;   
        
    } 
}

/* Estilo moderno para section.contact-page (apenas página de contato) 
section.contact-page {
  border-radius: 12px;
  max-width: 660px;
  margin: 36px auto 0 auto;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section.contact-page .modal-title {
  font-size: 1.5em;
  color: var(--color-primary-blue);
  margin-bottom: 12px;
  text-align: left;
}
section.contact-page .contact-info {
  margin-bottom: 10px;
}
section.contact-page .contact-row-page {
  gap: 10px;
  font-size: 1.5em;
}
section.contact-page .contact-email {
  font-size: 1.5em;
}
section.contact-page .btn-group button, section.contact-page .btn-group a button {
  background: var(--color-primary-blue);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 1em;
  cursor: pointer;
  margin-left: 2px;
  transition: background 0.2s;
}
section.contact-page .btn-group button:hover, section.contact-page .btn-group a button:hover {
  background: #005fa3;
}
section.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
section.contact-page input[type="email"],
section.contact-page textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.4em;
  border: 1px solid var(--color-border-light) !important;
  border-radius: 5px;
  background: #fff;
  padding: 8px 10px;
}
section.contact-page .modal-send-btn {
  width: fit-content;
  align-self: flex-end;
  font-size: 1.5em;
  padding: 4px 12px;
}
section.contact-page .modal-msg {
  margin-top: 8px;
  font-size: 1em;
  color: green;
  text-align: left;
}
@media (max-width: 600px) {
  section.contact-page {
    max-width: 98vw;
    padding: 18px 4px 18px 4px;
  }
  section.contact-page form {
    flex-direction: column;
    gap: 8px;
  }
  section.contact-page input[type="email"], section.contact-page textarea {
    width: 100%;
  }
}*/

/* Mobile first: contact-page title */
section.contact-page .contact-title {
  font-size: 1.13em;
  color: var(--color-primary-blue);
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: left;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.contact-info-page {padding:8px 8px}

section.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  font-size:1em;
}

section.contact-page input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.2em;
   border: 1px solid var(--color-border-light) !important;
  border-radius: 5px;
  background: #fff;
  padding: 8px 10px;
}

section.contact-page textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.5em;
   border: 1px solid var(--color-border-light) !important;
  border-radius: 5px;
  background: #fff;
  padding: 8px 10px;
}

section.contact-page .contact-info-tel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.contact-tel-main {padding:8px 0px}

section.contact-page .btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
section.contact-page .btn-group button,
section.contact-page .btn-group a {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid var(--color-primary-blue);
  background: var(--color-primary-blue);
  color: #fff;
  font-size: 1em;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  transition: background 0.2s;
}
section.contact-page .btn-group button:first-child {
  border-radius: 5px 0 0 5px;
}
section.contact-page .btn-group a:last-child {
  border-radius: 0 5px 5px 0;
}
section.contact-page .btn-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--color-primary-blue);
  color: #fff;
  border: 1px solid var(--color-primary-blue);
  border-left: none;
  text-decoration: none;
  box-sizing: border-box;
}
section.contact-page .btn-group a button {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
  box-shadow: none;
  text-align: center;
}
section.contact-page .btn-group button:hover,
section.contact-page .btn-group a:hover button {
  background: #005fa3;
}

section.contact-page .contact-email {
  padding:24px 0px 0px;
}

article.description ul {
  padding-left: 2em;
  list-style-position: outside;
  padding-bottom:12px;
}
article.description li {
  padding-left: 0.1em;
}

/* --- Carousel Fullscreen Modal --- */
.carousel-fullscreen-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.2s;
}
.carousel-fullscreen-modal .carousel {
  width: 90vw;
  max-width: 900px;
  height: 70vh;
  max-height: 80vh;
  position: relative;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-fullscreen-modal .carousel-images {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  position: relative;
  background: transparent;
}
.carousel-fullscreen-modal .carousel-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.carousel-fullscreen-modal .carousel-btn {
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  z-index: 10;
}
.carousel-fullscreen-modal .carousel-btn .arrow {
  border-color: #fff;
}
.carousel-fullscreen-modal .carousel-markers {
  margin-top: 18px;
}
.carousel-fullscreen-modal .carousel-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.2em;
  color: #fff;
  background: none;
  border: none;
  z-index: 20;
  cursor: pointer;
  transition: color 0.2s;
}
.carousel-fullscreen-modal .carousel-close:hover {
  color: #ffd700;
}
@media (max-width: 700px) {
  .carousel-fullscreen-modal .carousel {
    width: 100vw;
    height: 60vw;
    max-width: 100vw;
    max-height: 60vw;
  }
}

/* --- Tram Track --- */
.tram-track {
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
    margin-top: 80px; /* Ajuste conforme a altura do header */
    left: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
    padding-left: 0;
}
.lisbon-tram {
    height: 150px;
    width: auto;
    position: relative;
    left: 0;
    transform: translateX(-150px);
    z-index: 5;
    animation: driveAcross 6s linear forwards;
    z-index: 10;
    position: relative;
}
@keyframes driveAcross {
    0% { transform: translateX(-150px); }
    100% { transform: translateX(100%); }
}
@media (max-width: 1440px) {
  .container {
    max-width: 100vw;
  }
}
  @keyframes driveAcross {
    0% {
      transform: translateX(-150px);
    }
    100% {
      transform: translateX(100%);
    }
}

