/* Main Styles for TREINE JÁ Quiz */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffe6f2 0%, #fff0f5 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ff9ece" opacity="0.3"/></svg>'), url('data:image/svg+xml;utf8,<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path d="M20 40 L40 60 L20 80 L0 60 Z" fill="%23ffb6e1" opacity="0.2"/></svg>');
    background-position: 0 0, 30px 30px;
    animation: floating-bg 30s infinite linear;
}

@keyframes floating-bg {
    0% { background-position: 0 0, 30px 30px; }
    100% { background-position: 100px 100px, 130px 130px; }
}

.quiz-container {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 182, 193, 0.3);
    animation: fadeIn 0.8s ease-out;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff69b4, #ff9ece, #ffb6c1, #ffc0cb, #ff69b4);
    z-index: -1;
    border-radius: 25px;
    opacity: 0.6;
    filter: blur(10px);
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.4; filter: blur(10px); }
    100% { opacity: 0.7; filter: blur(15px); }
}

.screen {
    display: none;
    padding-bottom: 30px;
    min-height: 500px;
}

.screen.active {
    display: block;
    animation: fadeInScreen 0.5s ease-out;
}

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

.header {
    background: linear-gradient(to right, #ff69b4, #ff9ece);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.2"/></svg>');
    opacity: 0.3;
}

.logo-container {
    margin-bottom: 15px;
    margin-left: 0;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-image {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

/* Removido elementos decorativos ao redor do logo */

.logo-container h1 {
    font-size: 2.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    padding: 0 10px;
    position: relative;
}

.logo-container h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.progress-bar {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    z-index: 1;
    animation: progress-animation 1s linear infinite;
}

@keyframes progress-animation {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

.progress {
    height: 100%;
    background: white;
    border-radius: 20px;
    transition: width 0.8s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.content {
    padding: 35px 30px;
    position: relative;
    z-index: 1;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 10 L35 25 L50 30 L35 35 L30 50 L25 35 L10 30 L25 25 Z" fill="%23ffb6c1" opacity="0.05"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff69b4;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 1px 1px 1px rgba(255, 105, 180, 0.1);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    border-radius: 3px;
}

p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.image-container {
    margin: 30px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    padding: 5px;
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
}

.rounded-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.rounded-image:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}

.benefits {
    background-color: #fff5f8;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    border-left: 4px solid #ff69b4;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 182, 193, 0.2) 50%);
    border-radius: 0 0 0 20px;
    z-index: 0;
}

.benefits h3 {
    color: #ff69b4;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefits ul {
    list-style-type: none;
    position: relative;
    z-index: 1;
}

.benefits li {
    padding: 10px 0;
    position: relative;
    padding-left: 35px;
    font-size: 1.05rem;
    color: #555;
}

.benefits li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: normal;
    font-size: 1.2rem;
}

.btn, .primary-btn {
    padding: 14px 8px;
    font-size: 1rem;
    border-radius: 35px;
    margin-top: 20px;
    width: 100%;
    min-width: unset;
    box-sizing: border-box;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 1;
    animation: btn-pattern 1s linear infinite;
}

@keyframes btn-pattern {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.primary-btn {
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.primary-btn:hover {
    background: linear-gradient(to right, #ff5ba7, #ff9ece);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.primary-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Quiz Options */
.quiz-options {
    margin: 30px 0;
}

.option {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 18px;
    border: 1px solid #ffccd5;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.08);
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 182, 193, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.option:hover {
    border-color: #ff9ece;
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.15);
}

.option:hover::after {
    opacity: 1;
}

.option.selected {
    border-color: #ff69b4;
    background-color: #fff5f8;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.2);
}

.option.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ff69b4, #ffb6c1);
}

.emoji {
    font-size: 2.2rem;
    margin-right: 18px;
    min-width: 48px;
    height: 48px;
    text-align: center;
    background: linear-gradient(135deg, #fff5f8, #fff);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.1);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffccd5;
    transition: all 0.4s ease;
}

.option:hover .emoji {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.15);
    background: linear-gradient(135deg, #fff0f5, #fff5f8);
}

.option.selected .emoji {
    background: linear-gradient(135deg, #ff9ece, #ffb6c1);
    color: white;
    border-color: #ff69b4;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.option-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: #555;
    transition: color 0.3s ease;
}

.option.selected .option-text {
    color: #ff69b4;
    font-weight: 500;
}

/* Checkbox Options */
.checkbox-options .option {
    position: relative;
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #ffb6c1;
    border-radius: 8px;
    margin-right: 18px;
    position: relative;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
}

.checkbox:after {
    content: '';
    position: absolute;
    display: none;
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.option.selected .checkbox {
    background-color: #ff69b4;
    border-color: #ff69b4;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.2);
}

.option.selected .checkbox:after {
    display: block;
}

/* Form Elements */
.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ff69b4;
    font-size: 1.05rem;
    position: relative;
    padding-left: 25px;
}

.form-group label::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
    color: #ff9ece;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #ffccd5;
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.08);
    color: #555;
}

.form-input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.15);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #ccc;
    font-style: italic;
}

/* Loading Animation */
.loading-container {
    text-align: center;
    padding: 25px 0;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid #ffecf1;
    border-top: 5px solid #ff69b4;
    border-radius: 50%;
    margin: 35px auto;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
}

.progress-bar-animated {
    height: 25px;
    background-color: #ffecf1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 35px auto;
    max-width: 320px;
    box-shadow: inset 0 2px 8px rgba(255, 105, 180, 0.1);
}

.progress-bar-animated:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, #ff69b4, transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.tip {
    background-color: #fff5f8;
    border-left: 4px solid #ff9ece;
    padding: 20px;
    border-radius: 15px;
    font-size: 1rem;
    margin-top: 35px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.08);
    position: relative;
    overflow: hidden;
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.emoji-highlight {
    font-size: 5rem;
    text-align: center;
    margin: 25px auto;
    padding: 20px;
    background: linear-gradient(135deg, #f8fff9, #e6ffe8);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(1, 249, 42, 0.15);
    border: 3px solid #01f92a;
    transition: transform 0.3s ease;
}

.emoji-highlight:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Animações adicionais */
.animate__animated {
    animation-duration: 0.8s;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

.animate__delay-3s {
    animation-delay: 0.9s;
}

.animate__delay-4s {
    animation-delay: 1.2s;
}

.animate__delay-5s {
    animation-delay: 1.5s;
}

/* Estilos para a Página de Vendas */
.sales-header {
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    padding: 15px 8px;
    position: relative;
    overflow: hidden;
}

.sales-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.2"/></svg>');
    opacity: 0.3;
}

.sales-content {
    padding: 0 5px;
}

.sales-section {
    padding: 18px 5px;
    border-bottom: 1px solid #ffecf1;
    position: relative;
    overflow: hidden;
}

.headline-section {
    background: linear-gradient(135deg, #fff0f5, #ffecf1);
    padding: 25px 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.headline-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.headline-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.headline {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ff69b4;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 1px rgba(255, 105, 180, 0.1);
}

.sub-headline {
    font-size: 1rem;
    color: #ff69b4;
    margin-bottom: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.sub-headline-section {
    background-color: #fff;
    text-align: center;
    padding: 35px 30px;
}

.support-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff69b4;
    font-weight: 600;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ff69b4, #ffb6c1);
    border-radius: 3px;
}

.pain-section p {
    text-align: left;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.7;
}

.benefits-list, .check-list, .results-list, .offer-list {
    list-style-type: none;
    margin: 25px 0;
    padding: 0;
}

.benefits-list li, .check-list li, .results-list li, .offer-list li {
    padding: 12px 0;
    text-align: left;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.benefits-list li {
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: normal;
    font-size: 1.1rem;
}

.results-list li:before, .offer-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial {
    background-color: #fff5f8;
    padding: 25px;
    border-radius: 18px;
    margin: 25px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.testimonial:before {
    content: "";
    font-size: 4.5rem;
    color: rgba(255, 105, 180, 0.1);
    position: absolute;
    top: -15px;
    left: 15px;
    font-family: serif;
}

.testimonial blockquote {
    margin: 0;
    padding: 0 0 0 25px;
    border-left: none;
    position: relative;
    z-index: 1;
}

.testimonial p {
    text-align: left;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #ff69b4;
}

.logo-container h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff69b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-natalia {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff69b4;
}

.logo-fit {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ff69b4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heart-icon {
    color: #ff69b4;
    font-size: 1.2rem;
    margin-left: 5px;
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cta-title {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 18px;
    color: #ff69b4;
    font-weight: 600;
}

.large-btn {
    padding: 14px;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    padding: 10px;
    background-color: #fff5f8;
    border-radius: 25px;
    display: inline-block;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.08);
}

/* Responsividade */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .quiz-container {
        border-radius: 15px;
    }
    
    .header {
        padding: 15px;
    }
    
    .logo-container {
        justify-content: flex-start !important;
    }
    .logo-container h1 {
        font-size: 1.8rem;
    }
    
    /* Aumenta a logo mantendo proporção em telas pequenas */
    .logo-image {
        max-height: 80px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .option {
        padding: 15px;
    }
    
    .emoji {
        font-size: 1.8rem;
        min-width: 35px;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .headline {
        font-size: 1.5rem;
    }
    
    .sub-headline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.results-container {
    text-align: center;
}

/* Animações adicionais para a página de resultados */
.sales-section {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.sales-section:nth-child(2) {
    animation-delay: 0.2s;
}

.sales-section:nth-child(3) {
    animation-delay: 0.4s;
}

.sales-section:nth-child(4) {
    animation-delay: 0.6s;
}

.sales-section:nth-child(5) {
    animation-delay: 0.8s;
}

.sales-section:nth-child(6) {
    animation-delay: 1s;
}

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