/* Variáveis de cores - Paleta Creme, Roxo e Amarelo */
:root {
    --creme: #f5f5dc;
    --creme-claro: #fafaf0;
    --roxo-principal: #4a2c3d;
    --roxo-escuro: #3d2430;
    --roxo-hover: #5a3a4a;
    --amarelo: #ffd700;
    --amarelo-claro: #ffed4e;
    --branco: #ffffff;
    --branco-suave: #f8f9fa;
    --cinza: #6c757d;
    --cinza-escuro: #343a40;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-forte: rgba(0, 0, 0, 0.2);
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    background-color: var(--creme);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.booking .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--roxo-principal);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-principal), var(--amarelo));
    border-radius: 2px;
}

/* Hero Banner */
/* Imagem real do Colibrí Smart Hostel do Booking.com */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://cf.bstatic.com/xdata/images/hotel/max1024x768/762797800.jpg?k=330aec933560430c3bb049efdd130583501a96c56b7c15a6ac78a72d1edda049&o=') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 50px;
        min-height: 500px;
    }

    body {
        padding-top: 50px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--branco);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo-colibri {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 5rem;
    font-weight: normal;
    display: block;
    margin-bottom: 0.3rem;
}

.logo-coli {
    color: var(--roxo-principal);
}

.logo-bri {
    color: var(--amarelo);
}

.logo-smart {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--roxo-principal);
    text-transform: uppercase;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--amarelo-claro);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-booking {
    background-color: var(--amarelo);
    color: var(--cinza-escuro);
}

.btn-booking:hover {
    background-color: var(--amarelo-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--sombra-forte);
}

.btn-airbnb {
    background-color: var(--branco);
    color: var(--roxo-principal);
}

.btn-airbnb:hover {
    background-color: var(--creme-claro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--sombra-forte);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--branco);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--sombra-forte);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sobre Nós */
.about {
    padding: 5rem 0;
    background-color: var(--creme-claro);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-text-container {
    text-align: left;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--cinza-escuro);
    margin-bottom: 2rem;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Serviços e Comodidades */
.services {
    padding: 5rem 0;
    background-color: var(--branco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card {
    background-color: var(--creme-claro);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.service-image {
    width: 100%;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--sombra);
    border-color: var(--amarelo);
}

.service-icon {
    font-size: 3rem;
    color: var(--roxo-principal);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--roxo-principal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--cinza);
    line-height: 1.6;
}

/* Habitaciones */
.rooms {
    padding: 5rem 0;
    background-color: var(--creme);
}

.rooms-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
}

.rooms-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.room-category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.room-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--amarelo);
}

.room-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--roxo-principal), var(--roxo-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(74, 44, 61, 0.3);
}

.room-category-card h3 {
    color: var(--roxo-principal);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.room-category-subtitle {
    text-align: center;
    color: var(--cinza);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.room-category-desc {
    color: var(--cinza-escuro);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-features li {
    color: var(--cinza-escuro);
    line-height: 2;
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.room-features li i {
    color: var(--amarelo);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.room-type-card {
    background: var(--creme-claro);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.room-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--amarelo);
}

.room-type-card.featured {
    background: linear-gradient(135deg, var(--amarelo), var(--amarelo-claro));
    border-color: var(--amarelo);
}

.room-type-card.featured h4 {
    color: var(--roxo-principal);
}

.room-type-card.featured .room-type-icon {
    background: var(--roxo-principal);
}

.room-type-icon {
    width: 50px;
    height: 50px;
    background: var(--amarelo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--roxo-principal);
}

.room-type-card h4 {
    color: var(--roxo-principal);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.room-type-badge {
    background: var(--roxo-principal);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.room-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.room-type-features li {
    color: var(--cinza-escuro);
    line-height: 1.6;
    padding: 0.3rem 0;
}

.room-type-card.featured .room-type-features li {
    color: var(--roxo-principal);
    font-weight: 500;
}

/* Galeria de Fotos */
.gallery {
    padding: 5rem 0;
    background-color: var(--creme-claro);
}

.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--sombra-forte);
    width: 100%;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    max-width: 100%;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--branco);
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--roxo-principal);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--amarelo);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
    
    .gallery-carousel {
        padding: 0 10px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--cinza);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--roxo-principal);
    transform: scale(1.3);
}

/* Reserva */
.booking {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--roxo-principal) 0%, var(--roxo-principal) 100%);
    color: var(--branco);
}

.booking .section-title {
    color: var(--branco);
}

.booking .section-title::after {
    background: linear-gradient(90deg, var(--branco), var(--amarelo));
}

.booking-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--branco);
}

