        :root {
            --cream: #f2e9db;
            --gold: #bda484;
            --taupe: #8e8477;
            --dark: #5a5249;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            background: var(--cream);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* LOADER */

        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
            opacity: 0.5;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .loader {
            border: 16px solid var(--cream); /* Cor de fundo */
            border-top: 16px solid var(--taupe); /* Cor da animação */
            border-radius: 50%;
            width: 120px;
            height: 120px;
            animation: spin 2s linear infinite; /* Nome, duração, tempo, repetição */
            }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* LIQUID BACKGROUND */

        .hero {
            height: 100vh;
            display: block;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            background: linear-gradient(45deg, #5a5249, #8e8477, #bda484);
            background-size: 400% 400%;
            animation: gradientMove 15s ease infinite;
        }

        @keyframes gradientMove {

            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }

        }

        .hero p {
            opacity: .9;
        }

        .hero img {
            height: 70vh;
        }

        .btn-agl {
            background: linear-gradient(135deg, var(--gold), var(--taupe));
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 600;
            color: white;
            transition: .3s;
        }

        .btn-agl:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
        }

        /* FLOATING PARTICLES */

        .particle {
            position: absolute;
            border-radius: 50%;
            background: white;
            opacity: .15;
            animation: float 8s infinite linear;
        }

        @keyframes float {

            0% {
                transform: translateY(0)
            }

            100% {
                transform: translateY(-120vh)
            }

        }

        /* CURVE */

        .wave {
            margin-top: -1px;
        }

        /* SECTION */

        .section {
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 40px;
        }

        /* CAROUSEL */

        .carousel img {
            height: 420px;
            object-fit: cover;
            border-radius: 10px;
            
            
        }

        /* FORM */

        .form-area {
            margin-top: -120px;
        }

        .form-card {
            background: rgba(255, 255, 255, .65);
            backdrop-filter: blur(18px);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
        }

        .form-control {
            border-radius: 12px;
        }

        .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 .2rem rgba(189, 164, 132, .25);
        }

        /* LINKS */

        a.linkFooter, .linkFooter:visited {
            text-decoration: none;
            color: var(--gold);
        }

        .linkFooter:hover {
            text-decoration: none;
            color: var(--cream);
        }

        /* FOOTER */

        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 80px;
        }
