/* ====== COMPONENTS CSS ====== */

/* Hero Section */
.hero-section {
   position: relative;
   overflow: hidden;
   min-height: 100vh;
   display: flex;
   align-items: center;
}

.hero-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -2;
}

#hero-video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   z-index: -2;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(47, 47, 47, 0.4) 100%);
   z-index: -1;
}

.hero-content {
   position: relative;
   z-index: 1;
   text-align: center;
   color: var(--color-white);
   padding: 2rem 0;
   width: 100%;
}

.hero-subtitle {
   display: block;
   font-size: 0.9rem;
   margin-bottom: 1rem;
   opacity: 0.9;
   font-weight: 300;
   letter-spacing: 1px;
}

.hero-description {
   font-size: 18px;
   line-height: 1.6;
   margin: 20px 0;
   opacity: 0.9;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

.hero-actions {
   margin-top: 30px;
   display: flex;
   gap: 15px;
   justify-content: center;
   flex-wrap: wrap;
}

.hero-credentials {
   margin-top: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
}

.hero-credentials p {
   font-size: 14px;
   opacity: 0.8;
   margin: 0;
   font-weight: 500;
}

/* Buttons */
.btn {
   padding: 15px 30px;
   text-decoration: none;
   border-radius: 50px;
   font-weight: 500;
   font-size: 16px;
   display: inline-block;
   transition: all 0.3s ease;
   border: none;
   cursor: pointer;
   text-transform: none;
   letter-spacing: 0.5px;
}

.btn-primary {
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   color: var(--color-dark);
   box-shadow: 0 4px 15px rgba(191, 156, 96, 0.3);
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(191, 156, 96, 0.4);
}

.btn-ghost {
   background: transparent;
   color: var(--color-white);
   border: 2px solid var(--color-white);
}

.btn-ghost:hover {
   background: var(--color-white);
   color: var(--color-dark);
   transform: translateY(-2px);
}

.btn-large {
   font-size: 18px;
   padding: 18px 40px;
   margin-top: 2rem;
}

/* ====== HEADINGS HIERARCHY ====== */

/* Base heading styles */
h1 {
   font-size: 4rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 1.5rem;
   color: var(--color-white);
}

h2 {
   font-size: 2.5rem;
   font-weight: 600;
   line-height: 1.3;
   margin-bottom: 1.5rem;
   color: var(--color-white);
}

h3 {
   font-size: 1.5rem;
   font-weight: 600;
   line-height: 1.4;
   margin-bottom: 1rem;
   color: var(--color-white);
}

h4 {
   font-size: 1.2rem;
   font-weight: 500;
   line-height: 1.4;
   margin-bottom: 0.8rem;
   color: var(--color-white);
}

/* Section Titles */
.section-title {
   text-align: center;
   margin-bottom: 3rem;
   color: var(--color-white);
   font-size: 2.5rem;
   font-weight: 600;
}

/* Credibilidade Section */
.credibilidade-section {
   padding: 10rem 0;
   background: var(--color-dark);
}

.credibilidade-section .container {
   padding: 0 2rem;
}

.credibilidade-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.credibilidade-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   padding: 2rem;
}

.credibilidade-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--color-dark);
   flex-shrink: 0;
}

.credibilidade-content {
   flex: 1;
}

.credibilidade-content h3 {
   color: var(--color-white);
   margin-bottom: 1rem;
   font-size: 1.4rem;
   font-weight: 600;
}

.credibilidade-content p {
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
   font-size: 1rem;
}



/* Benefícios Section */
.beneficios-section {
   padding: 10rem 0;
   background: var(--color-dark);
}

.beneficios-section .container {
   padding: 0 2rem;
}

.beneficios-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 3rem;
   justify-content: center;
}

.beneficio-item {
   flex: 1;
   min-width: 250px;
   max-width: 300px;
}

.beneficio-item p {
   color: rgba(255, 255, 255, 0.9);
   line-height: 1.8;
   font-size: 1.1rem;
   margin: 0;
}

/* CTA Section */
.cta-section {
   padding: 10rem 0;
   background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(47, 47, 47, 0.7)), url('../images/bg-header.webp');
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: center;
   min-height: 80vh;
}

.cta-section .container {
   padding: 0 2rem;
   width: 100%;
}

.cta-content {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
}

.cta-section .section-title {
   font-size: 3rem;
   margin-bottom: 2rem;
   color: var(--color-white);
   font-weight: 700;
   line-height: 1.2;
}

