:root {
    --verde-escuro: #2c7b44;
    --verde-claro: #c3d35c;
    --branco: #FFFFFF;
    --cinza-suave: #F4F4F4;
    --preto: #000000;
    --cinza-escuro: #111111;
    --cinza-medio: #0f0f0f;
    --gradiente-verde: linear-gradient(135deg, var(--verde-escuro), var(--verde-claro));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--preto);
    color: var(--branco);
    overflow-x: hidden;
    padding-top: 65px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    background-color: rgba(0, 0, 0, 0.571);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(195, 211, 92, 0.487);
}

.logo {
    height: 45px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 100%;
    max-width: 160px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo-link:hover img {
    transform: scale(1.05);
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--branco);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.menu-toggle:hover {
    color: var(--verde-claro);
    background-color: rgba(195, 211, 92, 0.1);
}

.navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--cinza-escuro);
    padding: 80px 20px 20px;
    transition: all 0.5s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.navbar.active {
    right: 0;
}

.navbar ul {
    list-style: none;
}

.navbar ul li {
    margin-bottom: 15px;
}

.navbar ul li a {
    color: var(--branco);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradiente-verde);
    transition: all 0.4s ease;
    z-index: -1;
}

.navbar ul li a:hover {
    color: var(--preto);
    padding-left: 25px;
}

.navbar ul li a:hover::before {
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--branco);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 4px;
}

.close-btn:hover {
    color: var(--verde-claro);
    background-color: rgba(195, 211, 92, 0.1);
}

/* Hero Section */
.hero {
    height: calc(100vh - 65px);
    position: relative;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--verde-claro);
    background: var(--gradiente-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(195, 211, 92, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--cinza-suave);
    animation: fadeInUp 1s ease 0.3s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradiente-verde);
    color: var(--preto);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 4px 15px rgba(44, 123, 68, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde-claro), var(--verde-escuro));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 123, 68, 0.6);
}

.btn:hover::before {
    opacity: 0.9;
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradiente-verde);
    border-radius: 2px;
}

/* Stats Section */
.stats {
    background-color: var(--preto);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 20px;
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: rgba(44, 123, 68, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(44, 123, 68, 0.1);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradiente-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--verde-claro);
}

.stat-text {
    font-size: 1.2rem;
    color: var(--branco);
    font-weight: 500;
}

/* Packages Section */
.packages {
    background-color: var(--preto);
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background-color: var(--cinza-escuro);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradiente-verde);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(44, 123, 68, 0.3);
}

.package-card:hover::before {
    opacity: 0.1;
}

.package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
}

.package-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.package-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--branco);
    font-weight: 600;
}

.package-description {
    color: var(--cinza-suave);
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--verde-claro);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--verde-claro);
}

.package-btn:hover {
    background: var(--gradiente-verde);
    color: var(--preto);
    transform: translateY(-3px);
}

/* Additional Packages - Initially Hidden */
.additional-package {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.additional-package.show {
    display: block;
}

/* More Packages Button */
.more-packages-btn-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 20px 0;
}

.more-packages-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    background: transparent;
    color: var(--verde-claro);
    border: 2px solid var(--verde-claro);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.more-packages-btn:hover {
    background: var(--gradiente-verde);
    color: var(--preto);
    transform: translateY(-3px);
}

.more-packages-btn .btn-icon {
    transition: transform 0.3s ease;
}

.more-packages-btn.active .btn-icon {
    transform: rotate(180deg);
}

/* About Section */
.about {
    background-color: var(--cinza-escuro);
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--branco);
    font-weight: 700;
}

.about-content h2 .highlight {
    color: var(--verde-claro);
    background: var(--gradiente-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--cinza-suave);
    font-size: 1.1rem;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature i {
    color: var(--verde-claro);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascote {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 123, 68, 0);
}

.highlight {
    color: var(--verde-claro);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--cinza-medio);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    padding: 40px;
    background-color: var(--cinza-escuro);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(195, 211, 92, 0.1);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 1s ease;
}

.testimonial-quote {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradiente-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--cinza-suave);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradiente-verde);
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--preto);
    font-size: 1.8rem;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    text-align: left;
}

.author-info p {
    color: var(--cinza-suave);
    font-size: 1rem;
    text-align: left;
}

.testimonial-rating {
    color: var(--verde-claro);
    font-size: 1.3rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--cinza-suave);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gradiente-verde);
    transform: scale(1.3);
}

/* Parcelamento Section */
.parcelamento {
    background-color: var(--preto);
    text-align: center;
}

.parcelamento-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background: rgba(44, 123, 68, 0.05);
    border: 1px solid rgba(195, 211, 92, 0.1);
}

.parcelamento h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.parcelamento p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--verde-claro);
    text-shadow: 0 0 15px rgba(195, 211, 92, 0.5);
    font-weight: 600;
}

.parcelamento-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.parcelamento-icon {
    font-size: 3rem;
    background: var(--gradiente-verde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact {
    background-color: var(--cinza-escuro);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    color: var(--branco);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid rgba(195, 211, 92, 0.3);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--branco);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-claro);
    box-shadow: 0 0 10px rgba(195, 211, 92, 0.3);
}

.region-select {
    display: none;
}

.region-select.active {
    display: block;
}

/* Location Section */
.location {
    background-color: var(--preto);
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
}

.location iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(195, 211, 92, 0.1);
}

/* Footer */
footer {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('img/FernandoDeNoronha.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 5% 30px;
    color: var(--branco);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 123, 68, 0.1), rgba(195, 211, 92, 0.05));
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-contact h3,
.footer-social h3 {
    color: var(--verde-claro);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--cinza-suave);
}

.footer-contact i {
    color: var(--verde-claro);
    margin-right: 10px;
    width: 20px;
}

/* Estilo para o link de política de privacidade no rodapé */
.privacy-link {
    color: var(--verde-claro);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
    color: var(--branco);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(195, 211, 92, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(195, 211, 92, 0.2);
    padding-top: 30px;
}

.copyright {
    color: var(--cinza-suave);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}