.elementor-1166 .elementor-element.elementor-element-bc39f10{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5b5b6e4 *//* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #7e64a4;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e62731;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.cta-button {
    display: inline-block;
    background-color: #e62731;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 39, 49, 0.3);
    text-align: center;
}

.cta-button:hover {
    background-color: #d41f29;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 39, 49, 0.4);
}

.cta-button-container {
    text-align: center;
    margin: 30px 0;
}

/* Header */
.header {
    background: linear-gradient(135deg, #7e64a4 0%, #5a4678 100%);
    color: white;
    padding: 50px 0;
}

.header-content {
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 200px;
}

.main-title {
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.header-product {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.product-img {
    max-width: 300px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.header-benefits {
    flex: 1;
    min-width: 300px;
}

.benefits-list {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.benefits-list li img {
    width: 24px;
    margin-right: 15px;
}

/* Seção de Problema */
.problem-section {
    padding: 80px 0;
    background-color: white;
}

.symptoms-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.symptom-img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.symptom-text h3 {
    color: #7e64a4;
    margin-bottom: 15px;
    font-size: 24px;
}

.symptom-text p {
    font-size: 16px;
    line-height: 1.7;
}

/* Seção de Solução */
.solution-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.solution-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.product-large {
    max-width: 350px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-large:hover {
    transform: scale(1.05);
}

.solution-text {
    flex: 1;
    min-width: 300px;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
    border-left: 3px solid #7e64a4;
    padding-left: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7e64a4;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Seção de Ingredientes */
.ingredients-section {
    padding: 80px 0;
    background-color: white;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ingredient-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.ingredient-card h3 {
    color: #7e64a4;
    margin-bottom: 15px;
    font-size: 20px;
}

.ingredient-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Seção de Uso */
.usage-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.usage-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.usage-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.step-content h3 {
    color: #7e64a4;
    margin-bottom: 10px;
    font-size: 22px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
}

.results-timeline {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-title {
    text-align: center;
    color: #7e64a4;
    margin-bottom: 30px;
    font-size: 24px;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e6e6e6;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.timeline-marker {
    background-color: #7e64a4;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* Seção de Especialista */
.expert-section {
    padding: 80px 0;
    background-color: white;
}

.expert-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.expert-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.expert-img {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.expert-text {
    flex: 1;
    min-width: 300px;
}

.expert-quote {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 80px;
    color: rgba(126, 100, 164, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.expert-quote p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.expert-signature {
    text-align: right;
}

.signature-img {
    max-width: 150px;
    margin-bottom: 10px;
}

.expert-name {
    font-weight: 700;
    color: #7e64a4;
    margin-bottom: 5px;
}

.expert-title {
    font-size: 14px;
    color: #666;
}

/* Seção de Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.rating {
    color: #ffc107;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
}

/* Seção de Pedido */
.order-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.order-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.order-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.order-product {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.order-img {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e62731;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(230, 39, 49, 0.3);
}

.discount-badge span:first-child {
    font-size: 28px;
}

.discount-badge span:last-child {
    font-size: 14px;
}

.order-form {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

/* Seção de FAQ */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.faq-toggle {
    color: #7e64a4;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 150px;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .header-flex {
        flex-direction: column;
    }
    
    .solution-content,
    .expert-content {
        flex-direction: column;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-container::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .symptom-item {
        flex-direction: column;
        text-align: center;
    }
    
    .symptom-item:nth-child(even) {
        flex-direction: column;
    }
    
    .usage-step {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .header {
        padding: 30px 0;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Ajustes para o formulário no header */
.header-form {
    margin-top: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.header-form-container {
    max-width: 100%;
}

/* Ajustes para imagens menores */
.smaller-img {
    max-width: 250px;
}

.smaller-usage-img {
    width: 120px;
    height: 120px;
}

/* Estilos para a seção de cientistas */
.scientists-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.scientists-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.scientists-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.scientists-img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.scientists-text {
    flex: 1;
    min-width: 300px;
}

.scientists-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Estilos para a seção de benefícios */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefits-unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-unique-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-unique-card:hover {
    transform: translateY(-5px);
}

.benefit-unique-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.benefit-unique-content h3 {
    color: #7e64a4;
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-unique-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* Ajustes para a seção de solução */
.benefit-card {
    padding: 25px 20px;
    text-align: center;
}

/* Estilos para a seção de como pedir */
.how-to-order-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.order-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.order-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.order-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #7e64a4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.order-step p {
    font-size: 16px;
    line-height: 1.6;
}

/* Ajustes para depoimentos sem imagem */
.testimonial-header {
    justify-content: center;
    margin-bottom: 15px;
}

/* Media queries adicionais */
@media (max-width: 768px) {
    .scientists-content {
        flex-direction: column-reverse;
    }
    
    .benefit-unique-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .order-steps {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Ajustes para o formulário no header */
.header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.header-product {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.header-form {
    flex: 1;
    min-width: 300px;
}

.header-form-container {
    max-width: 100%;
    margin: 0;
}

.header-benefits {
    width: 100%;
    margin-top: 30px;
}

/* Ajustes para imagens menores */
.smaller-img {
    max-width: 250px;
}

.extra-small-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Estilos para a seção de como pedir com ícones */
.order-step-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
}

.order-step-icon i {
    font-size: 28px;
    color: #7e64a4;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* Media queries adicionais */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
    }
    
    .header-product, .header-form {
        width: 100%;
    }
    
    .extra-small-img {
        width: 60px;
        height: 60px;
    }
    
    .order-step-icon {
        width: 60px;
        height: 60px;
    }
    
    .order-step-icon i {
        font-size: 24px;
    }
}

/* Estilos para o formulário - Baseado nas cores solicitadas */
.form-container {
  max-width: 350px;
  padding: 30px 25px;
  border-radius: 20px;
  background: white; /* Fundo branco conforme solicitado */
  color: #7e64a4; /* Texto roxo */
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  position: relative;
  overflow: hidden; /* Para conter o efeito de brilho */
  border: 1px solid rgba(126, 100, 164, 0.2); /* Borda sutil */
}

/* Efeito de brilho passando no fundo */
.form-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(126, 100, 164, 0) 0%,
    rgba(126, 100, 164, 0.05) 50%,
    rgba(126, 100, 164, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 8s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Conteúdo do formulário acima do efeito de brilho */
.form-content {
  position: relative;
  z-index: 2;
}

/* Título do formulário */
.form-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #7e64a4; /* Texto roxo */
  text-transform: uppercase;
}

.product-name {
  color: #7e64a4; /* Texto roxo */
  font-weight: 800;
}

/* Estilos para o seletor de país */
.country-select-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.country-flag {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  z-index: 3;
}

.country-select {
  width: 100%;
  padding: 16px 16px 16px 45px; /* Espaço para a bandeira */
  border: 1px solid rgba(126, 100, 164, 0.3);
  border-radius: 12px;
  font-size: 16px;
  background-color: white;
  color: #666;
  appearance: menulist;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Estilos para os campos de entrada */
.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #7e64a4;
  z-index: 3;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 45px; /* Espaço para o ícone */
  border: 1px solid rgba(126, 100, 164, 0.3);
  border-radius: 12px;
  font-size: 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Montserrat', Arial, sans-serif;
  color: #666;
}

/* Estilos para o preço */
.price-container {
  text-align: center;
  margin: 20px 0;
  background: rgba(126, 100, 164, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.old-price {
  text-decoration: line-through;
  font-size: 18px;
  opacity: 0.7;
  color: #666;
  margin-bottom: 5px;
}

.new-price {
  font-size: 42px;
  font-weight: bold;
  color: #7e64a4; /* Texto roxo */
  margin: 10px 0;
}

.price-label {
  font-size: 14px;
  color: #666;
  opacity: 0.9;
}

/* Estilo para o botão */
.submit-button {
  width: 100%;
  background: #e62731; /* Vermelho vivo conforme solicitado */
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(230, 39, 49, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Efeito de pulsar para o botão */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.submit-button {
  animation: pulse 2s infinite;
}

.submit-button:hover {
  background: #d41f29; /* Vermelho um pouco mais escuro no hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 39, 49, 0.4);
}

.submit-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(230, 39, 49, 0.3);
}

/* Ícone do carrinho */
.cart-icon {
  margin-right: 10px;
  font-size: 20px;
}

/* Selo de segurança */
.security-badge {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #666;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-badge i {
  margin-right: 5px;
  font-size: 14px;
  color: #7e64a4;
}

/* Ajuste para reduzir o tamanho da imagem do produto */
.header-product .product-img {
    max-width: 200px; /* Reduzindo de 300px para 200px */
    height: auto;
}

/* Para telas menores, reduzir ainda mais */
@media (max-width: 768px) {
    .header-product .product-img {
        max-width: 180px;
    }
}/* End custom CSS */