/* Importar fontes Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    color: #2E2E2E;
    overflow-x: hidden;
}

/* ============================================
   TOP BAR (Barra Superior)
============================================ */
.top-bar {
    background: linear-gradient(135deg, #012A4A 50%, #808080 50%);
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-bar-item:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.top-bar-item i {
    font-size: 16px;
}

/* Botões do Top Bar */
.top-bar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn {
    background-color: #FFFFFF;
    color: #2E2E2E;
    border: 2px solid #FFFFFF;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF;
    border: 2px solid #25D366;
}

/* Ícones Sociais */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #2E2E2E;
    transition: all 0.3s ease;
}

.social-icon.tripadvisor-icon:hover {
    background-color: #00AF87;
    transform: translateY(-3px) rotate(5deg);
}

.social-icon.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px) rotate(5deg);
}

.social-icon.google-icon:hover {
    background-color: #4285F4;
    transform: translateY(-3px) rotate(5deg);
}


/* Grupo de ícones sociais */
.social-icons-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ============================================
   BOTÕES FLUTUANTES LATERAIS
============================================ */
.floating-btn {
    position: fixed;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #012A4A;
    color: #FFFFFF;
    width: 52px;
    height: 52px;
    border-radius: 26px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: width 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

.phone-btn {
    bottom: 135px;
    background-color: rgba(1, 42, 74, 0.9);
}

.whatsapp-floating-btn {
    bottom: 70px;
    background-color: #25D366;
}

.floating-btn:hover {
    width: 180px;
}

.phone-btn:hover {
    background-color: #013a66;
}

.whatsapp-floating-btn:hover {
    background-color: #20ba5a;
}

.floating-btn i {
    font-size: 22px;
    position: absolute;
    left: 15px;
    transition: none;
}

.floating-text {
    position: absolute;
    left: 52px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease 0.1s;
    pointer-events: none;
}

.floating-btn:hover .floating-text {
    opacity: 1;
}

/* ============================================
   NAVBAR (Barra de Navegação Principal)
============================================ */
.navbar {
    background-color: #012A4A;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 998;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link {
    color: #2E2E2E;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #808080;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.navbar-logo {
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 155px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #808080);
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #808080;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.navbar-cta {
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.btn-reservas {
    display: inline-block;
    background: linear-gradient(135deg, #808080 0%, #6B6B6B 100%);
    color: #FFFFFF;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-reservas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-reservas:hover::before {
    left: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
    background-color: #2E2E2E;
}

/* Animação do hamburger quando ativo */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION (Secção de Capa)
============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('capa1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 42, 74, 0.7) 0%, rgba(1, 42, 74, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BOOKING CARD (Cartão de Reserva)
============================================ */
.booking-card {
    background: #FFFFFF;
    border: 2px solid #808080;
    border-radius: 12px;
    padding: 40px 35px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    min-height: 750px;
}

.booking-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row,
.form-row-double {
    display: flex;
    gap: 15px;
}

.form-row {
    flex-direction: column;
}

.form-row-double {
    flex-direction: row;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2E2E2E;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1.5px solid #4A4A4A;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-color: #FFFFFF;
    color: #2E2E2E;
    transition: all 0.3s ease;
    outline: none;
}

.form-group > input,
.form-group > textarea {
    padding: 12px 14px;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    cursor: pointer;
    position: relative;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: #808080;
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.1);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 14px;
    color: #808080;
    font-size: 16px;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-checkbox label {
    font-size: 12px;
    color: #4A4A4A;
    line-height: 1.5;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%);
    color: #FFFFFF;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #014a7a 0%, #012A4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 42, 74, 0.3);
}

/* ============================================
   ABOUT SECTION (Secção Sobre Nós)
============================================ */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* NOVO: Faixa Geométrica (Paralelogramo) */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Ocupa metade da largura */
    height: 100%;
    background-color: #012A4A; /* Cor principal do website */
    transform: skewX(-15deg) translateX(-20%); /* Inclinação e deslocamento */
    transform-origin: top left;
    z-index: 0;
    pointer-events: none;
}

/* NOVO: Ajuste para o conteúdo ficar por cima */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1; /* Conteúdo por cima da faixa */
}

/* Ajuste para a imagem (lado esquerdo) */
.about-image-wrapper {
    position: sticky;
    top: 120px;
    z-index: 2; /* Imagem por cima da faixa */
}

/* Ajuste para o conteúdo (lado direito) */
.about-content {
    padding: 20px 0;
    z-index: 2; /* Conteúdo por cima da faixa */
}

/* Remover o ::before original que era um overlay de cor */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 42, 74, 0.02) 0%, rgba(128, 128, 128, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ajuste para mobile */
@media (max-width: 1024px) {
    .about-section::before {
        width: 100%;
        height: 40%;
        transform: skewX(0deg) translateY(0);
        top: 0;
        left: 0;
    }
}


.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Lado Esquerdo - Imagem */
.about-image-wrapper {
    position: sticky;
    top: 120px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 42, 74, 0.3) 0%, rgba(128, 128, 128, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-container:hover .about-image-overlay {
    opacity: 1;
}

/* Lado Direito - Conteúdo */
.about-content {
    padding: 20px 0;
}

/* NOVO: Limitar a largura do texto para não ficar esticado */
.about-text {
    max-width: 550px; /* Limita a largura do texto */
    margin-bottom: 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 20px;
    text-align: justify;
}

.about-header {
    margin-bottom: 30px;
}

.about-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #808080;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #012A4A, #808080);
}

.about-title {
    font-size: 3.5em;
    font-weight: 700;
    color: #012A4A;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-intro {
    font-size: 17px !important;
    font-weight: 500;
    color: #2E2E2E !important;
}

.about-description {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #012A4A;
}

.about-commitment {
    font-style: italic;
    color: #5A5A5A !important;
}

/* Valores */
.about-values {
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%);
    padding: 35px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(1, 42, 74, 0.2);
}

