 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: "Poppins Bold";
            src: url(../src/fonts/Poppins/Poppins-Regular.ttf);
        }

        @font-face {
            font-family: "Poppins Leve";
            src: url(../src/fonts/Poppins/Poppins-Regular.ttf);
        }

        :root {
            --primary-green: #2d5f3f;
            --secondary-green: #4a7c59;
            --accent-orange: #ff6b35;
            --warm-beige: #f4e6d1;
            --dark-brown: #3d2914;
            --light-green: #a8d5ba;
            --gradient-forest: linear-gradient(135deg, #2d5f3f 0%, #4a7c59 100%);
        }

        body {
            font-family: 'Poppins Leve', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: var(--gradient-forest);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img{
            width: 150px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
            position: relative;
            font-size: 20px;
             
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            
            height: 100vh;
            background: linear-gradient(rgba(45, 95, 63, 0.6), rgba(74, 124, 89, 0.6)), 
                        url(./img/imagem-hero.jpg);
            
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-transform: uppercase;
            font-family: "Poppins Bold";
            line-height: 80px;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-orange);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: var(--warm-beige);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: var(--primary-green);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-orange);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-image {
            text-align: center;
        }

        .about-image-placeholder {
            width: 100%;
            height: 450px;
            background: url(./img/foto-james.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(45, 95, 63, 0.3);
        }

        /* Packages Section */
        .packages {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f4e6d1 0%, #e8d5c4 100%);
            background: #2d5f3f;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .package-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(45, 95, 63, 0.15);
            transition: all 0.4s ease;
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(45, 95, 63, 0.25);
        }

        .package-card.featured {
            border: 3px solid var(--accent-orange);
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: 'MAIS POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent-orange);
            color: white;
            padding: 8px 40px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
            z-index: 5;
        }

        .package-image {
            height: 200px;
            background: var(--gradient-forest);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .package-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .package-content {
            padding: 2rem;
        }

        .package-title {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .package-duration {
            color: var(--secondary-green);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .package-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .incluso h5{
            padding-bottom: 10px;
            color: #1a4a2e;
            
        }

        


        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: var(--dark-brown);
        }

        .package-features li img {
            width: 25px;
            
        }

        .package-price {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .price-old {
            color: #999;
            text-decoration: line-through;
            font-size: 1rem;
        }

        .price-current {
            color: var(--accent-orange);
            font-size: 2.2rem;
            font-weight: bold;
            display: block;
            margin: 0.5rem 0;
        }

        .price-note {
            color: #666;
            font-size: 0.8rem;
        }

        .package-button {
            width: 100%;
            background: var(--gradient-forest);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            
        }

        .package-button:hover {
            background: linear-gradient(135deg, #1a4a2e 0%, #2d5f3f 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(45, 95, 63, 0.3);
        }

        .package-card.featured .package-button {
            background: var(--accent-orange);
        }

        .package-card.featured .package-button:hover {
            background: #e55a2b;
        }
        .gallery {
            padding: 6rem 2rem;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            background: var(--light-green);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .foto1 {
            background: url(./img/foto-1-galeria.png);
             background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .foto2 {
            background: url(./img/foto2.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .foto3 {
            background: url(./img/foto3.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .foto4 {
            background: url(./img/foto4.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .foto5 {
            background: url(./img/foto5.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .foto6 {
            background: url(./img/foto6.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 95, 63, 0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item span {
            position: relative;
            z-index: 2;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover span {
            opacity: 1;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--primary-green);
            color: white;
            text-align: center;
        }

        .contact-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: #25D366;
            color: white;
            padding: 1.5rem 1.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            margin-bottom: 30px;
            margin-left: 12px;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button img {
            width: 40px;
        }

        .whatsapp-icon {
            font-size: 1.5rem;
        }

        /* Footer */
        /* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #25d366; /* verde do WhatsApp */
}

.social-icons {
  display: flex;
  gap: 5px;
  font-size: 20px;
}

.social-icons a{
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #25d366;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
}


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
                .packages-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 3rem;
                margin-top: 4rem;
            }
            

            .hero {
                background-attachment: scroll;
            }
            
            .nav-links {
                position: fixed;
                top: 120px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-green);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 12rem;
                transition: left 0.3s ease;
            }

            .nav-links a {
                font-size: 25px;
                text-transform: uppercase;
                
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {

                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .about-image-placeholder{
                
            }

            .hero h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-transform: uppercase;
            font-family: "Poppins Bold";
            line-height: 45px;
        
        }
        }
         .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background: #25d366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        z-index: 10000;
        transition: all 0.3s ease;
        animation: pulse 1.5s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.15);
        background: #20b955;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    /* Animação pulsante */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }