/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde-agua: #57A5AD;
    --laranja: #FBB12F;
    --roxo: #56357F;
    --cinza-escuro: #054035;;
    --branco: #FFFFFF;
    --cinza-claro: #F8F9FA;
}

body {
    font-family: "liebedoris", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: var(--cinza-escuro);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: "liebedoris", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.section-title {
    font-size: 70pt;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cinza-escuro);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Header */
.header {
    background: var(--verde-agua);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 20pt;
}

.nav-list .mais{
    background-color: #ffa200;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 20pt;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--branco);
    margin: 3px 0;
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--verde-agua) 0%, var(--laranja) 50%, var(--roxo) 100%);
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
}

.hero-title {
    font-size: 60pt;
    color: var(--branco);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: fadeInLeft 1s ease-out;
    line-height: 100%; 
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 900px;
}

.hero-cta {

    grid-column: 1 / -1;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Botões CTA */
.cta-button {
    color: var(--verde-agua);
    font-family: "liebedoris", sans-serif;
    font-weight: 900;
    font-style: normal;
    line-height: 1.6;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-size: 24pt;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cta-button.secondary {
    background: rgba(245, 222, 179, 0);
}

.cta-button.final {
    background: var(--branco);
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
}

/* Seção Sabores */
.sabores {
    padding: 5rem 0;
    background: var(--cinza-claro);
}

.sabor-bloco {
    margin: 4rem 0;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sabor-bloco:hover {
    transform: translateY(-10px);
}

.sabor-bloco.laranja {
    background: linear-gradient(135deg, var(--laranja) 0%, #FFD66B 100%);
}

.sabor-bloco.uva {
    background: linear-gradient(135deg, var(--roxo) 0%, #8B4FA8 100%);
}

.sabor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.sabor-produto {
    text-align: center;
}

.produto-img {
    width: 300px;
    margin-bottom: 1rem;
}

.sabor-nome {
    font-size: 36pt;
    color: var(--branco);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mascotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.mascote-card {
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mascote-card:hover {
    transform: translateY(-5px);
}

.mascote-img {
    margin-bottom: 1rem;
    height: 100px;
}

.mascote-nome {
    font-size: 36pt;
    color: var(--cinza-escuro);
    margin-bottom: 0.5rem;
    line-height: 30pt;
}

.mascote-historia {
    font-size: 18pt;
    color: var(--cinza-escuro);
    line-height: 1.5;
}

/* Educação Ambiental */
.educacao {
    padding: 5rem 0;
    background: #d3de25;
}

.educacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.educacao-text p {
    font-size: 20pt;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #054035;
}

.educacao-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
}

.educacao-image img {
    width: 100%;
}

/* Games */
.games {
    padding: 5rem 0;
    background: #4ea6b0;
}

.games-content {
    text-align: center;
}

.games-text {
    margin-bottom: 3rem;
}

.games-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--cinza-escuro);
}

.mascotes-chamada {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.mascotes-chamada img{
    height: 100px;
}

.mascote-mini {

    transition: transform 0.3s ease;
}

.mascote-mini:hover {
    transform: scale(1.1);
}

.games-preview {
    margin: 3rem 0;
}

.game-icon img {
    border-radius: 20px;
    width: 100%;
    max-width: 250px;
    transition: all 0.3s ease;
}

.game-icon img:hover {
    transform: scale(1.1);
}

.game-card h3 p{
    text-decoration: none;
}

/* Nutricional */
.nutricional {
    padding: 5rem 0;
    background: var(--cinza-claro);
}

.nutricional-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--cinza-escuro);
    font-weight: 600;
}

.tabelas-nutricionais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tabela-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tabela-card:hover {
    transform: translateY(-5px);
}

.tabela-card.laranja {
    border-top: 5px solid var(--laranja);
}

.tabela-card.uva {
    border-top: 5px solid var(--roxo);
}

.tabela-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tabela-nutricional {
    width: 100%;
    border-collapse: collapse;
}

.tabela-nutricional th,
.tabela-nutricional td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 18pt;
}

.tabela-nutricional th {
    background: var(--cinza-claro);
    font-weight: 700;
    color: var(--cinza-escuro);
}

/* Depoimentos */
.depoimentos {
    padding: 5rem 0;
    background: #f9b000;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.depoimento {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.depoimento-foto {
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.depoimento-balao {
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
}

.depoimento-balao::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--branco);
}

.depoimento-nome {
    font-size: 0.9rem;
    color: var(--verde-agua);
    font-weight: 600;
    margin-top: 0.5rem;
    display: block;
}

/* CTA Final */
.cta-final {
    background: var(--roxo);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--branco);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #4ea6b0;
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    border-radius: 15px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 24pt;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18pt;
}

