body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgb(241, 0, 0) 3%, rgb(255, 94, 0) 38%, rgb(255, 217, 0) 68%, rgba(255,25,25,1) 98%);
    animation: gradient 13s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

/* animação do fundo */
@keyframes gradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

/* ondas decorativas */
.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2%   { transform: translateX(1); }
    25%  { transform: translateX(-25%); }
    50%  { transform: translateX(-50%); }
    75%  { transform: translateX(-25%); }
    100% { transform: translateX(1); }
}

.container {
    max-width: 800px;
    margin: 0 auto;
   bottom: -100px;
    background: #000000f1;
    padding: 20px;
    border-radius: 70px;
    box-shadow: 0 0 0px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

/* ALTERAÇÃO AQUI: Adicionado color: white */
h1 { 
    text-align: center; 
    color: white;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.search-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.search-button {
    padding: 10px 20px;
    border: none;
    background: #5cb85c;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.search-button:hover {
    background: #398539;
}
.loading {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: white; /* Adicionei branco aqui também caso precise */
}
.recipes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
}
.recipe-card {
    background: #fafafa;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.recipe-card img {
    width: 100%;
    border-radius: 10px;
}
.view-button {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background: #0275d8;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
.view-button:hover {
    background: #01549b;
}
.recipe-details {
    margin-top: 30px;
    padding: 20px;
    background: #eef1ff;
    border-radius: 15px;
}

/* Esteira lateral de imagens */
.conveyor-row {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.conveyor-column {
    width: 120px;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.left-column {
    margin-left: 10px;
}
.right-column {
    margin-right: 10px;
}
.conveyor-image {
    width: 95px;
    height: 95px;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    background: #fff;
    border: 2px solid #eee;
    display: block;
    position: absolute;
    left: 10px;
    animation: vertical-loop 7s linear infinite;
}
@keyframes vertical-loop {
    0% { top: -120px; }
    100% { top: 100vh; }
}
/* Tooltip */
#tooltip {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    display: none;
    white-space: nowrap;
}
.center-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: -20px; /* ajuste fino se quiser mover mais pra cima */
    z-index: 5;
    position: relative;
}

.center-logo img {
    width: 290px;  /* ajuste o tamanho */
    height: auto;
    border-radius: 550px; /* opcional */
}