.booking-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    justify-items: center;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.booking-buttons > * {
    width: 100%;
    max-width: 100%;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.btn-whatsapp-large:hover {
    background-color: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large i {
    font-size: 2.5rem;
}

.btn-whatsapp-large strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.btn-whatsapp-large small {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
}

.btn-booking-large,
.btn-airbnb-large {
    background-color: var(--branco);
    color: var(--roxo-principal);
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.btn-booking-large:hover,
.btn-airbnb-large:hover {
    background-color: var(--amarelo);
    color: var(--cinza-escuro);
    transform: translateY(-5px);
}

.btn-booking-large i,
.btn-airbnb-large i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.btn-booking-large div,
.btn-airbnb-large div,
.btn-whatsapp-large div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.btn-booking-large strong,
.btn-airbnb-large strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.btn-booking-large small,
.btn-airbnb-large small {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.8;
}

/* Avaliações */
.reviews {
    padding: 5rem 0;
    background-color: var(--branco);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.review-card {
    background-color: var(--creme-claro);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--sombra);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--sombra);
}

.review-stars {
    color: var(--amarelo);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--cinza-escuro);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-author {
    color: var(--roxo-principal);
    font-weight: bold;
    text-align: right;
}

/* Endereço & Contato */
.contact {
    padding: 5rem 0;
    background-color: var(--creme-claro);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--roxo-principal);
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: var(--roxo-principal);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--cinza-escuro);
    line-height: 1.8;
}

.contact-item a {
    color: var(--roxo-principal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--roxo-principal);
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--sombra);
}

.map-container iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.contact-form-container {
    background-color: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--sombra);
}

.contact-form-container h3 {
    color: var(--roxo-principal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--roxo-principal);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--roxo-principal);
}

.btn-submit {
    background-color: var(--roxo-principal);
    color: var(--branco);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background-color: var(--roxo-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--sombra);
}

/* Footer */
.footer {
    background-color: var(--cinza-escuro);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
    color: var(--amarelo);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--branco-suave);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--branco-suave);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--amarelo);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--roxo-principal);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--amarelo);
    color: var(--cinza-escuro);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--branco-suave);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-colibri {
        font-size: 3rem;
    }
    
    .logo-smart {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .carousel-slide img {
        height: 300px;
    }

    .booking-buttons {
        grid-template-columns: 1fr;
    }

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

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

    .room-category-card {
        padding: 2rem;
    }

    .room-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-text-container {
        text-align: center;
    }

    .about-cta {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-colibri {
        font-size: 2.5rem;
    }
    
    .logo-smart {
        font-size: 1rem;
    }

    .hero {
        min-height: 500px;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 80px;
    }
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Botão de Tradução */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--sombra);
}

@media (min-width: 769px) {
    .language-selector {
        z-index: 1001;
    }
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--roxo-principal);
    background-color: var(--branco);
    color: var(--roxo-principal);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-btn:hover {
    background-color: var(--roxo-principal);
    color: var(--branco);
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: var(--roxo-principal);
    color: var(--branco);
}

/* CTA na seção Sobre */
.about-cta {
    margin-top: 2rem;
    text-align: center;
}

/* FAQ / Perguntas Frequentes */
.faq {
    padding: 5rem 0;
    background-color: var(--branco);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: var(--creme-claro);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--sombra);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px var(--sombra);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--branco);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--creme-claro);
}

.faq-question h3 {
    color: var(--roxo-principal);
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--roxo-principal);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--cinza-escuro);
    line-height: 1.8;
    margin: 0;
}

/* CTA na seção FAQ */
.faq-cta {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--roxo-principal) 0%, var(--roxo-principal) 100%);
    border-radius: 15px;
    color: var(--branco);
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--branco);
}

.faq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-buttons .btn {
    background-color: var(--branco);
    color: var(--roxo-principal);
}

.faq-buttons .btn:hover {
    background-color: var(--amarelo);
    color: var(--cinza-escuro);
}

/* Menu Mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--roxo-principal);
    z-index: 999;
    padding: 0.75rem 1rem;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 50px;
    box-sizing: border-box;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.25rem;
    z-index: 1001;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background-color: var(--branco);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: var(--roxo-principal);
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 997;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    max-height: 600px;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background-color: var(--roxo-principal);
}

/* Responsividade para botão de idioma */
@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }

    .language-selector {
        top: 8px;
        right: 50px;
        flex-direction: row;
        padding: 0.15rem;
        gap: 0.15rem;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 1002;
    }
    
    .lang-btn {
        padding: 0;
        font-size: 0;
        min-width: auto;
        width: 28px;
        height: 28px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        border: 1.5px solid var(--roxo-principal);
        flex-shrink: 0;
    }

    .lang-btn .lang-text {
        display: none;
    }

    .lang-btn i {
        font-size: 0.7rem;
        margin: 0;
    }

    .lang-btn.active {
        background-color: var(--roxo-principal);
        color: var(--branco);
        border-color: var(--roxo-principal);
    }
    
    .faq-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .booking-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        padding: 0 1rem;
    }

    .booking-buttons > * {
        max-width: 100%;
        width: 100%;
    }

    .btn-whatsapp-large,
    .btn-booking-large,
    .btn-airbnb-large {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .btn-whatsapp-large i,
    .btn-booking-large i,
    .btn-airbnb-large i {
        font-size: 2rem;
    }

    .btn-whatsapp-large strong,
    .btn-booking-large strong,
    .btn-airbnb-large strong {
        font-size: 1.1rem;
    }
    
    .service-image {
        height: 90px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}