.footer-links a:hover {
    color: var(--laranja);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mascot-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sabor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .educacao-content {
        grid-template-columns: 1fr;
    }
    
    .mascotes {
        grid-template-columns: 1fr;
    }
    
    .mascotes-chamada {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button.final {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    .hero-image img {
    width: 300px;
}
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sabor-bloco {
        padding: 2rem;
    }
    
    .sabor-nome {
        font-size: 1.5rem;
    }
    
    .depoimento {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .depoimento-balao::before {
        display: none;
    }
}

/* ================================================
   IMAGENS DOS CANTOS FLUTUANTES
   ================================================ */

.corner-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.corner-image {
    position: absolute;
    width: 300px;
    height: 300px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floating 3s ease-in-out infinite;
}

.corner-image.top-left {
    top: 80px;
    left: 20px;
    animation-delay: 0s;
}

.corner-image.bottom-right {
    bottom: 20px;
    right: 20px;
    bottom: 40px;
    animation-delay: 1.5s; /* Deslocamento para criar movimento alternado */
}

.corner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corner-img.active {
    opacity: 1;
}

/* Animações de saída */
.corner-image.slide-out-left {
    transform: translateX(-140px);
    animation: none; /* Para a flutuação durante a saída */
}

.corner-image.slide-out-right {
    transform: translateX(140px);
    animation: none; /* Para a flutuação durante a saída */
}

/* Animação de flutuação */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Variação para movimento mais suave em dispositivos móveis */
@media (max-width: 768px) {
    @keyframes floating {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-8px);
        }
    }
    
    .corner-image {
        width: 80px;
        height: 80px;
    }
}

/* ================================================
   LOADING SCREEN
   ================================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FBB12F 0%, #57A5AD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.loading-mascots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.loading-mascot {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: mascotJump 1.5s ease-in-out infinite;
}

.mascot1 { animation-delay: 0s; }
.mascot2 { animation-delay: 0.3s; }
.mascot3 { animation-delay: 0.6s; }

.loading-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite both;
}



.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0s; }

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: progressBar 3s ease-out forwards;
}

/* Animações */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes mascotJump {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsivo */
@media (max-width: 768px) {
    .loading-logo-img {
        width: 120px;
    }
    
    .loading-mascot {
        width: 45px;
        height: 45px;
    }
    
    .loading-text h2 {
        font-size: 1.2rem;
    }
    
    .loading-bar {
        width: 150px;
    }
}

/* ================================================
   SEÇÃO DOWNLOAD LIVRINHO PARA COLORIR
   ================================================ */

.download-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/fundo-colorir.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.download-section .container {
    position: relative;
    z-index: 2;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 5vw, 3rem);
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.download-text {
    color: white;
    text-align: left;
}

.download-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.download-text p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.download-text .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 6vw, 4rem);
    text-align: left;
}

.download-features {
    display: flex;
    justify-content: flex-start;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.download-features .feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.download-cta {
    margin-top: 1.5rem;
}

.download-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

 .download-preview img {
        width: auto;
        height: 20px;
        border-radius: 10px;
        animation: previewFloat 3s ease-in-out infinite;
    }

.download-preview img:hover {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        text-align: center;
    }
    

    .download-preview img {
        width: auto;
        height: 200px;
        border-radius: 10px;
        animation: previewFloat 3s ease-in-out infinite;
    }


    .download-text {
        text-align: center;
    }
    
    .download-text h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .download-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .download-features .feature {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cta-button.download {
        padding: clamp(0.7rem, 2vw, 0.8rem) clamp(1rem, 3vw, 1.5rem);
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 2rem 0;
    }
    
    .download-content {
        gap: 1rem;
    }
    
    .download-text h1 {
        font-size: 1.3rem;
    }
    
    .download-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .download-preview {
        width: 100%;
    }
    
}

.download-features .feature-icon {
    font-size: 2rem;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.download-cta {
    display: flex;
    justify-content: center;
}

.cta-button.download {
    background: linear-gradient(45deg, #ffd900, #ffa200);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
}

.cta-button.download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    animation: none;
}

.download-icon {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}


.download-preview img {
    width: auto;
    height: 600px;
    border-radius: 10px;
    animation: previewFloat 3s ease-in-out infinite;
}

/* Animações */
@keyframes previewFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 4px 25px rgba(76, 175, 80, 0.4); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Responsivo */
@media (max-width: 768px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .download-features {
        gap: 1rem;
    }
    
    .download-features .feature {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .preview-placeholder {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-button.download {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ================================= */
/* Nova Seção com Background Customizado */
/* ================================= */
.custom-bg-section {
    width: 100%;
    height: 657px;
    margin: 0 auto;
    background-image: url('../images/custom-bg.png'); /* Substitua pelo seu arquivo de background */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-bg-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.custom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.189);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    max-width: 1020px;
    animation: fadeInUp 0.8s ease-out;
}

.custom-image {
    margin-bottom: 2rem;
}

.center-image {
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.center-image:hover {
    transform: scale(1.05);
}

.custom-text {
    text-align: center;
}

.custom-title {
    font-size: 3rem;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
    font-family: "liebedoris", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-description {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    line-height: 1.6;
    max-width: 500px;
    font-weight: 400;
}

/* Animações para a nova seção */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade para a nova seção */
@media (max-width: 768px) {
    .custom-bg-section {
        height: 500px;
        background-attachment: scroll;
    }
    
    .custom-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .custom-title {
        font-size: 2rem;
    }
    
    .custom-description {
        font-size: 1rem;
    }
    
    .center-image {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .custom-bg-section {
        height: 400px;
    }
    
    .custom-content {
        padding: 1rem;
    }
    
    .custom-title {
        font-size: 1.5rem;
    }
    
    .center-image {
        max-width: 120px;
    }
}