.cta-text {
   color: rgba(255, 255, 255, 0.9);
   font-size: 1.3rem;
   margin-bottom: 3rem;
   font-weight: 400;
   line-height: 1.7;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.cta-highlight {
   margin: 3rem 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
}

.highlight-number {
   font-size: 4rem;
   font-weight: 800;
   color: var(--color-gold);
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
   font-size: 1.2rem;
   color: var(--color-white);
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 1px;
}



/* Footer */
.footer-brand {
   text-align: center;
   margin-bottom: 3rem;
}

.footer-brand img {
   max-width: 200px;
   height: auto;
}

.footer-columns {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
   margin-bottom: 3rem;
}

.footer-column {
   text-align: center;
}

.footer-column h4 {
   color: var(--color-gold);
   margin-bottom: 1.2rem;
   font-size: 1.2rem;
   font-weight: 500;
}

.footer-menu {
   list-style: none;
   padding: 0;
}

.footer-menu li {
   margin-bottom: 0.8rem;
}

.footer-menu a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   transition: color 0.3s ease;
   font-size: 0.95rem;
}

.footer-menu a:hover {
   color: var(--color-gold);
}

.footer-booking {
   color: var(--color-gold) !important;
   font-weight: bold;
}

.footer-column address {
   text-align: center;
   font-style: normal;
}

.footer-column address p {
   margin-bottom: 0.8rem;
   color: rgba(255, 255, 255, 0.8);
   font-size: 0.95rem;
}

.footer-column address a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-column address a:hover {
   color: var(--color-gold);
}

/* Footer Social Media */
.footer-social-media {
   list-style: none;
   padding: 0;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.footer-social-media li {
   margin-bottom: 0.8rem;
}

.footer-social-media a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   transition: color 0.3s ease;
   font-size: 0.95rem;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   line-height: 1.2;
   margin-bottom: 0.5rem;
}

.footer-social-media a:hover {
   color: var(--color-gold);
}

.footer-social-media i {
   font-size: 1.1rem;
   width: 20px;
   text-align: center;
   flex-shrink: 0;
}

.footer-urgente {
   background: rgba(191, 156, 96, 0.1);
   padding: 0.8rem;
   border-radius: 8px;
   margin-top: 1rem;
   font-size: 0.9rem;
}

.footer-urgente i {
   color: var(--color-gold);
}

.footer-separator {
   height: 1px;
   background: rgba(255, 255, 255, 0.1);
   margin: 2rem 0;
}

.footer-bottom {
   display: grid;
   grid-template-columns: 1fr auto 1fr;
   align-items: center;
   margin-bottom: 2rem;
   gap: 2rem;
}

