.elementor-6 .elementor-element.elementor-element-f9160ea{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--gap:10px 10px;--row-gap:10px;--column-gap:10px;}.elementor-6 .elementor-element.elementor-element-f9160ea.e-con{--align-self:center;}.elementor-6 .elementor-element.elementor-element-99a8be9{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-6 .elementor-element.elementor-element-99a8be9.e-con{--align-self:center;--flex-grow:1;--flex-shrink:0;}.elementor-6 .elementor-element.elementor-element-5fcb457.elementor-element{--align-self:center;}/* Start custom CSS for container, class: .elementor-element-f9160ea */:root {
    --primary-green: #008148;
    --soft-blue: #e0f2f1;
    --glass: rgba(255, 255, 255, 0.2);
    --text-dark: #1a1a1a;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
    /* O segredo da centralização está aqui */
    display: flex;
    align-items: center; 
    justify-content: center;
    min-height: 100vh;
    
    color: var(--text-dark);
    position: relative;
}

/* Efeito de bolhas ao fundo */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Garante que as bolhas não atrapalhem cliques */
}

.bubble {
    position: absolute;
    background: rgba(0, 129, 72, 0.1);
    border-radius: 50%;
    bottom: -100px;
    animation: float 10s infinite ease-in;
}

@keyframes float {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1100px; /* Aumentei um pouco para dar mais elegância */
    background: var(--glass);
    backdrop-filter: blur(20px); /* Aumentei o blur para um efeito mais "Premium" */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px; /* Bordas mais arredondadas são mais modernas */
    padding: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo interno */
    box-shadow: 0 40px 60px rgba(0,0,0,0.05);
}

.content {
    flex: 1.2;
    padding-right: 50px;
}

.logo {
    max-width: 180px;
    margin-bottom: 35px;
    display: block; /* Garante que a margem funcione bem */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary-green);
}

p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.8;
}

.tag {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

/* Container da Imagem com o Splash Real */
.product-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* O Splash Real (Atrás da garrafa) */
.product-image::before {
    content: '';
    position: absolute;
    width: 150%; /* Maior que a garrafa */
    height: 150%;
    /* URL de um splash real - Use um PNG transparente */
    background: url('https://refrescabebidas.com.br/wp-content/uploads/2026/04/water-drop.png') no-repeat center;
    background-size: contain;
    z-index: 1;
    opacity: 0.8;
    filter: brightness(1.1);
    animation: splash-entry 1s ease-out forwards, water-float 6s infinite ease-in-out;
}

.product-image img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(25px 25px 40px rgba(0,0,0,0.2));
    position: relative;
    z-index: 3; /* Garrafa no meio */
    animation: hover 5s infinite ease-in-out;
}

/* As Gotas Escorrendo (Na frente da garrafa) */
.product-image::after {
    content: '';
    position: absolute;
    top: 10%;
    width: 60%; /* Ajuste para cobrir apenas a garrafa */
    height: 80%;
    /* URL de gotas/condensação real 
    background: url('https://refrescabebidas.com.br/wp-content/uploads/2026/04/water-drop.png') repeat-y;*/
    background-size: 100% auto;
    z-index: 4; /* Na frente de tudo */
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen; /* Faz as gotas brilharem sobre o rótulo */
    animation: drops-falling 15s linear infinite;
}

/* Animação das Gotas Escorrendo */
@keyframes drops-falling {
    from { background-position: 0 0; }
    to { background-position: 0 1000px; }
}

/* Animação de Entrada do Splash */
@keyframes splash-entry {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* Movimento leve de água */
@keyframes water-float {
    0%, 100% { transform: scale(1.2) rotate(0deg); }
    50% { transform: scale(1.25) rotate(3deg); }
}

/* Flutuação da Garrafa */
@keyframes hover {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

/* Ajustes para telas menores (Mobile) */
@media (max-width: 992px) {
    .container {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 30px 30px;
        margin: 0px;
    }
    .content {
        padding-right: 0;
        margin-bottom: 0px;
    }
    .logo {
        margin: 0 auto 30px auto;
    }
    h1 { font-size: 2.8rem; }
    .product-image img { max-height: 350px; }
}/* End custom CSS */