.elementor-72 .elementor-element.elementor-element-1cb316a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-64612ff *//* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
    color: #333;
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 24px;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: all 0.3s ease;
}

a:hover {
    color: #004080;
}

section {
    padding: 60px 0;
}

/* Botões */
.btn-hero, 
.btn-consequences, 
.btn-expert {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
}

.btn-hero:hover, 
.btn-consequences:hover, 
.btn-expert:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.6);
    color: white;
}
/* Hero Section */
.hero {
    background-color: #d2e8f2;
    color: #333;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.hero h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #555;
    text-align: left;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 24px;
    margin-right: 15px;
    color: #0066cc;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
    animation: pulse 2s infinite;
}

.discount-text {
    font-size: 32px;
    line-height: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Hero Layout */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h2 {
        text-align: center;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .benefit-item {
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
}/* Symptoms Section */
.symptoms {
    background-color: #f0f4f8;
    padding: 60px 0;
}

.symptoms h2 {
    color: #333;
}

.symptoms h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.symptoms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.symptom-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.symptom-item i {
    font-size: 24px;
    color: #ff6b6b;
    margin-right: 15px;
}

.symptoms-warning {
    background-color: #ff6b6b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Consequences Section */
.consequences {
    background-color: white;
    padding: 60px 0;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.consequence-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.consequence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.consequence-icon {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.consequence-img {
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.consequences-cta {
    text-align: center;
    margin-top: 40px;
}

.consequences-cta h3 {
    font-size: 28px;
    color: #ff6b6b;
    margin-bottom: 20px;
}/* Expert Opinion Section */
.expert {
    background-color: #f0f4f8;
    padding: 60px 0;
}

.expert-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.expert-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.expert-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expert-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: white;
}

.expert-name h3 {
    margin-bottom: 5px;
    color: white;
}

.expert-quote {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.expert-quote i.fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #ddd;
}

.expert-quote i.fa-quote-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    color: #ddd;
}

/* Ingredients Section */
.ingredients {
    background: url('https://unicapsules.online/wp-content/uploads/2025/06/bg_component.jpg') center/cover;
    padding: 80px 0;
    position: relative;
    color: white;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.ingredients .container {
    position: relative;
    z-index: 2;
}

.ingredients h2 {
    color: white;
    margin-bottom: 50px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ingredient-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ingredient-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-item h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}

.ingredient-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.ingredients-note {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
}/* Research Results Section */
.research {
    background-color: white;
    padding: 60px 0;
}

.research h2, .research h3 {
    text-align: center;
    margin-bottom: 20px;
}

.research-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.research-table {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #0066cc;
    color: white;
    font-weight: bold;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-cell:first-child {
    justify-content: flex-start;
}

.positive i {
    color: #4CAF50;
    font-size: 20px;
}

.negative i {
    color: #ff6b6b;
    font-size: 20px;
}

/* Testimonials Carousel - VERSÃO CORRIGIDA */
.testimonials {
    background-color: #f0f4f8;
    padding: 60px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%; /* 3 depoimentos = 300% */
}

.testimonial-item {
    min-width: 33.333%; /* Cada item ocupa 1/3 da largura total */
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    box-sizing: border-box;
}

.testimonial-image {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
}

.testimonial-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 3;
    min-width: 300px;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.prev-btn, .next-btn {
    background-color: #0066cc;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #004080;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #0066cc;
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        min-width: 100%;
    }
    
    .testimonial-track {
        width: 300%;
    }
    
    .testimonial-image {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .testimonial-content {
        min-width: auto;
    }
}
}/* How to Use Section */
.how-to-use {
    background-color: white;
    padding: 60px 0;
}

.usage-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.usage-step {
    text-align: center;
    max-width: 250px;
}

.step-icon {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 20px;
    background-color: #f0f4f8;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.usage-step p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Benefits After Treatment Section */
.benefits-after {
    background-color: #f0f4f8;
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-after-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-after-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-after-icon {
    font-size: 30px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-after-img {
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}/* Order Process Section */
.order-process {
    background-color: white;
    padding: 60px 0;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b6b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.step-icon {
    font-size: 30px;
    color: #0066cc;
    margin-bottom: 20px;
    background-color: #f0f4f8;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step p {
    font-size: 16px;
    font-weight: 500;
}

/* Warning Section */
.warning {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 60px 0;
}

.warning h2 {
    color: white;
    margin-bottom: 30px;
}

.warning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.warning-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.warning-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.form-section h2, .form-section h3 {
    color: white;
}

.form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.form-product-image {
    flex: 1;
    max-width: 400px;
    display: none;
}

.form-product-image img {
    width: 100%;
    height: auto;
}

/* Estilos do seu formulário (copiados exatamente) */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-title .highlight {
    color: #FFD700;
    font-size: 28px;
}

.form-container .discount-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    position: relative;
    z-index: 2;
}

.country-select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.country-select:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #888;
    font-style: italic;
}

.price-container {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.old-price {
    text-decoration: line-through;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.new-price {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.6);
}

.submit-button:active {
    transform: translateY(-1px);
}

.guarantees {
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-item::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

.form-container {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Form Layout */
@media (min-width: 992px) {
    .form-product-image {
        display: block;
    }
    
    .form-wrapper {
        flex-wrap: nowrap;
    }
}

/* Mobile Form Layout */
@media (max-width: 768px) {
    .form-container {
        margin: 10px;
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .new-price {
        font-size: 30px;
    }
}/* End custom CSS */