.footer-legal {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.footer-legal img {
   max-width: 120px;
   height: auto;
}

.footer-legal h4 {
   color: var(--color-white);
   font-size: 1rem;
   margin: 0;
}

.footer-payment {
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.footer-payment img {
   max-width: 80px;
   height: 40px;
   width: auto;
   object-fit: contain;
   transition: opacity 0.3s ease;
}

.footer-payment img:hover {
   opacity: 0.8;
}

/* ====== FOOTER SCROLL TOP ====== */
.footer-scroll-top {
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.footer-scroll-top .btn-scroll-top {
   position: static;
   transform: none;
   opacity: 1;
   visibility: visible;
   background: var(--color-gold);
   color: var(--color-white);
   border: none;
   border-radius: 50%;
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   transition: all 0.3s ease;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-scroll-top .btn-scroll-top:hover {
   background: var(--color-white);
   color: var(--color-gold);
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-scroll-top .btn-scroll-top i {
   font-size: 1.2rem;
}

.footer-copyright {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-left p {
   color: rgba(255, 255, 255, 0.6);
   margin: 0;
   font-size: 0.9rem;
}

.copyright-right p {
   color: rgba(255, 255, 255, 0.6);
   margin: 0;
   font-size: 0.9rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
   position: fixed;
   right: 15px;
   bottom: 15px;
   z-index: 1000;
   text-align: center;
   font-family: Arial, sans-serif;
}

.whatsapp-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 60px;
   height: 60px;
   background-color: #25D366;
   border-radius: 50%;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
   cursor: pointer;
   margin: 0 auto;
   border: none;
}

.whatsapp-icon:hover {
   transform: scale(1.1);
}

.whatsapp-icon img {
   width: 30px;
   height: 30px;
}

.whatsapp-messages {
   position: absolute;
   bottom: 80px;
   right: 0;
   left: auto;
   background-color: white;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
   border-radius: 8px;
   overflow: hidden;
   display: none;
   flex-direction: column;
   width: 250px;
}

.whatsapp-header {
   display: flex;
   align-items: center;
   padding: 10px;
   background-color: #f9f9f9;
   border-bottom: 1px solid #f0f0f0;
}

.whatsapp-status {
   display: flex;
   align-items: center;
   margin-left: auto;
}

.whatsapp-status span {
   width: 8px;
   height: 8px;
   background-color: #25D366;
   border-radius: 50%;
   margin-right: 5px;
}

.whatsapp-status p {
   margin: 0;
   font-size: 12px;
   color: #333;
}

.whatsapp-options button {
   background: none;
   border: none;
   padding: 10px 15px;
   text-align: left;
   width: 100%;
   font-size: 14px;
   cursor: pointer;
   border-bottom: 1px solid #f0f0f0;
   transition: background 0.3s;
   white-space: normal;
}

.whatsapp-options button:hover {
   background-color: #f9f9f9;
}

.whatsapp-options button:last-child {
   border-bottom: none;
}

.whatsapp-chat-btn {
   background-color: #cccccc !important;
   color: white !important;
   border: none;
   padding: 8px 8px !important;
   margin: 2px 2px;
   font-size: 15px;
   border-radius: 10px;
   cursor: pointer;
   transition: background-color 0.3s;
}

.whatsapp-chat-btn:hover {
   background-color: #1da851 !important;
}

/* Exit Popup */
.exit-popup {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}

.exit-popup-content {
   background: var(--color-white);
   padding: 3rem;
   border-radius: 15px;
   max-width: 500px;
   width: 90%;
   text-align: center;
   position: relative;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exit-popup-close {
   position: absolute;
   top: 15px;
   right: 15px;
   background: none;
   border: none;
   font-size: 1.5rem;
   cursor: pointer;
   color: var(--color-dark-gray);
   transition: color 0.3s ease;
}

.exit-popup-close:hover {
   color: var(--color-dark);
}

.exit-popup h3 {
   color: var(--color-dark);
   margin-bottom: 1rem;
   font-size: 1.5rem;
}

.exit-popup p {
   color: var(--color-dark-gray);
   margin-bottom: 2rem;
   line-height: 1.6;
}

.exit-popup-form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.exit-popup-form input {
   padding: 15px;
   border: 2px solid var(--color-gray);
   border-radius: 8px;
   font-size: 1rem;
   transition: border-color 0.3s ease;
}

.exit-popup-form input:focus {
   outline: none;
   border-color: var(--color-gold);
}

.exit-popup-form .btn {
   width: 100%;
}

/* Scroll Top Button */
.btn-scroll-top {
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 50px;
   height: 50px;
   background: var(--color-gold);
   color: var(--color-dark);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   z-index: 999;
}

.btn-scroll-top.visible {
   opacity: 1;
   visibility: visible;
}

.btn-scroll-top:hover {
   transform: translateY(-3px);
   box-shadow: 0 5px 15px rgba(191, 156, 96, 0.4);
}



/* ====== BOOKING FORM STYLES ====== */

/* Mensagem de tempo de resposta */
.response-time-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.response-time-message i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.response-time-message strong {
    font-weight: 700;
    font-size: 1.05rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Estilos de erro para validação */
.form-group input.error,
.form-group select.error,
.category-selector.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-group input.error::placeholder,
.form-group select.error::placeholder {
    color: #dc3545;
}

.category-selector.error {
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 0.5rem;
}

/* Mensagem de erro */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message {
    display: block;
}

.booking-form-container {
    width: 100%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ====== CATEGORY SELECTOR ====== */

.category-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-option {
    position: relative;
}

.category-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-label {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.category-option input[type="radio"]:checked + .category-label {
    border-color: var(--color-gold);
    background: rgba(191, 156, 96, 0.1);
}

.category-label:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.category-name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.1rem;
}

.category-price {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.category-features {
    color: var(--color-dark-gray);
    font-size: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-dark-gray);
}

.form-group input:invalid,
.form-group select:invalid {
    border-color: #ff6b6b;
}



/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.country-select {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    color: var(--color-white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.phone-input-container input[type="tel"] {
    flex: 1;
}

.form-actions {
    margin-top: 1rem;
    text-align: center;
}

.form-actions .btn {
    width: 100%;
    background: linear-gradient(45deg, var(--color-gold), #d4af37);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(191, 156, 96, 0.3);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 156, 96, 0.4);
}

.booking-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.booking-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.booking-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .response-time-message {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .response-time-message i {
        font-size: 1rem;
    }
    
    .response-time-message strong {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .category-label {
        padding: 0.75rem;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .category-price {
        font-size: 0.85rem;
    }
    
    .category-features {
        font-size: 0.8rem;
    }
    
    /* Phone input responsive */
    .phone-input-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .country-select {
        min-width: 100%;
        font-size: 16px; /* Evita zoom no iOS */
    }
}

/* ====== EXISTING CODE CONTINUES ====== */

/* Tablet Breakpoint (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
   .credibilidade-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
   }

   .credibilidade-item {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      padding: 1.5rem;
   }

   .credibilidade-icon {
      margin: 0 auto;
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
   }

   .credibilidade-content h3 {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
   }

   .credibilidade-content p {
      font-size: 0.9rem;
      line-height: 1.5;
   }

   .beneficios-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
   }

   .beneficio-item {
      min-width: auto;
      max-width: none;
      text-align: center;
   }

   .beneficio-item p {
      font-size: 1rem;
      line-height: 1.6;
   }

   .footer-columns {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
   }

   .footer-column {
      text-align: center;
   }

   .footer-column h4 {
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
   }

   .footer-menu li {
      margin-bottom: 1rem;
   }

   .footer-menu a {
      font-size: 1rem;
   }

   .footer-column address p {
      font-size: 1rem;
      margin-bottom: 1rem;
   }

   /* Padding das seções para tablets */
   .credibilidade-section,
   .beneficios-section,
   .cta-section,
   .confirmation-section {
      padding: 5rem 0;
   }

   /* Headings para tablets */
   h1 {
      font-size: 3.5rem;
   }

   h2 {
      font-size: 2.2rem;
   }

   h3 {
      font-size: 1.4rem;
   }

   h4 {
      font-size: 1.1rem;
   }

   .section-title {
      font-size: 2.2rem;
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .credibilidade-section .container,
   .beneficios-section .container,
   .cta-section .container {
      padding: 0 1rem;
   }
   
   .footer-copyright {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
   }
   
   .footer-payment {
      gap: 1rem;
   }
   
   .footer-bottom {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      text-align: center;
      justify-items: center;
   }
   
   .footer-legal {
      justify-content: center;
      text-align: center;
   }
   
   .footer-payment {
      justify-content: center;
   }
   
   .footer-scroll-top {
      justify-content: center;
   }
   
   .footer-payment img {
      max-width: 60px;
      height: 30px;
   }
   
   .hero-content {
      padding: 8rem 0 2rem 0;
   }
   
   .hero-content h1 {
      font-size: 2.5rem;
   }

   .hero-actions {
      flex-direction: column;
      align-items: center;
   }

   .hero-actions .btn {
      width: 100%;
      max-width: 300px;
      text-align: center;
   }

   .credibilidade-grid {
      grid-template-columns: 1fr;
   }

   .servicos-grid {
      grid-template-columns: 1fr;
   }

   .beneficios-grid {
      grid-template-columns: repeat(2, 1fr);
   }



   .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
   }

   .footer-columns {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .footer-column {
      text-align: center;
   }

   .footer-column h4 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
   }

   .footer-menu li {
      margin-bottom: 0.8rem;
   }

   .footer-menu a {
      font-size: 0.95rem;
   }

   .footer-column address p {
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
   }

   .footer-social-media a {
      justify-content: center;
      font-size: 0.9rem;
      text-align: center;
   }

   .footer-social-media i {
      font-size: 1rem;
   }

   /* Padding das seções para mobile */
   .credibilidade-section,
   .beneficios-section,
   .cta-section,
   .confirmation-section {
      padding: 3rem 0;
   }

   /* Headings para mobile */
   h1 {
      font-size: 2.5rem;
   }

   h2 {
      font-size: 1.8rem;
   }

   h3 {
      font-size: 1.3rem;
   }

   h4 {
      font-size: 1rem;
   }

   .section-title {
      font-size: 1.8rem;
   }

   .footer-social-media {
      justify-content: center;
   }

   .exit-popup-content {
      padding: 2rem;
      margin: 1rem;
   }

   #hero-video {
      object-position: center;
   }

   .hero-content h1 {
      font-size: 2.5rem;
      line-height: 1.2;
   }

   .hero-description {
      font-size: 16px;
      padding: 0 1rem;
   }
}

@media (max-width: 480px) {
   .beneficios-grid {
      grid-template-columns: 1fr;
   }

   .credibilidade-item {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
   }

   .credibilidade-icon {
      margin: 0 auto;
   }

   .credibilidade-content h3 {
      justify-content: center;
   }

   .credibilidade-content h3::after {
      display: none;
   }
}

/* Fallback para navegadores que não suportam vídeo */
.no-video #hero-video {
   display: none;
}

/* ====== HAMBURGER MENU ====== */
.hamburger-menu {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0.5rem;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 40px;
   height: 40px;
   transition: all 0.3s ease;
}

.hamburger-line {
   width: 24px;
   height: 3px;
   background-color: var(--color-white);
   margin: 2px 0;
   transition: all 0.3s ease;
   border-radius: 2px;
}

.hamburger-menu:hover .hamburger-line {
   background-color: var(--color-gold);
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
   opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
   transform: rotate(-45deg) translate(7px, -6px);
}

/* ====== MOBILE NAVIGATION FULLSCREEN ====== */
.mobile-nav-fullscreen {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: var(--color-dark);
   z-index: 9999;
   display: none;
   flex-direction: column;
   transform: translateX(-100%);
   transition: transform 0.3s ease-in-out;
}

.mobile-nav-fullscreen.active {
   transform: translateX(0);
}

.mobile-nav-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1.5rem 2rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo img {
   height: 40px;
   width: auto;
}

.mobile-nav-close {
   background: none;
   border: none;
   color: var(--color-white);
   font-size: 1.5rem;
   cursor: pointer;
   padding: 0.5rem;
   transition: color 0.3s ease;
}

.mobile-nav-close:hover {
   color: var(--color-gold);
}

.mobile-nav-content {
   flex: 1;
   display: flex;
   flex-direction: column;
   padding: 2rem;
   overflow-y: auto;
}

.mobile-menu {
   list-style: none;
   padding: 0;
   margin: 0 0 2rem 0;
}

.mobile-menu li {
   margin-bottom: 1rem;
}

.mobile-menu a {
   color: var(--color-white);
   text-decoration: none;
   font-size: 1.2rem;
   font-weight: 500;
   padding: 1rem 0;
   display: block;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   transition: color 0.3s ease;
}

.mobile-menu a:hover {
   color: var(--color-gold);
}

.mobile-menu-cta {
   margin-top: 2rem;
}

.mobile-menu-cta .btn {
   width: 100%;
   text-align: center;
   padding: 1rem;
   font-size: 1.1rem;
}

.mobile-nav-footer {
   margin-top: auto;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-contact h4,
.mobile-nav-social h4 {
   color: var(--color-gold);
   font-size: 1.1rem;
   margin-bottom: 1rem;
}

.mobile-nav-contact p {
   color: var(--color-white);
   margin-bottom: 0.5rem;
   font-size: 0.95rem;
}

.mobile-nav-contact i {
   margin-right: 0.5rem;
   color: var(--color-gold);
}

.mobile-social-links {
   display: flex;
   gap: 1rem;
}

.mobile-social-links a {
   color: var(--color-white);
   font-size: 1.5rem;
   transition: color 0.3s ease;
}

.mobile-social-links a:hover {
   color: var(--color-gold);
}

/* Show hamburger from tablet down */
@media (max-width: 1024px) {
   .hamburger-menu {
      display: flex;
   }
   
   #navigation {
      display: none;
   }
} 

/* Imagem Full Width Section */
.imagem-full-section {
   padding: 0;
   width: 100%;
   overflow: hidden;
}

.imagem-full {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
}

/* ====== CONFIRMATION PAGE ====== */

.confirmation-section {
    padding: 10rem 0;
    background: var(--color-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.confirmation-section .container {
    padding: 0 2rem;
}

.confirmation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-icon {
    margin-bottom: 2rem;
}

.confirmation-icon i {
    font-size: 4rem;
    color: #4caf50;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 700;
}

.confirmation-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.confirmation-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.reservation-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.reservation-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.detail-value {
    color: var(--color-white);
    font-weight: 600;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    min-width: 150px;
}

.confirmation-info {
    background: rgba(191, 156, 96, 0.1);
    border: 1px solid rgba(191, 156, 96, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.confirmation-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.confirmation-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.confirmation-info li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.confirmation-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ====== CONTACT CONFIRMATION SPECIFIC STYLES ====== */

.message-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.message-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.confirmation-icon.success i {
    color: #4caf50;
}

.confirmation-icon.error i {
    color: #f44336;
    animation: errorShake 0.6s ease-in-out;
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.error-details {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.error-message {
    background: rgba(244, 67, 54, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: #ffcdd2;
    word-break: break-word;
}

/* Responsive adjustments for confirmation page */
@media (max-width: 768px) {
    .confirmation-section {
        padding: 5rem 0;
    }
    
    .confirmation-section .container {
        padding: 0 1rem;
    }
    
    .confirmation-content h1 {
        font-size: 2rem;
    }
    
    .confirmation-subtitle {
        font-size: 1.1rem;
    }
    
    .confirmation-description {
        font-size: 1rem;
    }
    
    .reservation-details,
    .message-details {
        padding: 1.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .confirmation-info {
        padding: 1.5rem;
    }
}

/* Benefícios Section */


/* ====== PARTNERS SHOWCASE ====== */

.partners-showcase {
    padding: 6rem 0 4rem;
    background: var(--color-light-gray);
    overflow: hidden;
}

.partners-showcase .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.partners-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-title {
    text-align: center;
}

.partners-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.partners-slider {
    display: inline-flex;
    animation: marquee 60s linear infinite;
}

.partners-track {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    height: 80px;
    position: relative;
}

.partner-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-height: 50px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
}

/* Nome do parceiro no hover */
.partner-name {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.partner-name::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-primary);
}

.partner-item:hover .partner-name {
    opacity: 1;
    visibility: visible;
}

/* Animação do loop infinito */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* Responsivo */
@media (max-width: 768px) {
    .partners-showcase {
        padding: 4rem 0 3rem;
    }
    
    .partners-track {
        gap: 3rem;
        padding-right: 3rem;
    }
    
    .partner-item {
        min-width: 150px;
        height: 60px;
        padding: 1rem 1.5rem;
    }
    
    .partner-logo {
        max-height: 35px;
        max-width: 120px;
    }
    
    .partners-slider {
        animation-duration: 45s;
    }
}

@media (max-width: 480px) {
    .partner-item {
        min-width: 120px;
        height: 50px;
        padding: 0.8rem 1rem;
    }
    
    .partner-logo {
        max-height: 30px;
        max-width: 100px;
    }
} 

/* ===== SEÇÃO SOBRE NÓS ===== */
.sobre-nos-section {
    padding: 6rem 0;
    background: var(--color-white);
}

.sobre-nos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sobre-nos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Coluna da Esquerda - Conteúdo Visual */
.sobre-nos-visual {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sobre-nos-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
}

.overlay-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-text {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Coluna da Direita - Conteúdo de Texto e Botão */
.sobre-nos-content {
    padding-left: 2rem;
    text-align: left;
}

.sobre-nos-tagline {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 0;
}

.sobre-nos-content .section-title {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: left;
}

.sobre-nos-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
    .sobre-nos-grid {
        gap: 3rem;
    }
    
    .sobre-nos-content {
        padding-left: 1rem;
    }
    
    .sobre-nos-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .sobre-nos-section {
        padding: 4rem 0;
    }
    
    .sobre-nos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sobre-nos-content {
        padding-left: 0;
    }
    
    .sobre-nos-content .section-title {
        font-size: 2rem;
    }
    
    .sobre-nos-text {
        font-size: 1rem;
    }
    
    .video-overlay {
        padding: 1.5rem;
    }
    
    .overlay-card {
        padding: 1.2rem 1.5rem;
    }
    
    .overlay-text {
        font-size: 0.9rem;
    }
} 

/* ===== SEGUNDA LINHA - 3 COLUNAS ===== */
.sobre-nos-features {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: left;
    padding: 0;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin: 0 0 1rem 0;
}

/* Responsivo para a segunda linha */
@media (max-width: 1024px) {
    .sobre-nos-features {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .features-grid {
        gap: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .sobre-nos-features {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
    
    .feature-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sobre-nos-features {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
} 

/* ===== TERCEIRA LINHA - PARTNERS SHOWCASE ===== */
.sobre-nos-partners {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sobre-nos-partners h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* Ajustar o partners-showcase dentro da seção sobre-nos */
.sobre-nos-partners .partners-showcase {
    padding: 0;
}

.sobre-nos-partners .partners-slider-wrapper {
    max-width: 100%;
}

/* Responsivo para a terceira linha */
@media (max-width: 1024px) {
    .sobre-nos-partners {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .sobre-nos-partners h3 {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sobre-nos-partners {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
    
    .sobre-nos-partners h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .sobre-nos-partners {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    
    .sobre-nos-partners h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

/* ===== TOURS SECTION ===== */
.tours-section {
    padding: 100px 0;
    background-color: var(--color-light-dark);
}

.tours-header {
    text-align: center;
    margin-bottom: 80px;
}

.tours-header .section-title {
    color: var(--color-white);
    font-family: "Epilogue", sans-serif;
    font-weight: 700;
}

.tours-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    margin-top: 1rem;
    font-weight: 300;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tour-card {
    background: var(--color-dark);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(191, 156, 96, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.tour-card-icon {
    text-align: left;
    padding: 20px 30px 10px 30px;
}

.tour-card-icon i {
    font-size: 3rem;
    color: var(--color-gold);
    transition: all 0.5s ease;
}

.tour-card:hover .tour-card-icon i {
    transform: scale(1.1);
}

.tour-card-content {
    padding: 10px 30px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    line-height: 1.2;
    font-family: "Epilogue", sans-serif;
}

.tour-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
}

.tour-card-details {
    margin-bottom: 30px;
    flex: 1;
}

.tour-card .btn-ghost {
    margin-top: auto;
}

.tour-duration {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(191, 156, 96, 0.1);
    color: var(--color-gold);
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-duration i {
    font-size: 12px;
}

.tour-highlights {
    margin-top: 15px;
}

.tour-highlights small {
    color: var(--color-dark-gray);
    font-size: 14px;
    line-height: 1.4;
    display: block;
}



/* Responsive Design */
@media (max-width: 768px) {
    .tours-section {
        padding: 50px 0;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card-content {
        padding: 20px;
    }
    
    .tour-card-title {
        font-size: 20px;
    }
    
    .tours-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .tours-section {
        padding: 30px 0;
    }
    
    .tour-card-image {
        height: 200px;
    }
    
    .tour-card-content {
        padding: 15px;
    }
    
    .tour-card-title {
        font-size: 18px;
    }
    
    .tour-card-description {
        font-size: 14px;
    }

    .tour-duration {
        font-size: 12px;
        padding: 6px 10px;
    }
} 

/* ===== SERVIÇOS PRIVADOS PAGE ===== */

/* Hero Background Image */
.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
}

/* Elevated Experience Section */
.elevated-experience-section {
   padding: 10rem 0;
   background: var(--color-dark);
}

.elevated-experience-section .container {
   padding: 0 2rem;
}

.elevated-experience-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.elevated-experience-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   padding: 2rem;
}

.elevated-experience-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--color-dark);
   flex-shrink: 0;
}

.elevated-experience-content {
   flex: 1;
}

.elevated-experience-content h3 {
   color: var(--color-white);
   margin-bottom: 1rem;
   font-size: 1.4rem;
   font-weight: 600;
}

.elevated-experience-content p {
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
   font-size: 1rem;
}

/* Responsive Design for Serviços Privados */
@media (max-width: 768px) {
    .elevated-experience-grid {
        grid-template-columns: 1fr;
    }
    
    .elevated-experience-item {
        padding: 1.5rem;
    }
    
    .elevated-experience-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .elevated-experience-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .elevated-experience-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .elevated-experience-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .elevated-experience-content h3 {
        font-size: 1.1rem;
    }
} 

/* ===== PÁGINA CORPORATIVO ===== */

/* Introdução Section */
.introducao-section {
   padding: 5rem 0;
   background: var(--color-light-dark);
}

.introducao-content {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
}

.introducao-content p {
   font-size: 1.2rem;
   line-height: 1.8;
   color: var(--color-gray);
   margin: 0;
}

/* Soluções Dedicadas Section */
.solucoes-dedicadas-section {
   padding: 10rem 0;
   background: var(--color-dark);
}

.solucoes-dedicadas-section .container {
   padding: 0 2rem;
}

.solucoes-dedicadas-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 3rem;
   margin-top: 3rem;
}

.solucao-dedicada-item {
   display: flex;
   align-items: flex-start;
   gap: 2rem;
   padding: 3rem;
   background: var(--color-light-dark);
   border-radius: 15px;
   transition: transform 0.3s ease;
}

.solucao-dedicada-item:hover {
   transform: translateY(-5px);
}

.solucao-dedicada-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   border-radius: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   color: var(--color-dark);
   flex-shrink: 0;
}

.solucao-dedicada-content {
   flex: 1;
}

.solucao-dedicada-content h3 {
   color: var(--color-white);
   margin-bottom: 1.5rem;
   font-size: 1.6rem;
   font-weight: 600;
}

.solucao-dedicada-content p {
   color: rgba(255, 255, 255, 0.9);
   line-height: 1.7;
   font-size: 1.1rem;
}

/* Flexibilidade Section */
.flexibilidade-section {
   padding: 10rem 0;
   background: var(--color-light-dark);
}

.flexibilidade-section .container {
   padding: 0 2rem;
}

.flexibilidade-intro {
   text-align: center;
   font-size: 1.2rem;
   color: var(--color-gray);
   margin-bottom: 3rem;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

.flexibilidade-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.flexibilidade-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   padding: 2rem;
   background: var(--color-dark);
   border-radius: 12px;
   transition: transform 0.3s ease;
}

.flexibilidade-item:hover {
   transform: translateY(-5px);
}

.flexibilidade-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--color-dark);
   flex-shrink: 0;
}

.flexibilidade-content {
   flex: 1;
}

.flexibilidade-content h3 {
   color: var(--color-white);
   margin-bottom: 1rem;
   font-size: 1.4rem;
   font-weight: 600;
}

.flexibilidade-content p {
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
   font-size: 1rem;
}

/* Soluções Section (mantido para compatibilidade) */
.solucoes-section {
   padding: 10rem 0;
   background: var(--color-dark);
}

.solucoes-section .container {
   padding: 0 2rem;
}

.solucoes-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.solucao-item {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
   padding: 2rem;
}

.solucao-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(45deg, var(--color-gold), #d4af37);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: var(--color-dark);
   flex-shrink: 0;
}

.solucao-content {
   flex: 1;
}

.solucao-content h3 {
   color: var(--color-white);
   margin-bottom: 1rem;
   font-size: 1.4rem;
   font-weight: 600;
}

.solucao-content p {
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
   font-size: 1rem;
}

/* Responsive Design for Corporativo */
@media (max-width: 768px) {
    .introducao-content p {
        font-size: 1.1rem;
    }
    
    .solucao-dedicada-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .solucao-dedicada-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }
    
    .solucao-dedicada-content h3 {
        font-size: 1.4rem;
    }
    
    .solucao-dedicada-content p {
        font-size: 1rem;
    }
    
    .flexibilidade-intro {
        font-size: 1.1rem;
    }
    
    .flexibilidade-grid {
        grid-template-columns: 1fr;
    }
    
    .solucoes-grid,
    .flexibilidade-grid {
        grid-template-columns: 1fr;
    }
    
    .solucao-item,
    .flexibilidade-item {
        padding: 1.5rem;
    }
    
    .solucao-icon,
    .flexibilidade-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .solucao-content h3,
    .flexibilidade-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .introducao-content p {
        font-size: 1rem;
    }
    
    .solucao-dedicada-item {
        padding: 1.5rem;
    }
    
    .solucao-dedicada-content h3 {
        font-size: 1.3rem;
    }
    
    .solucao-dedicada-content p {
        font-size: 0.95rem;
    }
    
    .solucao-item,
    .flexibilidade-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .solucao-icon,
    .flexibilidade-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .solucao-content h3,
    .flexibilidade-content h3 {
        font-size: 1.1rem;
    }
} 

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-selector a {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--color-white);
    background: transparent;
    border: 1px solid transparent;
}

.language-selector a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-selector a.active {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

/* Responsive Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .language-selector a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .language-selector {
        gap: 0.25rem;
    }
    
    .language-selector a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
} 

/* ====== BOOKING FORM STYLES ====== */

/* Página de reserva */
.booking-section {
    padding: 4rem 0;
    background: var(--color-light-gray);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    color: var(--color-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-header p {
    color: var(--color-dark-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* ====== BOOKING POPUP ====== */

.booking-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-popup.active {
    opacity: 1;
    visibility: visible;
}

.booking-popup-content {
    background: var(--color-dark);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-popup.active .booking-popup-content {
    transform: scale(1);
}

.booking-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.booking-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
}

.booking-popup-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-popup-header h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.booking-popup-header p {
    color: var(--color-dark-gray);
    margin: 0;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img, .modal-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.modal-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10001;
}

.modal-prev {
    left: -60px;
}

.modal-next {
    right: -60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    pointer-events: auto;
    z-index: 1;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 30px;
}

/* Video thumbnail placeholder styles */
.video-placeholder .gallery-thumbnail {
    filter: blur(3px);
    transform: scale(1.1);
}

.video-placeholder .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.video-placeholder .gallery-overlay i {
    font-size: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-placeholder:hover .gallery-thumbnail {
    filter: blur(2px);
    transform: scale(1.15);
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 10px 10px;
    font-size: 14px;
}

/* Section spacing improvements */
.roteiro-description {
    padding: 5rem 0;
    background: var(--color-light-dark);
}

.roteiro-gallery {
    padding: 60px 0;
    background: var(--color-dark);
}


.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content h2 {
    display: none;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray);
    text-align: left;
}

.description-text p {
    margin: 0 0 20px 0;
}

.description-text strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .description-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .description-text {
        font-size: 1rem;
    }
}

.description-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.description-text ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.description-text ul li:before {
    content: "•";
    color: #3498db;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

.roteiro-gallery h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
    color: #ffffff;
}


@media (max-width: 768px) {
    .roteiro-description,
    .roteiro-gallery {
        padding: 40px 0;
    }
    
    .description-content h2 {
        font-size: 2rem;
    }
    
    .roteiro-gallery h2 {
        font-size: 1.8rem;
    }
}