.values-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.value-item i {
    font-size: 24px;
    color: #FFFFFF;
}

/* Call to Action */
.about-cta {
    margin-top: 40px;
}

.cta-box {
    /* ALTERADO: Ajustes para centrar e aumentar a largura */
    background: linear-gradient(135deg, #2E2E2E 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 480px; /* Aumentado para ser menos quadrado */
    margin: 0 auto; /* Centrar o bloco na coluna */
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-box p {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 20px; /* REDUZIDO DE 30px */
    line-height: 1.6;
}

.highlight-blue {
    color: #4A90E2;
    font-weight: 600;
}

.highlight-green {
    color: #25D366;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px; /* Espaço antes do número de telefone */
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-phone {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: #FFFFFF;
}

.cta-phone:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2868A8 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #FFFFFF;
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-btn i {
    font-size: 20px;
}

/* NOVO: Estilo para o número de telefone no CTA */
.cta-phone-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 10px;
    text-decoration: none; /* Remover sublinhado */
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-wrapper {
        position: relative;
        top: 0;
    }
    
    .about-image-container {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2.8em;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        max-width: 100%; /* Em mobile, ocupa a largura total */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .navbar-container {
        padding: 0 20px;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 2.2em;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-values {
        padding: 25px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row-double {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8em;
    }
    
    .about-subtitle {
        font-size: 12px;
        padding-left: 35px;
    }
    
    .about-subtitle::before {
        width: 25px;
    }
    
    .values-header h3 {
        font-size: 16px;
    }
    
    .value-item {
        font-size: 14px;
    }
    
    .value-item i {
        font-size: 20px;
    }
    
    .cta-phone-number {
        font-size: 20px;
    }
}

/* =========================================================
   SELETOR DE IDIOMA DROPDOWN (PT/EN/FR)
========================================================= */
.language-selector-wrapper {
    position: relative;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
}

.language-selector .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2E2E2E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%);
    color: #FFFFFF;
}

.language-option.active {
    background: #f8f9fa;
    color: #012A4A;
    font-weight: 600;
}

.flag-icon {
    font-size: 20px;
    line-height: 1;
}

/* Remover o movimento do hover do top-bar-item */
.top-bar-item.language-selector:hover {
    transform: none;
}

/* ============================================
   SERVICES SECTION (Secção Serviços)
============================================ */
.services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #808080;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3em;
    font-weight: 700;
    color: #012A4A;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px; /* Para o efeito 3D */
}

/* Card Flip 3D */
.service-card-wrapper {
    width: 100%;
    height: 350px; /* Altura fixa para o card */
    position: relative;
    cursor: pointer;
}

.service-card {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animação suave */
}

.service-card-wrapper:hover .service-card {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Frente do Card */
.service-card-front {
    background-color: #FFFFFF;
    z-index: 2;
}

.service-icon-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #012A4A;
    box-shadow: 0 0 0 5px #f8f9fa;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-wrapper:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #012A4A;
    margin-top: 10px;
}

/* Verso do Card */
.service-card-back {
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.back-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #808080;
}

.back-subtitle {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 15px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card-wrapper {
        height: 300px;
    }
    .service-icon-circle {
        width: 150px;
        height: 150px;
    }
    .section-title {
        font-size: 2.5em;
    }
}

/* ============================================
   HOW IT WORKS SECTION (Como Funciona)
============================================ */
.how-it-works-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Linha de Conexão (Timeline) */
.how-it-works-container::before {
    content: '';
    position: absolute;
    top: 60px; /* Alinhar com o centro do ícone */
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #E0E0E0;
    z-index: 0;
}

.how-it-works-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Ícone e Número */
.step-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 4px solid #012A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 0 0 8px #FFFFFF; /* Efeito de anel branco */
    transition: all 0.4s ease;
}

.step-icon {
    font-size: 3.5em;
    color: #012A4A;
    transition: color 0.4s ease;
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #808080;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

/* Hover Effect */
.how-it-works-step:hover .step-icon-wrapper {
    background-color: #012A4A;
    border-color: #808080;
    transform: translateY(-10px);
}

.how-it-works-step:hover .step-icon {
    color: #FFFFFF;
}

/* Texto */
.step-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #012A4A;
    margin-bottom: 10px;
}

.step-text {
    font-size: 1em;
    color: #4A4A4A;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .how-it-works-container {
        flex-direction: column;
        gap: 50px;
        margin-top: 30px;
    }
    
    .how-it-works-container::before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }
    
    .how-it-works-step {
        flex-direction: row;
        text-align: left;
        padding: 0;
    }
    
    .step-icon-wrapper {
        margin-bottom: 0;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    .step-number {
        bottom: auto;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    .step-icon {
        font-size: 3em;
    }
    .step-title {
        font-size: 1.3em;
    }
    .step-text {
        font-size: 0.9em;
    }
}

/* ============================================
   EXCURSÕES SECTION (Próximas Excursões)
============================================ */
.excursoes-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.excursoes-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.excursoes-grid {
    display: grid;
    grid-template-columns: 1fr; /* Cards verticais por defeito */
    gap: 30px;
}

.excursao-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

/* Hover removido conforme solicitado
.excursao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
*/

.excursao-card.em-breve {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.excursao-card.em-breve:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.excursao-image-wrapper {
    flex-shrink: 0;
    width: 40%;
    max-height: 300px;
    overflow: hidden;
}

.excursao-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.excursao-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.excursao-header {
    margin-bottom: 15px;
}

.excursao-title {
    font-size: 2em;
    font-weight: 700;
    color: #012A4A;
    margin-bottom: 5px;
}

.excursao-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    color: #808080;
}

.excursao-details {
    margin-bottom: 20px;
    color: #4A4A4A;
    line-height: 1.6;
}

.excursao-price {
    font-size: 1.8em;
    font-weight: 700;
    color: #25D366;
    margin-bottom: 15px;
}

.excursao-price span {
    font-size: 0.6em;
    font-weight: 500;
    color: #4A4A4A;
}

.btn-reserva-excursao {
    display: inline-block;
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reserva-excursao:hover {
    background: linear-gradient(135deg, #014a7a 0%, #012A4A 100%);
    transform: translateY(-2px);
}

.excursao-card.em-breve .btn-reserva-excursao {
    background: #808080;
    cursor: not-allowed;
}

.excursao-card.em-breve .btn-reserva-excursao:hover {
    transform: none;
    background: #808080;
}

/* Responsividade para Excursões */
@media (max-width: 992px) {
    .excursao-card {
        flex-direction: column;
    }
    .excursao-image-wrapper {
        width: 100%;
        max-height: 250px;
    }
    .excursao-content {
        padding: 20px;
    }
    .excursao-title {
        font-size: 1.5em;
    }
    .excursao-price {
        font-size: 1.5em;
    }
}

@media (max-width: 576px) {
    .excursao-content {
        padding: 15px;
    }
    .excursao-title {
        font-size: 1.3em;
    }
    .excursao-subtitle {
        font-size: 1em;
    }
    .excursao-details {
        font-size: 0.9em;
    }
    .btn-reserva-excursao {
        width: 100%;
    }
}


/* ============================================
   CUSTOM SWEETALERT2 STYLES
============================================ */
.custom-swal-popup {
    font-family: 'Poppins', sans-serif;
}

.custom-swal-title {
    color: #012A4A !important;
    font-weight: 700 !important;
}

.custom-swal-html {
    color: #4A4A4A !important;
    font-size: 1em !important;
}
.custom-swal-button {
    background: linear-gradient(135deg, #012A4A 0%, #014a7a 100%) !important;
    color: #FFFFFF !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(1, 42, 74, 0.3) !important;
    transition: all 0.3s ease !important;
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Secção de Testemunhos */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho da Secção */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #718096;
}

/* Wrapper do Carrossel */
.carousel-wrapper {
    position: relative;
    padding: 0 3rem;
}

/* Botões de Navegação */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background-color: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8;
    box-shadow: 0 6px 8px rgba(23, 162, 184, 0.3);
}

.nav-button.prev {
    left: 0;
}

.nav-button.next {
    right: 0;
}

/* Container dos Testemunhos */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}

/* Cartão de Testemunho */
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Cabeçalho do Cartão */
.card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.card-header .date {
    font-size: 0.875rem;
    color: #718096;
}

/* Estrelas */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1.25rem;
    color: #cbd5e0;
}

.star.filled {
    color: #ffd700;
}

/* Texto do Testemunho */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Indicadores de Página */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    width: 2rem;
    background-color: #17a2b8;
}

