:root {
    --primary: #3AA676;
    --secondary: #FF0000;
    --accent: #B68D40;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --text: #e0e0e0;
    --text-light: #a0a0a0;
    --card-bg: #1e1e1e;
    --form-bg: #252525;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--darker);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #2E8B57;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Header */
.header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagens/header-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin: 20px 0 30px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-up {
    transform: translateY(24px);
}

.reveal.reveal-zoom {
    transform: scale(0.92);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Gallery - CARROSSEL 3D */
.gallery-section {
    background-color: var(--darker);
    overflow: hidden;
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    perspective: 1000px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    position: absolute;
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform-origin: center center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateZ(0px) scale(1);
    z-index: 3;
}

.carousel-slide.prev {
    opacity: 0.7;
    transform: translateX(-60%) translateZ(-200px) scale(0.85);
    filter: blur(2px) brightness(0.8);
    z-index: 2;
}

.carousel-slide.next {
    opacity: 0.7;
    transform: translateX(60%) translateZ(-200px) scale(0.85);
    filter: blur(2px) brightness(0.8);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.carousel-slide img.carousel-img-center {
    object-position: center;
}

.carousel-slide img.carousel-img-down {
    object-position: center 25%;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
    z-index: 10;
    position: relative;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(58, 166, 118, 0.5);
}

/* Tours */
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tour-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 15px 0;
}

.tour-features {
    list-style: none;
    margin-bottom: 20px;
}

.tour-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
}

.tour-features li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tour-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 25px;
    background: var(--form-bg);
}

.tour-form.active {
    max-height: 500px;
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: var(--darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    transition: border 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Testimonials - NOVA VERSÃO */
.testimonials-section {
    background-color: var(--darker);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Why Choose Us */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
}

/* About */
.about-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('imagens/about-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Map */
.map-section {
    padding: 0;
    height: 500px;
    background: var(--darker);
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2001;
}

.lightbox-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: var(--darker);
    color: white;
    padding: 80px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-contact {
    text-align: center;
}

.footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    margin-right: 10px;
    color: var(--primary);
}

.footer-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.social-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 20px;
    color: var(--text-light);
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    margin: 0 15px;
    color: var(--text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Custom Styles moved from inline */
.hero-logo {
    display: block;
    width: 80%;
    max-width: 300px;
    min-width: 150px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    position: relative;
    animation: floating 3s ease-in-out infinite;
    z-index: 2;
}

.hero-location {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #3AA676;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    margin-top: 10px;
    animation: floating 3s ease-in-out infinite;
    animation-delay: 0.15s;
}

.footer-social-btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.footer-social-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #128C7E;
}

.footer-social-btn.instagram {
    background: #E1306C;
    color: white;
}

.footer-social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #C13584;
}

.footer-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.footer-nav-btn {
    padding: 8px 16px;
    background: #1e1e1e;
    color: #e0e0e0;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.footer-nav-btn:hover {
    background: #3AA676;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 1200px) {
    .gallery-container {
        height: 450px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .gallery-container {
        height: 400px;
    }
    
    .carousel-slide {
        width: 70%;
        left: 15%;
    }
    
    .carousel-slide.prev {
        transform: translateX(-50%) translateZ(-200px) scale(0.85);
    }
    
    .carousel-slide.next {
        transform: translateX(50%) translateZ(-200px) scale(0.85);
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header,
    .about-section {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery-container {
        height: 350px;
    }
    
    .carousel-slide {
        width: 80%;
        left: 10%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-links a {
        margin: 0 10px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .gallery-container {
        height: 300px;
    }
    
    .carousel-slide {
        width: 90%;
        left: 5%;
        height: 70%;
        top: 15%;
    }
    
    .tours-container {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-links a {
        margin: 10px 0;
    }
    
    .about-content {
        padding: 30px 20px;
    }

    .map-section {
        height: 400px;
    }
    
    .lightbox-content {
        height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-nav {
        padding: 0 15px;
    }
    
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .gallery-container {
        height: 250px;
    }
    
    .carousel-slide {
        width: 95%;
        left: 2.5%;
    }
}

/* Developer Credits */
.developer-credits {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.developer-credits p {
    margin-bottom: 0;
}

.dev-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.dev-contact:hover {
    color: white;
    background: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-icon-inline {
    width: 20px;
    height: 20px;
}
