.elementor-347 .elementor-element.elementor-element-e403f37{--display:flex;--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-347 .elementor-element.elementor-element-49a59d3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e331e2c *//* ================================================= */
/* --- PÁGINA DE MODELOS --- */
/* ================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- Estilos Gerais da Página --- */
.models-page-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.models-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Seção Cabeçalho (Hero) --- */
.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Seção da Grade de Produtos --- */
.product-grid-section {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    /* Cria uma grade responsiva que se ajusta automaticamente */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px 30px; /* 40px de espaço vertical, 30px horizontal */
}


/* ================================================= */
/* --- CARD DE PRODUTO V2 - ESTILO CLEAN TECH --- */
/* ================================================= */

.product-card-v2-container {
    padding: 0; /* Remove padding desnecessário aqui */
}

.product-card-v2 {
    max-width: 380px;
    width: 100%; /* Ocupa toda a largura da coluna do grid */
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card-v2__image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-card-v2__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-v2:hover .product-card-v2__image {
    transform: scale(1.05);
}

.product-card-v2__content {
    padding: 30px;
    text-align: center;
}

.product-card-v2__category {
    display: inline-block;
    background-color: #FFF4E6;
    color: #FF7200;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-card-v2__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 15px 0;
}

.product-card-v2__description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 25px 0;
    min-height: 75px; /* Garante que os cards tenham a mesma altura */
}

.product-card-v2__price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 25px;
}

.product-card-v2__btn {
    display: block;
    width: 100%;
    background: #FF7200;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 114, 0, 0.3);
}

.product-card-v2__btn:hover {
    background-color: #e66700;
    transform: scale(1.03);
}/* End custom CSS */