.elementor-2490 .elementor-element.elementor-element-a8d31e3{--display:flex;}.elementor-2490 .elementor-element.elementor-element-a8d31e3.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:1024px){.elementor-2490 .elementor-element.elementor-element-86545b7{width:100%;max-width:100%;}}@media(max-width:767px){.elementor-2490 .elementor-element.elementor-element-a8d31e3{--width:1600px;--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-2490 .elementor-element.elementor-element-86545b7 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-86545b7 *//* Estilos Globais */
:root {
    --primary-color: #1a2b47;
    --secondary-color: #d4af37;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #c19b2a;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: #3498db;
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(52, 152, 219, 0.3);
}

.btn-tertiary {
    background-color: #9b59b6;
    color: var(--light-text);
}

.btn-tertiary:hover {
    background-color: #8e44ad;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(155, 89, 182, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: var(--light-text);
}

.btn-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(231, 76, 60, 0.3);
}

/* Header/Hero */
.hero {
    background: linear-gradient(rgba(26, 43, 71, 0.85), rgba(26, 43, 71, 0.95)), url('https://images.unsplash.com/photo-1604654894610-df63bc536371?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta {
    margin-top: 2rem;
}

/* Seção de Introdução */
.intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
    margin-bottom: 2rem;
}

.benefits {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
    margin-top: 3px;
}

/* Seção de Produtos */
.products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.product-rating {
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.product-content {
    display: flex;
    flex-direction: column;
}

.product-image {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.product-image img {
    max-height: 300px;
    object-fit: contain;
}

.product-info {
    padding: 30px;
}

.product-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-features {
    margin: 1.5rem 0;
}

.product-features h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.product-features ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 5px;
}

.product-ideal {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.product-alert {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.product-action {
    margin-top: 1.5rem;
    text-align: center;
}

/* Premium Product Styling */
.premium {
    border: 2px solid var(--secondary-color);
}

.premium .product-rating {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Seção de Garantia */
.guarantee {
    padding: 80px 0;
    background-color: #fff;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.guarantee-item {
    padding: 20px;
}

.guarantee-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* CTA Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 43, 71, 0.9), rgba(26, 43, 71, 0.9)), url('https://images.unsplash.com/photo-1604902396830-aca29e19b067?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--light-text);
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: var(--secondary-color);
    transition: var(--transition);
}

footer a:hover {
    color: #c19b2a;
}

/* Media Queries para Responsividade */
@media (min-width: 800px) {
    .product-content {
        flex-direction: row;
    }
    
    .product-image {
        width: 40%;
    }
    
    .product-info {
        width: 60%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .guarantee-items {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #fff; /* Cor branca */
}/* End custom CSS */