        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-yellw: #f0b010;
            --primary-pink: #ffcbd1;
            --accent-yellow: #FFD700;
            --dark-purple: #5D1A6B;
            --light-pink: #FFB3D1;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-dark: #70366a;
            --red-text: #ff4d4d;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }



        .container {
            max-width: 1400px;
            margin: 5px auto;
            padding: 18px 0px;
        }



        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: -13px -177px auto;
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
            color: white;
            position: fixed;
            width: 122%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            height: 150px;

        }

        header.scrolled {
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));

            --web-backdrop-filter: blur(10px);

        }

        header.hidden {
            transform: translateY(-100%);
            /* sai para cima */
        }

        .social-icons .whatsapp {
            background: #25D366;
            /* verde padrão do WhatsApp */
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-left: 1rem;
        }

        /* Botão flutuante WhatsApp - lado esquerdo */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            left: 20px;
            /* alterado para o lado esquerdo */
            background-color: #25D366;
            /* verde WhatsApp */
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, background-color 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #128C7E;
            /* verde escuro no hover */
        }


        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: transform 0.3s, background-color 0.3s;
            text-decoration: none;
        }


        .social-icons a:hover {
            transform: scale(1.1);
        }

        .social-icons .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
        }

        .social-icons .facebook {
            background: #1877f2;
            color: white;
        }

        .social-icons .tripadvisor {
            background: #00af87;
            color: white;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1rem;
            font-weight: bold;
            color: var(--accent-yellow);
            position: relative;
            display: flex;

        }

        .logo img {
            max-height: 200px;
            /* ajusta à altura do header */
            width: 200px;
            /* mantém a proporção */
            transition: all 0.3s ease;
            margin: 15px 180px auto;/* margens positivas ou zero */
            overflow: hidden;
            padding: 10px; /* Espaço interno */

        }

        .logo img:hover {
            transform: scale(1.05) rotate(-3deg);

            border-radius: 100px;
            box-shadow:
                0 20px 40px rgba(123, 67, 151, 0.5),
                0 10px 20px rgba(123, 67, 151, 0.3),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1rem;
            font-size: 20px;
        }

        .nav-links li {
            position: relative;
        }

        /* Esconde o submenu */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            list-style: none;
            padding: 10px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }

        .dropdown-menu li {
            padding: 8px 20px;
            white-space: nowrap;

        }

        .dropdown-menu li a {
            text-decoration: none;
            color: #ffffff;
        }

        /* Mostra ao passar o mouse */
        .dropdown:hover .dropdown-menu {
            display: block;
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
        }

        .nav-links a {
            color: rgb(255, 255, 255);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-yellow);
            background-color: var(--text-dark);
            border-radius: 5px;
            transition: color 0.5s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            padding: 120px 0 80px 0;
            margin-top: 50px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            animation: fadeInLeft 1.5s ease-out 0.5s forwards;
            opacity: 0;
        }

        .hero-image {
            animation: fadeInRight 1.5s ease-out 1s forwards;
            opacity: 0;
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(123, 67, 151, 0.15);
            transition: all 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(123, 67, 151, 0.25);
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-weight: 300;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            opacity: 0.8;
            line-height: 1.7;
        }

        .cta-button {
            background: var(--primary-yellw);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--primary-yellw);
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: transparent;
            color: var(--primary-yellw);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(123, 67, 151, 0.2);
        }

        /* Sections */
        .section {
            padding: 0px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-dark);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* About Section */
        .about {
            background: var(--light-gray);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .about-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-image {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .about-image.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(123, 67, 151, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 1rem;
            display: inline-block;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-yellw), var(--primary-pink));
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(123, 67, 151, 0.3);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg) scale(1.1);
            background: linear-gradient(135deg, var(--accent-yellow), var(--primary-pink));
        }

        .service-card h3 {
            color: var(--primary-yellw);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(179deg, rgba(240, 176, 16, 1) 0%, rgba(255, 203, 209, 1) 14%, rgba(252, 206, 189, 1) 100%, rgba(240, 176, 16, 1) 100%);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.05)"><polygon points="0,0 1000,0 1000,100 0,80"/></svg>') repeat-x;
            animation: float 6s ease-in-out infinite;
        }

        .testimonials .section-title {
            color: var(--text-dark);
            position: relative;
            z-index: 2;
        }

        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            z-index: 2;
        }

        .testimonial {
            display: none;
            text-align: center;
            padding: 3rem 2rem;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial.active {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: var(--text-dark);
            ;
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            font-family: serif;
        }

        .testimonial p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--text-dark);
            font-size: 1.1rem;
            position: relative;
        }

        .testimonial-author::before {
            content: '';
            width: 50px;
            height: 2px;
            background: var(--text-dark);
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--text-dark);
            transform: scale(1.2);
        }

        /* Footer */
        footer {
            background: var(--primary-yellw);
            color: var(--text-dark);
            text-align: center;
            padding: 3rem 0;
        }

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

        .footer-section h3 {
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--red-text);
        }

        /* Custom Animations */
        @keyframes customAnimationIn {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.8) rotateY(-20deg);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateY(0deg);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-300px) rotateZ(-10deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotateZ(0deg);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(300px) rotateZ(10deg);
            }

            to {
                opacity: 1;
                transform: translateX(0) rotateZ(0deg);
            }
        }

        @keyframes slideInScale {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.3) rotate(180deg);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotate(0deg);
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(123, 67, 151, 0.3);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 0 40px rgba(123, 67, 151, 0.6);
                transform: scale(1.02);
            }
        }

        /* Animation Classes */
        .animate-in {
            animation: customAnimationIn 1.5s ease-out forwards;
            opacity: 0;
        }

        .animate-in-delayed {
            animation: customAnimationIn 1.5s ease-out 0.5s forwards;
            opacity: 0;
        }

        .animate-in-delayed-more {
            animation: customAnimationIn 1.5s ease-out 1s forwards;
            opacity: 0;
        }

        .animate-scale {
            animation: slideInScale 1s ease-out forwards;
            opacity: 0;
        }

        .pulse-effect {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {

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

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-image {
                order: -1;
            }

            .hero-image img {
                height: 300px;
            }

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

            .nav-links {
                display: flex;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }


            /* Oculta os links no mobile */
            .nav-links {
                position: absolute;
                top: 104px;
                /* altura do header */
                left: -100%;
                flex-direction: column;
                background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                transition: left 0.3s ease;
            }

            /* Mostra quando ativo */
            .nav-links.active {
                left: 0;
            }


        }