* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal de Disclaimer */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    border: 2px solid #d4af37;
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2em;
}

.modal-content p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-enter, .btn-exit {
    padding: 12px 30px;
    border: 2px solid;    
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-enter {
    border-color: #d4af37;
}

.btn-enter:hover {
    background-color: #fff;
    color: #000;
}

.btn-exit {
    border-color: #d4af37;
}

.btn-exit:hover {
    background-color: #fff;
    color: #000
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: #8b0000;
    text-align: center;
    padding: 8px 0;
    z-index: 1000;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

/* Header */
.header {
    position: fixed;
    top: 35px; /* Altura da top-bar */
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.322);
    padding: 15px 100px;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-bottom: 2%;
}

.logo a {
    text-decoration: none;
    color: #fff;
}

.logo h1 {  
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}


.logo p {
    font-size: 1em;
    letter-spacing: 1px;
    opacity: 0.8;
}

.header.scrolled {
    top: 35px;
    padding: 7px 20px;
    background: rgb(0, 0, 0);
}

.header.scrolled p {
    display: none;
}

.header.scrolled h1 {
  font-size: 40px;
}

.header.scrolled .menu-toggle {
    right: 3%;
    top: 10%;
}

.header.scrolled .logo {
    margin-bottom: 1%;
}

/* Menu Toggle (Sempre visível) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
    position: absolute;
    right: 5%;
    top: 15%;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation Menu (Fullscreen overlay) */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 150;
}

.nav-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #fff;
}

.nav-menu ul {
    list-style: none;
    text-align: center;
}

.nav-menu li {
    margin: 20px 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2em;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu a:hover {
    color: rgb(230, 164, 250);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgb(230, 164, 250);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 250px 150px 0 200px ;
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    color: #fff;
    font-size: 1em;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-text h1 {
    color: #fff;
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #fff;    
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: pink;
    color: #000;
}

/* Hero Slider - Fullscreen Background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    animation: zoomOut 8s ease-out infinite;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 30px;
    pointer-events: none;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    background: #ffffff4f;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    pointer-events: auto;
}

.slider-nav button:hover {
    background: rgb(223, 122, 253);
    transform: scale(1.1);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section.dark {
    background-color: #111;
}

.section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.section.dark h2 {
    color: #fff;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;    
    margin: 0 auto;       
    max-width: 800px;
}

.content-grid p a img {
    width: 80px;
}

.text-content {
    color: #fff;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-content-mobile img {
    display: none;
}

/* Biography */
.bio-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.bio-content p {
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

.stats {
    padding: 40px 0px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.stats p {
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 0 auto;       
    max-width: 800px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 40px;    
    margin: 0 auto;       
    max-width: 800px;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: black;
    border-radius: 10px;
    border: 1px solid #fff;
    margin-bottom: 20px;
}

.service-item h3 {
    color: rgb(230, 164, 250);
    margin-bottom: 15px;
    font-size: 1.3em;
    line-height: 1;
}

.service-item p {
    color: #ff0000;
    line-height: 1.6;
}

/* Rate */
.rate-content {
    padding: 40px 0px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.rate-content p {
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

/* Etiquette */

#etiquette {
    padding-top: 200px;
    margin: auto;
    max-width: 800px !important;
}

.etiquette-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 40px;
    margin: 0 auto;       
    max-width: 800px;
}

.etiquette-item {
    background: rgb(230, 164, 250);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #fff;
}

.etiquette-item h3 {
    color: black;
    margin-bottom: 15px;
    font-size: 1.3em;    
}

.etiquette-item p {
    color: black;
    line-height: 1.6;
}

/* Tour */
.tour-item {
    text-align: center;
    padding: 20px;
    background: black;
    border-radius: 10px;
    border: 1px solid #fff;
    line-height: 2;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;   
    max-width: 800px;
    margin: 40px auto;
}

.tour-item h3 {    
    color: rgb(230, 164, 250);
    font-size: 28px;
    margin-bottom: 10px;
}

.tour-item h4 {    
    color: rgb(255, 255, 255);
    font-size: 25px;    
    margin-bottom: 10px;
}

.tour-item h5 {    
    color: rgb(255, 255, 255);
    font-size: 18px;    
    margin-bottom: 30px;
}


.tour-item p {        
    margin-bottom: 30px;
}

/* Gifts */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;   
    max-width: 800px;
    margin: 40px auto;
}

.gift-item {
    text-align: center;
    padding: 20px;
    background: black;
    border-radius: 10px;
    border: 1px solid #fff;
}

.gift-item h3 {    
    color: rgb(230, 164, 250);
    margin-bottom: 10px;
}

.gift-item h3 img {
   width: 150px;   
   transition: transform 0.3s ease;
}

.gift-item h3 img:hover {
    transform: scale(1.05);
}

#gifts div p {
    margin: auto;
    text-align: center;
    max-width: 800px;
}

/* Link não visitado */
a:link {
  color:  #fff;
}

/* Link visitado */
a:visited {
  color: r #fff;
}

/* Mouse sobre o link */
a:hover {
  color:  #fff;
}

/* Link ativo (sendo clicado) */
a:active {
  color: #fff;
}

.gift-item p {
    color: #fff;
    line-height: 1.6;
}

.section.dark p {
    color: #fff;
}

/* Schedule */
#schedule {
    display: none;
}

.schedule-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.schedule-content p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.availability {
    background: rgb(230, 164, 250);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #fff;
}

.availability h3 {
    color: #fff;
    margin-bottom: 20px;
}

.availability ul {
    list-style: none;
    margin-bottom: 20px;
}

.availability li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.availability li:last-child {
    border-bottom: none;
}

.availability em {
    color: #666;
    font-style: italic;
}

/* Booking */
.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-content > p {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    text-align: center;
    padding: 20px;
    background: black;
    border-radius: 10px;
    border: 1px solid #fff;
}

.contact-item h3 {
    color: rgb(230, 164, 250);
    margin-bottom: 10px;
}

.contact-item p {
    color: #fff;
    font-weight: bold;
}

#socials div p {
    text-align: center;
}

#splash {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      gap: 5px;
      line-height: 3;
    }
    #splash svg {
      width: 20px;
    }

/* Footer */
.footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 1240px) {
    .header {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.26);
    padding: 10px 10px;
    transition: all 0.3s ease;
    }

    .header p {
        font-size: 12px;
    }

    .header.scrolled {        
    padding: 8px 10px;    
    background: rgb(0, 0, 0);
    }

    .header.scrolled h1 {
        font-size: 35px;
    }

    .header.scrolled .menu-toggle span {
        width: 20px;
        height: 2px;        
        margin: 2px 0;
    }

    .logo h1 { 
        font-size: 70px;
    }

    .hero-text  {
        font-size: 12px;
    }

    .hero-text h2 {
        font-size: 1em;
    }

    .cta-button {
        font-size: 12px;
    }

    .content-grid {
        grid-template-columns: 1f 2fr;
        gap: 30px;       
        text-align: justify;
    }

    .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    }

    .image-content-mobile img {
        display: none;
    }

    .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 280px 80px 0 15px;
    }

    .slider-nav {
        padding: 0 20px;
        display: none;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2em;
    }

    .slider-nav button:hover {
        background: #ffffff4f;
        transform: scale(1.1);
    }

    .stats {
        padding: 40px 0px;
        max-width: 800px;
        margin: 0 auto;
        color: #fff;
    }

    .stats p {
        margin-bottom: 25px;
        font-size: 1.1em;
        line-height: 1.8;
        text-align: center;
    }

    .services-grid,
    .etiquette-content,
    .gifts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gift-item h3 img {
        width: 100px;   
        transition: transform 0.3s ease;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 1.5em;
    }

    .close-menu {
        font-size: 2em;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 740px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;       
        text-align: justify;
    }

    .image-content img {
    display: none;
    }

    .image-content-mobile img {
        display: flex;
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin: auto;
    }

    fieldset {
        border: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }

    fieldset div {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    
    /* Top Bar */
   .top-bar {
        font-size: 9px;;
    }

    .logo h1 { 
        font-size: 40px;
    }

    .header.scrolled h1 {
        font-size: 20px;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .hero-slider {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-slider-mobile {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .modal-content {
        padding: 20px;
        margin: 10px;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu a {
        font-size: 1.2em;
    }

    
    .content-grid {
        gap: 5px;
        align-items: center;
    }

    .image-content img {
        display: none;
    }

    .image-content-mobile img {
        display: flex;
        width: 90%;
        height: auto;
        border-radius: 10px;
        margin: 20px auto;
    }

    .container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 5px 20px 50px 20px;
    }

    .container p{
        line-height: 1.6;
    }

    .section {
        padding: 20px 0 0 0;
        line-height: 0;
    }

    .section h2 {
        font-size: 1.3em;
        text-align: center;
        margin-bottom: 30px;
        color: #fff;
    }

    .section p {
        font-size: 14px;
    }

    .stats {
        padding: 40px 0px;
        max-width: 800px;
        margin: 0 auto;
        color: #fff;
    }

    .stats p {
        margin-bottom: 25px;
        font-size: 1.1em;
        line-height: 1.8;
        text-align: center;
    }

    .availability ul {
        list-style: none;
        margin-bottom: 10px;
    }

    .availability li {
        padding: 2px 0;
        border-bottom: 1px solid #eee;
        line-height: 1.6;
    }

    .tour-item h3 {    
    color: rgb(230, 164, 250);
    font-size: 20px;
    margin-bottom: 10px;
}

.tour-item h4 {    
    color: rgb(255, 255, 255);
    font-size: 18px;    
    margin-bottom: px;
}

.tour-item h5 {    
    color: rgb(255, 255, 255);
    font-size: 16px;    
    margin-bottom: px;
}


.tour-item p {        
    margin-bottom: px;
}

    .gift-item h3 img {
        width: 80px;   
    }

    .booking-form div.date-time-group {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

}

    @media (max-width: 320px) {

        .logo h1 { 
        font-size: 30px;
    }

    .etiquette-item h3 {
        line-height: 1;
    }

    .gift-item h3 {
        font-size: 0.9em;
    }

    .gift-item p img {
        width: 100px;
    }

    .contact-item h3 {
        font-size: 0.9em;        
    }

    .contact-item p a {        
        font-size: 0.9em;
    }

    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide modal by default */
.modal.hidden {
    display: none;
}

/* Menu toggle animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

    @media (max-height: 510px) {
        /* Modal de Disclaimer */
    .modal-content {
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        max-width: 500px;
        margin: 20px;
        border: 2px solid #d4af37;
    }

    .modal-content h2 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 1em;
    }

    /* Header */
    .header {
        position: fixed;
        top: 35px;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(0, 0, 0, 0.322);
        padding: 5px 15px;
        transition: all 0.3s ease;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 45px;
    }

    .logo p {
        font-size: 0.5em;
    }

    .header.scrolled {
        padding: 7px 10px;
        background: rgb(0, 0, 0);
    }

    .header.scrolled p {
        display: none;
    }

    .header.scrolled h1 {
        font-size: 25px;
    }

    .header.scrolled .menu-toggle {
        right: 1%;
        top: 10%;
    }

    /* Menu Toggle (Sempre visível) */
    .menu-toggle {
        padding: 5px;
        right: 3%;
        top: 15%;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.3s;
    }

/* Navigation Menu (Fullscreen overlay) */

    .close-menu {
        top: 10px;
        right: 20px;
        font-size: 2em;
    }

    .nav-menu a {
        font-size: 1em;
    }

    .nav-menu a::after {
        height: 1px;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 220px 80px 0 15px ;
    }

    .hero-text {
        max-width: 600px;
    }

    .hero-text h2 {
        font-size: 0.9em;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }

    .hero-text h1 {
        font-size: 2.3em;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 8px 20px;
    }

    .content-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 5px;
        align-items: center;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .container p{
        line-height: 1.6;
    }

    .section {
        padding: 12px 0 0 0;
        line-height: 0;
    }

    .section h2 {
        font-size: 1.3em;
        text-align: center;
        margin-bottom: 30px;
        color: #fff;
    }

    .section p {
        font-size: 14px;
    }

    .availability ul {
        list-style: none;
        margin-bottom: 10px;
    }

    .availability li {
        padding: 2px 0;
        border-bottom: 1px solid #eee;
        line-height: 1.6;
    }

    .gift-item p img {
    width: 150px;
    }

}

/* ============================================
   CORREÇÃO DE OVERFLOW EM MOBILE
   Adicione isto no FINAL do seu style.css
   ============================================ */

/* RESET - Garantir que não há overflow */
* {
    box-sizing: border-box !important;
}

body {
    overflow-x: hidden !important;
    width: 100% !important;
}

html {
    overflow-x: hidden !important;
    width: 100% !important;
}

/* DESKTOP - Menu Horizontal (>768px) */
@media (min-width: 769px) {
    .header {
        padding: 15px 100px !important;
    }

    .nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 1 !important;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        transition: none !important;
        z-index: 150 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .nav-menu.active {
        left: auto !important;
    }

    .close-menu {
        display: none !important;
    }

    .nav-menu ul {
        list-style: none !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }

    .nav-menu li {
        margin: 0 !important;
    }

    .nav-menu a {
        color: #fff !important;
        text-decoration: none !important;
        font-size: 0.9em !important;
        font-weight: 500 !important;
        transition: color 0.3s ease !important;
        position: relative !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .nav-menu a:hover {
        color: rgb(230, 164, 250) !important;
    }

    .nav-menu a::after {
        content: '' !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 2px !important;
        background-color: rgb(230, 164, 250) !important;
        transition: width 0.3s ease !important;
    }

    .nav-menu a:hover::after {
        width: 100% !important;
    }
}

/* MOBILE - Hamburger Menu (≤768px) */
@media (max-width: 768px) {
    /* Ajustar header para mobile */
    .header {
        padding: 10px 15px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .header .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .logo h1 {
        font-size: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo p {
        font-size: 0.7em !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Mostrar hamburger */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 5px !important;
        z-index: 200 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    .menu-toggle span {
        width: 25px !important;
        height: 3px !important;
        background-color: #fff !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
    }

    /* Menu mobile em overlay fullscreen */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: left 0.3s ease !important;
        z-index: 150 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    /* Mostrar botão de fechar */
    .close-menu {
        display: block !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 2.5em !important;
        cursor: pointer !important;
        transition: color 0.3s ease !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .close-menu:hover {
        color: rgb(230, 164, 250) !important;
    }

    .nav-menu ul {
        list-style: none !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 90vw !important;
        line-height: 0.1;
    }

    .nav-menu li {
        margin: 10px 0 !important;
        padding: 0 !important;
    }

    .nav-menu a {
        color: #fff !important;
        text-decoration: none !important;
        font-size: 1.2em !important;
        font-weight: 500 !important;
        transition: color 0.3s ease !important;
        position: relative !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        display: block !important;
        padding: 10px !important;
    }

    .nav-menu a:hover {
        color: rgb(230, 164, 250) !important;
    }

    .nav-menu a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 2px !important;
        background-color: rgb(230, 164, 250) !important;
        transition: width 0.3s ease !important;
    }

    .nav-menu a:hover::after {
        width: 100% !important;
    }

    /* Garantir que o conteúdo não extrapola */
    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }

    main {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    section {
        width: 100% !important;
        overflow-x: hidden !important;
        padding: 40px 15px !important;
    }

    /* Ajustar hero section */
    .hero {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-content {
        padding: 100px 15px 0 15px !important;
        width: 100% !important;
    }

    .hero-text {
        width: 100% !important;
    }

    .hero-text h1 {
        font-size: 1.5em !important;
    }

    .hero-text h2 {
        font-size: 0.9em !important;
    }

    /* Ajustar galeria */
    .gallery-grid {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .gallery-item {
        width: 100% !important;
    }

    .gallery-item img {
        width: 100% !important;
        height: auto !important;
    }
}

/* ============================================
   GALERIA - MODAL DE IMAGEM
   ============================================ */

.gallery-item {
    cursor: pointer !important;
}

.gallery-item img {
    cursor: pointer !important;
}

/* Modal de imagem */
.image-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999 !important;
    padding: 20px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
}

.image-modal-content {
    position: relative !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.image-modal-content img {
    max-width: 100% !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3) !important;
}

/* Botão de fechar */
.close-modal {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    font-size: 2.5em !important;
    color: #d4af37 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    user-select: none !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.close-modal:hover {
    color: #fff !important;
    transform: scale(1.2) !important;
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   Adicione isto no FINAL do seu style.css
   ============================================ */

/* Testimonials Section */
#testimonials {
    background-color: #000 !important;
    padding: 80px 20px !important;
}

#testimonials h2 {
    text-align: center !important;
    font-size: 3em !important;
    color: #fff !important;
    margin-bottom: 60px !important;
    letter-spacing: 2px !important;
    font-weight: 300 !important;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 10px !important;
    padding: 40px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.testimonial-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent) !important;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-5px) !important;
}

/* Quote Icon */
.testimonial-quote {
    margin-bottom: 20px !important;
    color: #d4af37 !important;
    opacity: 0.7 !important;
}

.testimonial-quote svg {
    width: 32px !important;
    height: 32px !important;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'Georgia', serif !important;
    font-size: 1.1em !important;
    color: #e0e0e0 !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    flex-grow: 1 !important;
    font-style: italic !important;
    font-weight: 300 !important;
}

/* Author Section */
.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.author-initials {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #d4af37, #a68a2e) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000 !important;
    font-weight: bold !important;
    font-size: 1.1em !important;
    flex-shrink: 0 !important;
}

.author-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

.author-name {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.95em !important;
    margin: 0 !important;
    padding: 0 !important;
}

.author-date {
    color: #a0a0a0 !important;
    font-size: 0.85em !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    #testimonials {
        padding: 60px 15px !important;
    }

    #testimonials h2 {
        font-size: 2.2em !important;
        margin-bottom: 40px !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .testimonial-card {
        padding: 30px 20px !important;
    }

    .testimonial-text {
        font-size: 1em !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    #testimonials {
        padding: 40px 10px !important;
    }

    #testimonials h2 {
        font-size: 1.8em !important;
        margin-bottom: 30px !important;
        letter-spacing: 1px !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .testimonial-card {
        padding: 25px 15px !important;
    }

    .testimonial-quote svg {
        width: 24px !important;
        height: 24px !important;
    }

    .testimonial-text {
        font-size: 0.95em !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
    }

    .author-initials {
        width: 45px !important;
        height: 45px !important;
        font-size: 1em !important;
    }

    .author-name {
        font-size: 0.9em !important;
    }

    .author-date {
        font-size: 0.8em !important;
    }
}

/* Quando o menu está aberto, colocar o hamburger por trás (z-index baixo) */
.nav-menu.active {
    z-index: 150 !important;
}

.menu-toggle {
    z-index: 200 !important;
}

.menu-toggle.active {
    z-index: 140 !important; /* Fica por trás do nav-menu quando ativo */
}

/* Garantir que o X do nav-menu fica visível e acima */
.nav-menu.active .close-menu {
    z-index: 201 !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Manter a animação do hamburger visível quando não está ativo */
.menu-toggle {
    pointer-events: auto !important;
}

.menu-toggle.active {
    pointer-events: auto !important; /* Permite clicar para fechar */
}

/* FAQ Section Styles */

#faq {
    padding-top: 200px;
    margin: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;    
    line-height: 1.8;
}

.faq-subtitle {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-subtitle h3 {
    font-size: 1.8em;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 1px;    
    line-height: 1.8;
}

.faq-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-warning {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 15px 20px;
    margin-bottom: 40px;
    color: #d4af37;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

/* FAQ Categories */
#faq {
    max-width: 800px !important;

}
.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8em;
    color: #d4af37;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Items */
.faq-item, .faq-section-item {
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-item:hover,.faq-section-item:hover {
    border-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.faq-question, .faq-section-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1em;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.faq-question:hover, .faq-section-question:hover {
    color: #d4af37;
}

.faq-question::after, .faq-section-question::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: #d4af37;
}

.faq-item.active .faq-question::after, .faq-section-item.active .faq-section-question::after  {
    transform: rotate(180deg);
}

.faq-answer, .faq-section-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 20px;
    color: #ccc;
    line-height: 1.8;
    margin: 0;
}

.faq-answer p:first-child {
    padding-top: 20px;
}

.faq-answer p:last-child {
    padding-bottom: 20px;
}

.faq-answer ul {
    margin: 15px 20px;
    padding-left: 30px;
    color: #ccc;
}

.faq-answer ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer ul li::marker {
    color: #d4af37;
}

/* Estilos para o texto introdutório */
.faq-intro-text {
    margin-bottom: 40px;
    padding: 0 20px;
}

.faq-intro-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-intro-text .faq-warning {
    margin-top: 20px;
    margin-bottom: 0;
}

/* Estilos para o drop-down de Categoria */
.faq-category {
    margin-bottom: 20px; /* Reduzir o espaçamento para melhor agrupamento */
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-category.active {
    border-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.category-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-question:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.category-question .category-title, .category-question .faq-category-title {
    margin: 0;
    padding: 0;
    border-bottom: none;
    font-size: 1.4em; /* Ajustar o tamanho para se adequar ao botão */
    color: #d4af37;
    transition: color 0.3s ease;
}

.category-question:hover .category-title, .category-question:hover .faq-category-title {
    color: #fff;
}

.category-question::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
    color: #d4af37;
}

.faq-category.active .category-question::after {
    transform: rotate(180deg);
}

.category-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-category.active .category-answer {
    max-height: 5000px; /* Valor grande para garantir que todo o conteúdo caiba */
}

.category-answer .faq-items {
    padding: 10px 20px 20px 20px; /* Adicionar padding interno */
    gap: 10px; /* Reduzir o espaçamento entre os itens de FAQ */
}

.category-answer .faq-item {
    border: 1px solid #444; /* Ajustar a borda dos itens internos */
}

.category-answer .faq-item:hover {
    border-color: #d4af37;
}

/* Removendo estilos desnecessários que foram substituídos */
.faq-category h3 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-category .faq-items {
    display: block; /* O display flex foi movido para .category-answer .faq-items */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2em;        
        line-height: 1.8;
    }

    .faq-subtitle {
        flex-direction: column;
        gap: 10px;
    }

    .faq-subtitle h3 {
        font-size: 1.4em;        
       line-height: 1.8;
    }

    .category-title {
        font-size: 1.4em;        
        line-height: 1.8;
    }

    .faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .faq-intro {
        font-size: 1em;
    }
}

/* Animation for opening/closing */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer, .faq-item.active .faq-answer {
    animation: slideDown 0.3s ease;
}

/* Estilos para o drop-down principal da seção FAQ */
.faq-section-item {
    border: none;
    background-color: transparent;
    margin-bottom: 30px;
}

.faq-section-item:hover {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
}

.faq-section-question {
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    color: #d4af37;
    font-size: 1.8em;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-section-question h2 {
    margin: 0;
    font-size: 1em;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-section-question p {
    margin: 0;
    font-size: 0.8em;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-section-question:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.faq-section-question::after {
    content: '▼';
    font-size: 1.2em;
    transition: transform 0.4s ease;
    color: #d4af37;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-section-item.active .faq-section-question {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.faq-section-item.active .faq-section-question::after {
    transform: rotate(180deg);
}

.faq-section-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0;
    background-color: transparent;
}

.faq-section-item.active .faq-section-answer {
    max-height: 5000px;
    opacity: 1;
    padding: 30px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

/* Responsive Design para o drop-down principal */
@media (max-width: 768px) {
    .faq-section-question {
        padding: 20px 20px;
        font-size: 1.4em;
    }

    .faq-section-question h2 {
        font-size: 0.8em;
    }

    .faq-section-question::after {
        font-size: 1em;
        margin-left: 10px;
    }

    .faq-section-item.active .faq-section-answer {
        padding: 20px 0;
    }
}

/* Estilos para o Formulário de Agendamento (Adaptado ao tema escuro do site) */
    .booking-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
        padding: 20px;
        background-color: #111; /* Cor de fundo da seção dark */
        border-radius: 10px;
    }

    .booking-content {
        text-align: center;
        padding: 20px;
        background: black;
        border-radius: 10px;
        border: 1px solid #fff;
    }

    .booking-content h3 {
        color: rgb(230, 164, 250);
        margin-bottom: 10px;
    }

    .booking-form input[type="text"],
    .booking-form input[type="tel"],
    .booking-form input[type="email"],
    .booking-form input[type="date"],
    .booking-form input[type="time"],
    .booking-form select,
    .booking-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #333;
        border-radius: 5px;
        background-color: #000; /* Fundo do campo mais escuro */
        color: #fff;
        font-family: 'Georgia', serif;
        font-size: 1em;
        transition: border-color 0.3s ease;
    }

    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
        border-color: rgb(230, 164, 250); /* Cor de destaque ao focar */
        outline: none;
    }

    .booking-form textarea {
        resize: vertical;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
}

input[type="date"] {
    border: none;
    background: none;
    outline: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
}

input[type="time"] {
    border: none;
    background: none;
    outline: none;
}

    .booking-form label {
        color: #fff;
        font-family: 'Georgia', serif;
        font-size: 0.9em;
        margin-bottom: 5px;
        display: block;
    }

    .booking-form div.date-time-group {
        display: flex;
        gap: 15px;
    }

    .booking-form div.date-time-group > div {
        flex: 1;
    }

    /* Estilo para o botão "Send Request" (Baseado no .cta-button do site) */
    .booking-form button[type="submit"] {
        display: inline-block;
        padding: 15px 40px;
        background: transparent;
        border: 2px solid #fff;    
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 10px;
    }

    .booking-form button[type="submit"]:hover {
        background-color: rgb(230, 164, 250); /* Cor de destaque do site */
        color: #000;
    }

    /* Estilo para as opções do select */
    .booking-form select option,
    .booking-form select optgroup {
        background-color: #111;
        color: #fff;
    }
    
    .booking-form select optgroup {
        font-weight: bold;
        color: rgb(230, 164, 250);
    }
    
/* Estilos para mensagens de sucesso e erro */
        .form-message {
            padding: 15px 20px;
            margin-bottom: 20px;
            border-radius: 5px;
            display: none;
            animation: slideIn 0.3s ease-in-out;
        }
        
        .form-message.show {
            display: block;
        }
        
        .form-message.success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }
        
        .form-message strong {
            display: block;
            margin-bottom: 5px;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        #submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }