/* Aumentar a altura e largura do mini-cart */
.ct-cart-content {
  background-color: #fff !important;
  color: #333 !important;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Ajuste nas cores dos itens no carrinho */
.ct-cart-content .elementor-menu-cart__product {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/* Ajuste nos links de produto e subtotal */
.ct-cart-content .elementor-menu-cart__product-name a {
  font-size: 16px;
  font-weight: 600;
  color: #007b83;
  text-decoration: none;
}

.ct-cart-content .elementor-menu-cart__product-name a:hover {
  text-decoration: underline;
}

.ct-cart-content .elementor-menu-cart__product-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.ct-cart-content .elementor-menu-cart__subtotal {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

/* Estilo dos botões de ação */
.ct-cart-content .elementor-menu-cart__footer-buttons .elementor-button {
  background-color: #007b83;
  color: #fff;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  margin-top: 10px;
}

.ct-cart-content .elementor-menu-cart__footer-buttons .elementor-button:hover {
  background-color: #005f66;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Adicionar espaçamento entre o título e os itens */
.ct-cart-content .elementor-menu-cart__product-name {
  margin-bottom: 8px;
}

/* Ajustar o tamanho das imagens para mais uniformidade */
.ct-cart-content .elementor-menu-cart__product-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

/* Ajustar o espaçamento entre o título "Redes Sociais" e os ícones */
.ct-cart-content .elementor-menu-cart__product-name,
.ct-cart-content .redes-sociais a {
  margin-bottom: 12px;
}

/* Cores do ícone de redes sociais */
.ct-cart-content .redes-sociais a {
  display: inline-block;
  margin-right: 15px;
}

.ct-cart-content .redes-sociais a svg {
  width: 24px;
  height: 24px;
  color: #007b83;
  transition: color 0.3s, transform 0.3s;
}

.ct-cart-content .redes-sociais a:hover svg {
  color: #005f66;
  transform: translateY(-4px);
}


/* Corrige layout dos botões do mini cart */
.ct-cart-content .elementor-menu-cart__footer-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

/* Faz os botões ocuparem espaço igual */
.ct-cart-content .elementor-menu-cart__footer-buttons .elementor-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    box-sizing: border-box;

    white-space: normal;
    line-height: 1.3;
}

/* Corrige texto interno */
.ct-cart-content .elementor-menu-cart__footer-buttons .elementor-button-text {
    width: 100%;
    text-align: center;
}

/* Mobile */
@media (max-width: 480px) {

    .ct-cart-content .elementor-menu-cart__footer-buttons {
        flex-direction: column;
    }

    .ct-cart-content .elementor-menu-cart__footer-buttons .elementor-button {
        width: 100%;
    }
}




/* === Carrossel de Mais Vendidos === */

.home-products .carousel-title {
  display: block;
  width: 100%;
  text-align: center;
}

.icon-fire {
  font-size: 22px;
}

.product-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-slide img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 200px;
}

.product-title {
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

.product-price {
  font-weight: 600;
  color: var(--accent-color, #007b83);
  /*margin-top: 4px;*/
}

@media (max-width: 768px) {
  .mais-vendidos-carousel {
    margin: 30px 0;
  }
  .product-slide img {
    max-height: 160px;
  }
}

/* === Carrossel de Promoções === */
.promocoes-carousel {
  margin: 50px 0;
  text-align: center;
}

.promocoes-carousel .carousel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--headings-color, #222);
}

.icon-sale {
  color: #ff8800;
}

.promocoes-carousel .product-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.promocoes-carousel .product-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.promocoes-carousel img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 200px;
}

.promocoes-carousel .product-title {
  font-weight: 500;
  font-size: 14px;
  margin-top: 8px;
  color: #333;
}

.promocoes-carousel .product-price {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--accent-color, #007b83);
  margin-top: 4px;
}

.promocoes-carousel .product-price del {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.promocoes-carousel .product-price ins {
  color: #e63946;
  font-size: 15px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .promocoes-carousel {
    margin: 30px 0;
  }
  .promocoes-carousel img {
    max-height: 160px;
  }
}


/* Remove espaçamento excessivo entre campos do Contact Form 7 */
.wpcf7-form p {
  margin-bottom: 8px;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 6px;
}

/* Remove quebras de linha automáticas */
.wpcf7-form br {
  display: none;
}


/*Estilo do plugin Parcelas, espaco entre os textos*/

.fswp_in_cash_price p,
.fswp_installments_price p {
    margin-top: 4px;
    margin-bottom: 4px;
}


/* HeroHomepage */
/* Imagem como widget e nao background para melhorar LCP */
/* HERO BASE */
.hero-home {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

/* WRAP DA IMAGEM */
.hero-img-wrap {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* IMAGEM */
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 75vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px 20px;
}

/* OVERLAY */
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-home {
    min-height: 85vh;
  }

  .hero-content {
    min-height: 85vh;
    padding: 30px 20px;
  }
}



/* ===== GRID CATEGORIAS HOME ===== */

.home-cat-grid {
  margin: 30px 0;
}

/* Título */
.home-cat-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;

  color: var(--headings-color, #222);
}


/* Mobile ajuste */
@media (max-width: 480px) {
  .home-cat-title {
    font-size: 22px;
  }
}

/* Container Grid */
.home-cat-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Desktop */
@media (min-width: 768px) {
  .home-cat-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Card */
.home-cat-item {
  display: flex;
  flex-direction: column; /* imagem em cima, texto embaixo */
  align-items: center;
  text-align: center;
  text-decoration: none;

  background: #fff;
  border-radius: 12px;
  padding: 12px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

/* Hover */
.home-cat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(0,0,0,0.15);
}

/* Imagem */
.home-cat-item img {
  width: 100%;
  max-width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Texto */
.home-cat-item span {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

/* Mobile ajuste */
@media (max-width: 480px) {
  .home-cat-item span {
    font-size: 13px;
  }
}

.home-cat-item:hover span {
  color: #0073aa;
}


.home-cat-item {
  cursor: pointer;
}

.home-cat-item:active {
  transform: scale(0.97);
}

/* Espaçamento padrão entre blocos da home */

.home section,
.home .elementor-section,
.home .elementor-container,
.home .home-cat-grid,
.home .mais-vendidos-carousel,
.home .promocoes-carousel {
  margin-bottom: 48px;
}

/* Mobile: menos espaço */
@media (max-width: 480px) {
  .home section,
  .home .elementor-section,
  .home .elementor-container,
  .home .home-cat-grid,
  .home .mais-vendidos-carousel,
  .home .promocoes-carousel {
    margin-bottom: 32px;
  }
}



/*Forçar categorias como 1:1 */
.elementor-widget-image-box .elementor-image-box-img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}



/* ==============================
   GRID PRODUTOS HOME
   ============================== */

.home-products {
  margin: 40px 0;
}

/* Grades usadas nos blocos da Home */
.home-products-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* Card */
.home-product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Imagem */
.home-product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}

.home-product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Badge */
.badge-sale {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
}

/* Informações - compatibilidade com os dois formatos usados na Home */
.home-product-info {
  text-align: center;
}

.home-product-card .product-title,
.home-product-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
  min-height: 40px;
}

.home-product-card .product-price,
.home-product-price {
  font-size: 15px;
  font-weight: 600;
  color: #0a7cff;
}

/* Responsivo */
@media (max-width: 1024px) {
  .home-products-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-products-wrapper,
  .home-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-products-grid {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .home-products-wrapper {
    gap: 12px;
  }
}


/* Shortcode de produtos utilizado na pagina da loja */
/* ===== BLOCO PRODUTOS ===== */

.vp-produtos-bloco {
  margin: 40px 0;
}

.vp-produtos-titulo {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* GRID */

.vp-produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .vp-produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .vp-produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */

.vp-produto-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  position: relative;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.vp-produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* IMAGEM */

.vp-produto-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* NOME */

.vp-produto-nome {
  font-size: 15px;
  margin: 10px 0 6px;
  min-height: 40px;
}

/* PREÇO */

.vp-produto-preco {
  font-weight: 600;
  margin-bottom: 10px;
}

.vp-produto-preco ins {
  color: #0a7cff;
  text-decoration: none;
}

/* BOTÃO */

.vp-btn-comprar {
  display: inline-block;
  background: #0a7cff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.vp-btn-comprar:hover {
  background: #0866d6;
  color: #fff;
}

/* BADGE */

.vp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4d;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}



/* Diminuir imagem sem quebrar responsivo */
.elementor-image-box-img img {
    width: 100% !important;
    height: auto !important;
    max-width: 227px !important;
    margin: 0 auto;
    display: block;
}




/*Forçar prioridade da imagem do hero do curso basico*/
.hero-curso-basico {
    background-image: url("https://vempromar.com.br/wp-content/uploads/2025/12/padi-hero-curso-basico-owd-scaled.jpeg") !important;
}



/* Post comparativo de mascaras cressi */

/* Desktop */

.review-mergulho h1{
font-size:30px;
margin-bottom:15px;
}

.review-mergulho h2{
font-size:24px;
margin-top:50px;
margin-bottom:15px;
}

/* Mobile */

@media (max-width:768px){

.review-mergulho h1{
font-size:24px;
}

.review-mergulho h2{
font-size:18px;
margin-top:35px;
}

.review-mergulho p{
font-size:15px;
}

.review-mergulho table{
font-size:13px;
}

.review-botao{
font-size:14px;
padding:10px 16px;
}

}

/* Lista de Marcas */
.titulo-marcas {
    font-size: 16px;
    font-weight: bold;
}

.lista-marcas {
    columns: 2;
    list-style: none;
    padding: 0;
}



/* Título das categorias de produtos */
[data-prefix="woo_categories"] .entry-header .page-title {
    color: #ffffff !important;
    text-align: left !important;
}


/* Hero das categorias WooCommerce - Mobile */
@media (max-width: 689px) {

    [data-prefix="woo_categories"] .entry-header .page-title {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    [data-prefix="woo_categories"] .entry-header .page-description {
        display: none !important;
    }

}



/* ==============================
   FILTROS DA LOJA - VEM PRO MAR
   ============================== */

/* Títulos: Marca, Categoria, Preço */
.widget_wpc_filters_widget .wpc-filter-title,
.wpc-filters-widget-main-wrapper .wpc-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 12px;
}

/* Reduz espaço excessivo entre os grupos */
.widget_wpc_filters_widget .wpc-filters-section,
.wpc-filters-widget-main-wrapper .wpc-filters-section {
    margin-bottom: 28px;
}

/* Texto das opções */
.wpc-filters-widget-main-wrapper .wpc-filter-content a,
.wpc-filters-widget-main-wrapper .wpc-filter-content label {
    font-size: 15px;
    line-height: 1.4;
    color: #3f556b;
}

/* Quantidade de produtos: (12), (6), etc */
.wpc-filters-widget-main-wrapper .wpc-term-count {
    font-size: 12px;
    color: #a3adba;
    margin-left: 3px;
}

/* Checkbox */
.wpc-filters-widget-main-wrapper input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

/* Um pouco mais de espaço entre opções */
.wpc-filters-widget-main-wrapper li {
    margin-bottom: 7px;
}

/* Campos mínimo/máximo de preço */
.wpc-filters-widget-main-wrapper input[type="number"],
.wpc-filters-widget-main-wrapper input[type="text"] {
    border: 1px solid #d8e0e8;
    border-radius: 5px;
    min-height: 40px;
}

/* Chips ativos */
.wpc-filter-chips-list a {
    border-radius: 20px;
    font-size: 14px;
}

/* Reset all mais discreto */
.wpc-filter-chips-list .wpc-chip-reset-all a,
.wpc-filter-chips-list a.wpc-chip-reset-all {
    font-size: 13px;
}

/* Mobile: não criar espaçamentos enormes */
@media (max-width: 689px) {
    .widget_wpc_filters_widget .wpc-filters-section,
    .wpc-filters-widget-main-wrapper .wpc-filters-section {
        margin-bottom: 22px;
    }
}



/* Conteúdo SEO inferior das categorias */
.vpm-category-seo {
    max-width: 1100px;
    margin: 70px auto 30px;
    padding: 0 20px;
    color: #3f556b;
}

.vpm-category-seo h2 {
    color: #003366;
    font-size: 28px;
    line-height: 1.25;
    margin: 42px 0 16px;
}

.vpm-category-seo h3 {
    color: #003366;
    font-size: 20px;
    line-height: 1.35;
    margin: 28px 0 10px;
}

.vpm-category-seo p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.vpm-category-seo ul {
    margin: 0 0 20px 20px;
}

.vpm-category-seo li {
    margin-bottom: 8px;
}

@media (max-width: 689px) {
    .vpm-category-seo {
        margin-top: 45px;
        padding: 0 18px;
    }

    .vpm-category-seo h2 {
        font-size: 23px;
    }

    .vpm-category-seo h3 {
        font-size: 18px;
    }

    .vpm-category-seo p {
        font-size: 15px;
    }
}


/* ==============================
   FAQ COLAPSÁVEL - CATEGORIAS
   ============================== */

.vpm-faq-item {
    border-bottom: 1px solid #dfe6ed;
}

/* Pergunta */
.vpm-faq-item h3 {
    position: relative;
    margin: 0;
    padding: 18px 42px 18px 0;
    cursor: pointer;

    color: #003366;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;

    transition: color 0.2s ease;
}

/* Ícone + */
.vpm-faq-item h3::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #003366;
}

/* Ícone − quando aberto */
.vpm-faq-item.is-open h3::after {
    content: "−";
}

/* Hover */
.vpm-faq-item h3:hover {
    color: #005f9e;
}

/* Resposta fechada */
.vpm-faq-answer {
    display: none;
    padding: 0 0 18px;
}

/* Resposta aberta */
.vpm-faq-item.is-open .vpm-faq-answer {
    display: block;
}

/* Remove espaços exagerados dentro da resposta */
.vpm-faq-answer p:first-child,
.vpm-faq-answer ul:first-child,
.vpm-faq-answer ol:first-child {
    margin-top: 0;
}

.vpm-faq-answer p:last-child,
.vpm-faq-answer ul:last-child,
.vpm-faq-answer ol:last-child {
    margin-bottom: 0;
}

/* Foco para navegação por teclado */
.vpm-faq-item h3:focus-visible {
    outline: 2px solid #005f9e;
    outline-offset: 4px;
    border-radius: 3px;
}

/* Mobile */
@media (max-width: 689px) {

    .vpm-faq-item h3 {
        font-size: 17px;
        padding: 16px 38px 16px 0;
    }

    .vpm-faq-item h3::after {
        right: 2px;
        font-size: 22px;
    }

    .vpm-faq-answer {
        padding-bottom: 16px;
    }
}


/* ===== BUSCA DESKTOP ===== */

.vpm-search-desktop {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vpm-product-search {
    display: flex;
    align-items: stretch;
    width: clamp(360px, 38vw, 520px);
    max-width: 100%;
    transform: translateY(15px) !important;
    height: 42px;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d6dde5;
    border-radius: 6px;
    overflow: hidden;
}

.vpm-product-search input[type="search"] {
    flex: 1;
    min-width: 0;
    width: auto;
    height: 40px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    font-size: 14px;
    line-height: 40px;
}

.vpm-product-search button {
    flex: 0 0 48px;
    width: 48px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid #d6dde5;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}

.vpm-product-search button:hover {
    background: #f4f7fa;
}


/* Links usados no mobile */

.vpm-links-mobile {
    display: none !important;
}


/* ===== TABLET + MOBILE ===== */

@media (max-width: 999px) {

    .vpm-search-desktop {
        display: none !important;
    }

    .vpm-links-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}


.vpm-search-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.vpm-search-icon {
    display: block;
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.vpm-search-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: currentColor;
    right: -6px;
    bottom: -3px;
    transform: rotate(45deg);
    transform-origin: left center;
}



/* Centralização do header e busca - desktop */
@media (min-width: 1000px) {

  [data-id="html"] {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  [data-id="html"] .ct-header-html {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }

  [data-row="top"] [data-column="middle"] {
    display: flex !important;
    align-items: center !important;
  }

  [data-row="top"] [data-column="middle"] > [data-items] {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
  }

  [data-row="top"] .ct-header-text[data-id="text"] {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  [data-row="top"] .ct-header-text[data-id="text"] .entry-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .vpm-search-desktop {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }

  .vpm-product-search {
    margin: 0 !important;
  }
}


/* =========================================================
   VEM PRO MAR - PRODUTOS COMPLEMENTARES
   ========================================================= */

.vpm-complementares {
  width: 100%;
  max-width: 1290px;
  margin: 40px auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.vpm-complementares > h2 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  margin-bottom: 24px !important;
}

/* Grade desktop */
.vpm-complementares ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 24px;
  width: 100%;
  margin: 0 !important;
}

.vpm-complementares ul.products li.product {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 690px) {
  .vpm-complementares ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop e tablet: alinhamento com Produtos relacionados */
@media (min-width: 690px) {
  .vpm-complementares > h2 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }

  .vpm-complementares > ul.products {
    width: calc(100% - 60px) !important;
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}

/* Mobile: 1 produto por linha */
@media (max-width: 689px) {
  .vpm-complementares ul.products {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .vpm-complementares ul.products li.product,
  .vpm-complementares ul.products.columns-2 li.product,
  .vpm-complementares ul.products.columns-3 li.product,
  .vpm-complementares ul.products.columns-4 li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .vpm-complementares .woocommerce-loop-product__title {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .vpm-complementares .button {
    width: auto !important;
    min-width: 140px;
  }
}


/* Avaliações de produtos - Home */

.vpm-avaliacoes-produtos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vpm-avaliacao-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.vpm-avaliacao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.vpm-avaliacao-topo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.vpm-avaliacao-foto {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.vpm-avaliacao-imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vpm-avaliacao-info {
    min-width: 0;
}

.vpm-avaliacao-estrelas {
    margin-bottom: 7px;
}

.vpm-avaliacao-estrelas .star-rating {
    float: none;
    margin: 0;
}

.vpm-avaliacao-produto {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.vpm-avaliacao-texto {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.vpm-avaliacao-texto p {
    margin: 0;
}

.vpm-avaliacao-autor {
    font-weight: 600;
    font-size: 13px;
    opacity: .75;
}

/* Tablet */

@media (max-width: 900px) {

    .vpm-avaliacoes-produtos {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media (max-width: 600px) {

    .vpm-avaliacoes-produtos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vpm-avaliacao-card {
        padding: 18px;
    }

    .vpm-avaliacao-foto {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

}