.dot:hover:not(.active) {
    background-color: #17a2b880;
}

/* Animação de Fade */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-wrapper {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .carousel-wrapper {
        padding: 0 2rem;
    }
    
    .nav-button {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2rem 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .carousel-wrapper {
        padding: 0 1.5rem;
    }
    
    .nav-button {
        width: 2rem;
        height: 2rem;
    }
    
    .nav-button svg {
        width: 16px;
        height: 16px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #1a202c;
    line-height: 1.6;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Section */
.testimonials-section {
    position: relative;
    padding: 3rem 1.5rem;
    overflow: hidden;
    background-color: #012A4A;
    display: flex;
    align-items: center;
}

.background-shape {
    display: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.section-header {
    margin-bottom: 3.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #808080, #6B6B6B);
    border-radius: 10px;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.35rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.lang-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    background: transparent;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    background: #f7fafc;
}

.lang-btn.active {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* Rating Overview */
.rating-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.rating-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
}

.stars-display {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    font-size: 1.1rem;
    color: #e2e8f0;
}

.star-icon.filled {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
}

.rating-count {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.write-review-btn {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.3);
    font-family: 'Inter', sans-serif;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

.write-review-btn:active {
    transform: translateY(0);
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    padding: 0 4rem;
    margin-bottom: 3rem;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.nav-button:hover {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    border-color: #17a2b8;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.35);
}

.nav-button:active {
    transform: translateY(-50%) scale(1.05);
}

.nav-button.prev {
    left: 0;
}

.nav-button.next {
    right: 0;
}

/* Container dos Testemunhos */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: opacity 0.4s ease;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #012A4A, #013a66);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(1, 42, 74, 0.25);
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 400;
}

.platform-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Stars */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.8rem;
}

.star {
    font-size: 1rem;
    color: #e2e8f0;
    transition: all 0.2s ease;
}

.star.filled {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.25));
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4a5568;
    font-weight: 400;
}

/* Pagination */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 9999px;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.dot.active {
    width: 2.5rem;
    background: linear-gradient(90deg, #17a2b8, #138496);
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.4);
}

.dot:hover:not(.active) {
    background: #17a2b8;
    transform: scale(1.3);
}

/* Animations */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .background-shape {
        width: 70%;
        transform: skewY(-8deg);
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .carousel-wrapper {
        padding: 0 3rem;
    }
    
    .nav-button {
        width: 3rem;
        height: 3rem;
    }
    
    .rating-overview {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .rating-badge {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 2.5rem 0.75rem;
    }
    
    .main-title {
        font-size: 1.3rem;
    }
    
    .main-title::after {
        width: 60px;
        height: 4px;
    }
    
    .carousel-wrapper {
        padding: 0 2.5rem;
    }
    
    .nav-button {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .nav-button svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .avatar {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    
    .rating-overview {
        padding: 1.25rem;
    }
    
    .rating-text {
        font-size: 1.1rem;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
    
    .write-review-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .language-toggle {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   RODAPÉ (FOOTER)
   Secção de rodapé com informações da empresa,
   links úteis e contactos
============================================ */

/* Container principal do rodapé */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px;
    font-size: 0.9em;
}

/* Conteúdo principal do rodapé (3 colunas) */
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 30px;
    border-bottom: 1px solid #007bff;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

/* ============================================
   SECÇÃO DO LOGOTIPO E DESCRIÇÃO
============================================ */
.footer-logo-section {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-logo-section p {
    line-height: 1.6;
    color: #ccc;
}

/* ============================================
   SECÇÕES DE INFORMAÇÃO E CONTACTOS
============================================ */
.footer-info-section,
.footer-contact-section {
    min-width: 200px;
}

/* Títulos das secções */
.footer-info-section h3,
.footer-contact-section h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Listas de links */
.footer-info-section ul,
.footer-contact-section ul {
    list-style: none;
    padding: 0;
}

.footer-info-section li,
.footer-contact-section li {
    margin-bottom: 10px;
}

/* Links do rodapé */
.footer-info-section a,
.footer-contact-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-info-section a:hover,
.footer-contact-section a:hover {
    color: #007bff;
}

/* ============================================
   ÍCONES DE CONTACTO
============================================ */
.contact-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #007bff;
    color: #1a1a1a;
    font-style: normal;
    font-weight: bold;
    font-size: 0.8em;
}

.phone-icon::before {
    content: '📞';
}

.mail-icon::before {
    content: '✉️';
}

/* ============================================
   RODAPÉ INFERIOR (COPYRIGHT)
============================================ */
.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    color: #999;
    font-size: 0.8em;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ============================================
   RESPONSIVIDADE DO RODAPÉ
============================================ */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-section,
    .footer-info-section,
    .footer-contact-section {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-info-section h3,
    .footer-contact-section h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-info-section ul,
    .footer-contact-section ul {
        text-align: center;
    }

    .footer-info-section li,
    .footer-contact-section li {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVIDADE MOBILE - VERSÃO FINAL CORRIGIDA
============================================ */

/* NAVBAR MOBILE - Menu Hamburger */
@media (max-width: 968px) {
    .navbar-container {
        position: relative;
    }
    
    .navbar-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: #012A4A;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar.scrolled .navbar-menu {
        background-color: #FFFFFF;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled .navbar-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 20px;
        font-size: 18px;
        width: 100%;
    }
    
    .nav-link-reservas {
        background: linear-gradient(135deg, #808080 0%, #6B6B6B 100%);
        color: #FFFFFF !important;
        margin: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .navbar-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }
}

/* ABOUT SECTION - Mobile Corrigido */
@media (max-width: 968px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-section::before {
        display: none;
    }
    
    .about-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .about-image-container {
        max-width: 100%;
    }
    
    .about-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .about-header {
        text-align: center;
    }
    
    .about-title {
        font-size: 2em;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text p {
        font-size: 1em;
        line-height: 1.8;
    }
    
    .about-values {
        padding: 30px 20px;
    }
    
    .values-header {
        text-align: center;
    }
    
    .values-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .value-item {
        justify-content: center;
        padding: 15px;
    }
}

/* HOW IT WORKS - Mobile Corrigido */
@media (max-width: 968px) {
    .how-it-works-section {
        padding: 60px 20px;
    }
    
    .how-it-works-container {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .how-it-works-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        position: relative;
        text-align: left;
    }
    
    .how-it-works-step::after {
        content: '';
        position: absolute;
        left: 35px;
        top: 75px;
        width: 2px;
        height: calc(100% + 50px);
        background: linear-gradient(180deg, #808080 0%, rgba(128, 128, 128, 0.2) 100%);
        z-index: 0;
    }
    
    .how-it-works-step:last-child::after {
        display: none;
    }
    
    .step-icon-wrapper {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        position: relative;
        z-index: 1;
    }
    
    .step-icon {
        font-size: 28px;
    }
    
    .step-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
        line-height: 26px;
        top: -6px;
        right: -6px;
    }
    
    .step-content {
        flex: 1;
        text-align: left;
    }
    
    .step-title {
        font-size: 1.4em;
        margin-bottom: 12px;
        text-align: left;
        color: #012A4A;
    }
    
    .step-text {
        font-size: 1em;
        text-align: left;
        line-height: 1.7;
        color: #4A4A4A;
    }
}

/* Ajustes gerais mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .booking-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-subtitle {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
}

/* Esconder item mobile-only no desktop */
@media (min-width: 969px) {
    .mobile-only {
        display: none !important;
    }
}

/* ============================================
   CHECKBOX DE VOLTA/RETORNO
============================================ */
.return-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.return-checkbox-wrapper:hover {
    background-color: #e8f4f8;
    border-color: #012A4A;
}

.return-checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #012A4A;
}

.return-checkbox-wrapper label {
    font-size: 15px;
    font-weight: 500;
    color: #2E2E2E;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

#returnFields {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

#returnFields.show {
    display: flex !important;
    max-height: 200px;
    opacity: 1;
}
