/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdf1e3; /* Cor de fundo especificada */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis de Cores */
:root {
    --primary-color: #b198b0; /* Cor principal */
    --secondary-color: #e2958d; /* Cor secundária */
    --accent-color: #efccc5; /* Cor de destaque */
    --background-color: #fdf1e3; /* Cor de fundo */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(177, 152, 176, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    display: block;
}

/* Oculta a logo se o arquivo não for encontrado */
.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src="logo.png"]:not([alt]) {
    display: none;
}

/* Se a logo não estiver disponível, remove o gap */
.logo-image:empty + .logo-text,
.logo-image:has(.logo-img:not([src])) + .logo-text {
    margin-left: 0;
}

.logo-text h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(239, 204, 197, 0.3) 100%);
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23b198b0" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23e2958d" opacity="0.15"/><circle cx="40" cy="80" r="2.5" fill="%23efccc5" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(177, 152, 176, 0.3);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 152, 176, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(177, 152, 176, 0.2);
    max-width: 300px;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -10px;
    box-shadow: 0 4px 15px rgba(226, 149, 141, 0.3);
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(177, 152, 176, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.2rem;
}

.floating-element.heart {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.heart i {
    color: var(--primary-color);
}

.floating-element.star {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.star i {
    color: var(--secondary-color);
}

.floating-element.flower {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element.flower i {
    color: var(--accent-color);
}

.floating-element.thread {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

.floating-element.thread i {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    height: 400px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.carousel-section h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(177, 152, 176, 0.2);
    height: 450px;
    min-height: 450px;
    z-index: 5;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 450px;
    min-height: 450px;
    position: relative;
    z-index: 10;
}

.carousel-item {
    min-width: 100%;
    width: 100%;
    height: 450px;
    min-height: 450px;
    position: relative;
    background: var(--accent-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 15;
}

.carousel-item:active,
.carousel-item:focus {
    height: 450px;
    min-height: 450px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 15px;
    z-index: 20;
    position: relative;
}

.carousel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    z-index: 25;
}

.carousel-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-info p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(177, 152, 176, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 30;
    pointer-events: none;
}

.carousel-item:hover .carousel-overlay {
    opacity: 1;
    pointer-events: auto;
}

.carousel-action {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 35;
    position: relative;
}

.carousel-action i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.carousel-action span {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 152, 176, 0.3);
    z-index: 100;
    pointer-events: auto;
}

.carousel-container:hover .carousel-btn {
    z-index: 100;
    opacity: 1;
    visibility: visible;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--background-color);
}

.products h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--accent-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(177, 152, 176, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(177, 152, 176, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(177, 152, 176, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-view:hover {
    background: var(--accent-color);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Estilos para preços por quantidade */
.price-range-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1;
}

.price-range-badge i {
    font-size: 0.8rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-range-hint {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px dashed var(--accent-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    width: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(177, 152, 176, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-color);
}

.contact h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(177, 152, 176, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(177, 152, 176, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: #d8ccd8;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-image {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: block;
}

/* Oculta a logo do footer se o arquivo não for encontrado */
.footer-logo-img:not([src]),
.footer-logo-img[src=""],
.footer-logo-img[src="logo.png"]:not([alt]) {
    display: none;
}

.footer-logo-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.footer-logo-text p {
    opacity: 0.8;
    margin: 0;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
        max-width: 40px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text span {
        font-size: 0.8rem;
    }

    .footer-logo {
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-img {
        height: 100px;
        max-width: 100px;
    }

    .footer-logo-text h3 {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        height: 350px;
        order: -1; /* Colocar imagem acima do texto em tablets */
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .hero-card {
        max-width: 220px;
        transform: rotate(-2deg);
    }

    .hero-main-image {
        height: 180px;
    }

    .hero-image {
        height: 350px;
    }

    .floating-element {
        width: 35px;
        height: 35px;
    }

    .floating-element i {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 350px;
        object-fit: fill;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        justify-content: center;
    }

    .category-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-content {
        padding: 0 15px;
        gap: 0;
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none; /* Ocultar completamente a imagem no mobile */
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .hero-features {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

    .hero-feature {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 80px;
    }

    .hero-feature i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        max-width: 300px;
        border-radius: 25px;
    }

    .carousel-section h2,
    .products h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }

    .products,
    .about,
    .contact,
    .carousel-section {
        padding: 50px 0;
    }

    .about-image img {
        object-fit: fill;
    }
}

/* Animation classes for filtered products */
.product-card.hidden {
    display: none;
}

.product-card.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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