.btn-segmento {
    @apply px-6 py-3 text-sm font-medium border focus:z-10 focus:ring-2 focus:ring-blue-500 focus:text-blue-700 bg-white text-gray-900 border-gray-200 hover:bg-gray-100;
}
.btn-segmento:first-child { @apply rounded-s-lg; }
.btn-segmento:last-child { @apply rounded-e-lg; }
.btn-segmento.active { @apply bg-blue-50 text-blue-700 border-blue-300; }

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f9fafb; /* gray-50 */
    /* Gradientes sutis nos cantos superiores */
    background-image:
            radial-gradient(at 0% 0%, rgba(26, 86, 219, 0.05) 0px, transparent 50%),
            radial-gradient(at 100% 0%, rgba(26, 86, 219, 0.05) 0px, transparent 50%);
    overflow-x: hidden;
    position: relative;
}

/* Container para os "blobs" animados */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Fica atrás do conteúdo */
    pointer-events: none;
}

/* Estilo base dos blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Desfoque forte */
    opacity: 0.6;
    animation: blob 7s infinite;
}

/* Blob Azul (Canto Superior Esquerdo) */
.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background-color: #dbeafe; /* blue-100 */
}

/* Blob Sky (Lateral Direita) */
.blob-2 {
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: #e0f2fe; /* sky-100 */
    animation-delay: 2s; /* Começa depois para desencontrar */
}

/* Animação de flutuação */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}