:root {
    --verde-escuro: #1a5a3a;
    --verde-medio: #2d8b5a;
    --verde-claro: #7dc9a0;
    --verde-menta: #b8e6cc;
    --branco-puro: #ffffff;
    --branco-off: #f8fdf9;
    --dourado: #d4af37;
}

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

 body {
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(145deg, var(--branco-off) 0%, var(--verde-menta) 50%, var(--verde-claro) 100%);
    overflow-x: hidden;
    position: relative;
}

 /* Textura de fundo sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

 .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

 /* Elemento decorativo - papagaio voando random */
.decorative-element {
    position: fixed;
    width: 60px;
    height: 60px;
    opacity: 0.5;
    z-index: 5;
    pointer-events: none;
}

 .papagaio-3 {
    animation: voarRandom 35s ease-in-out infinite;
}

 @keyframes voarRandom {
    0% {
        top: 15%;
        left: 5%;
        transform: scaleX(1) rotate(-5deg);
    }
    8% {
        top: 70%;
        left: 20%;
        transform: scaleX(1) rotate(8deg);
    }
    16% {
        top: 25%;
        left: 45%;
        transform: scaleX(1) rotate(-3deg);
    }
    24% {
        top: 80%;
        left: 75%;
        transform: scaleX(1) rotate(10deg);
    }
    32% {
        top: 10%;
        left: 85%;
        transform: scaleX(1) rotate(-8deg);
    }
    33% {
        transform: scaleX(-1) rotate(-8deg);
    }
    42% {
        top: 55%;
        left: 60%;
        transform: scaleX(-1) rotate(5deg);
    }
    50% {
        top: 20%;
        left: 30%;
        transform: scaleX(-1) rotate(-10deg);
    }
    58% {
        top: 75%;
        left: 10%;
        transform: scaleX(-1) rotate(3deg);
    }
    66% {
        top: 40%;
        left: 50%;
        transform: scaleX(-1) rotate(-6deg);
    }
    67% {
        transform: scaleX(1) rotate(-6deg);
    }
    75% {
        top: 85%;
        left: 35%;
        transform: scaleX(1) rotate(7deg);
    }
    83% {
        top: 30%;
        left: 70%;
        transform: scaleX(1) rotate(-4deg);
    }
    91% {
        top: 60%;
        left: 90%;
        transform: scaleX(1) rotate(5deg);
    }
    100% {
        top: 15%;
        left: 5%;
        transform: scaleX(1) rotate(-5deg);
    }
}

 .papagaio-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

 /* Logo/Escudo area */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

 .logo-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(26, 90, 58, 0.25));
    transition: transform 0.3s ease;
}

 .logo-img:hover {
    transform: scale(1.05);
}

 .titulo {
    text-align: center;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

 .titulo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--verde-escuro);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

 .titulo .subtitulo {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--verde-medio);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

 .em-breve {
    text-align: center;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

 .em-breve h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde-medio) 50%, var(--dourado) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

 .em-breve h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

 .descricao {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

 .descricao p {
    font-size: 1.1rem;
    color: var(--verde-escuro);
    line-height: 1.8;
    font-weight: 300;
}

 .conquistas {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

 .conquista {
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
}

 .conquista .numero {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--verde-escuro);
}

 .conquista .label {
    font-size: 0.75rem;
    color: var(--verde-medio);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

 .newsletter {
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

 .newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

 .newsletter-form input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--verde-claro);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.8);
    width: 280px;
    transition: all 0.3s ease;
}

 .newsletter-form input:focus {
    outline: none;
    border-color: var(--verde-medio);
    box-shadow: 0 0 20px rgba(45, 139, 90, 0.2);
}

 .newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

 .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 90, 58, 0.4);
}

 .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

 .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--verde-escuro);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--verde-claro);
}

 .social-link:hover {
    background: var(--verde-escuro);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 90, 58, 0.3);
}

 .footer {
    margin-top: 3rem;
    padding-bottom: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--verde-medio);
    letter-spacing: 0.1em;
}

 /* Botão Flutuante UR */

.btn-ur-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: fadeInUp 1s ease-out 2s both;
}

 .floating-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--dourado), #c9a227);
    color: var(--verde-escuro);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

 .floating-btn a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.5),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

 .floating-btn a:active {
    transform: translateY(-2px) scale(1);
}

 .floating-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

 /* Pulse animation no botão */
.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: var(--dourado);
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

 @keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

 /* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 /* Partículas flutuantes */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

 .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--verde-claro);
    border-radius: 50%;
    opacity: 0.3;
    animation: rise 15s infinite ease-in;
}

 .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; width: 8px; height: 8px; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; animation-delay: 6s; width: 6px; height: 6px; }
.particle:nth-child(5) { left: 65%; animation-delay: 8s; }
.particle:nth-child(6) { left: 80%; animation-delay: 10s; width: 12px; height: 12px; }
.particle:nth-child(7) { left: 90%; animation-delay: 12s; }

 @keyframes rise {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

 @media (max-width: 768px) {
    .conquistas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }

     .floating-btn {
        bottom: 20px;
        right: 20px;
    }

     .floating-btn a {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}