.elementor-750 .elementor-element.elementor-element-3cc4811{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--flex-wrap:wrap;--align-content:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-750 .elementor-element.elementor-element-3cc4811.e-con{--align-self:center;--flex-grow:0;--flex-shrink:1;}/* Start custom CSS for html, class: .elementor-element-9de80ac */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fef7f7 0%, #fff5f0 50%, #fff9f0 100%);
    min-height: 100vh;
    max-height: 100vh;
    color: #333;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}



main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: start;
    height: 100%;
    overflow: hidden;
    padding: 5px 0;
    box-sizing: border-box;
}

.product-section {
    position: relative;
    text-align: center;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.product-image {
    max-width: 90%;
    height: auto;
    max-height: 350px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}



.content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    .content {
        padding: 0 5px;
    }
}

/* @media (max-width: 480px) {
    .content {
        padding: 2px;
    }
} */

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e91e63, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
}

h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1;
}

p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #555;
    margin-bottom: 15px;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #2c3e50;
}

.check {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.countdown-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
    padding: 0;
}

.countdown-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.time-unit {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.time-unit label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.progress-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ff8a5c, #ffa726);
    border-radius: 6px;
    transition: width 1s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
}



/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    main {
        grid-template-columns: 1fr;
        gap: 2px;
        text-align: center;
        padding: 5px 0;
    }
    
    .product-section {
         order: -1;
         padding-top: 20px;
     }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 2px;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .benefits {
         grid-template-columns: 1fr;
         gap: 5px;
         margin-bottom: 8px;
         justify-items: center;
         text-align: center;
     }
    
    .countdown-section {
         margin-top: 8px;
     }
     
     .progress-container {
         max-width: 300px;
         padding: 0 10px;
     }
    
    .countdown-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .countdown {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 10px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    
    
    .product-image {
         max-height: 160px;
         max-width: 70%;
     }
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
    }
    
    main {
        gap: 0;
        padding: 0;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    
    h2 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .benefits {
         margin-bottom: 5px;
         justify-items: center;
         text-align: center;
     }
    
    .countdown-section {
         margin-top: 5px;
     }
     
     .progress-container {
         max-width: 250px;
         padding: 0 15px;
     }
    
    .countdown-section h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .countdown {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .time-unit {
        min-width: 55px;
        padding: 8px;
    }
    
    .time-unit span {
        font-size: 1.3rem;
    }
    
    .time-unit label {
        font-size: 0.75rem;
    }
    
    .product-image {
          max-height: 140px;
          max-width: 65%;
      }
}/* End custom CSS */