:root {
--cor-primaria: #284093;
--cor-secundaria: #f7a02a;
--cor-fundo-pagina: #fefefe;
--cor-texto-principal: #222222;
--cor-primaria-rgb: 40, 64, 147;

--btn-primario-fundo: #284093;
--btn-primario-texto: #ffffff;
--btn-primario-hover-fundo: #1e2e64;

--familia-fonte-titulos: 'Titulos', sans-serif;
--familia-fonte-textos: 'Textos', sans-serif;
--tamanho-fonte-base: 16px;

--border-radius-padrao: 12px;
--box-shadow-padrao: 0 2px 10px rgba(0,0,0,0.1);
--largura-maxima-container: 1200px;

--cor-borda-suave: #e9ecef;
--cor-borda-input: #ced4da;
--cor-fundo-elemento: #ffffff;
--cor-texto-secundario: #495057;
--cor-texto-terciario: #6c757d;
--cor-fundo-card: #ffffff;
--cor-borda-card: #e9ecef;
}

@font-face {
font-family: 'Titulos';
src: url('/assets/fontes/Viga.ttf') format('truetype');
font-display: swap;
}
@font-face {
font-family: 'Textos';
src: url('/assets/fontes/Nunito.ttf') format('truetype');
font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--tamanho-fonte-base); scroll-behavior: smooth; }
body {
font-family: var(--familia-fonte-textos);
background-color: var(--cor-fundo-pagina);
color: var(--cor-texto-principal);
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--familia-fonte-titulos);
color: var(--cor-primaria);
margin-bottom: 0.75rem;
line-height: 1.3;
}
a { color: var(--cor-primaria); text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; }
.container { max-width: var(--largura-maxima-container); margin-left: auto; margin-right: auto; padding: 0 15px; }


input[type="text"], input[type="search"] {
width: 100%;
/* A LINHA ABAIXO FOI REMOVIDA PARA EVITAR CONFLITO */
/* padding: 0.75rem 1rem; */
font-family: var(--familia-fonte-textos);
font-size: 1rem;
border: 1px solid var(--cor-borda-input);
border-radius: var(--border-radius-padrao);
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input[type="text"]:focus, input[type="search"]:focus {
border-color: var(--cor-primaria);
box-shadow: 0 0 0 0.2rem rgba(var(--cor-primaria-rgb), 0.25);
outline: 0;
}

/* Componentes Essenciais */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.65rem 1.2rem;
font-size: 0.95rem;
font-weight: 600;
border-radius: var(--border-radius-padrao);
border: 1px solid transparent;
cursor: pointer;
text-decoration: none !important;
transition: all 0.2s ease;
}
.btn-primary {
background-color: var(--btn-primario-fundo);
color: var(--btn-primario-texto);
border-color: var(--btn-primario-fundo);
}
.btn-primary:hover {
background-color: var(--btn-primario-hover-fundo);
border-color: var(--btn-primario-hover-fundo);
color: var(--btn-primario-texto);
}

input[type="text"], input[type="search"] {
width: 100%;
padding: 0.75rem 1rem;
font-family: var(--familia-fonte-textos);
font-size: 1rem;
border: 1px solid var(--cor-borda-input);
border-radius: var(--border-radius-padrao);
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input[type="text"]:focus, input[type="search"]:focus {
border-color: var(--cor-primaria);
box-shadow: 0 0 0 0.2rem rgba(var(--cor-primaria-rgb), 0.25);
outline: 0;
}

/* Estilo Base (Mobile-First): Layout Horizontal */
.card {
background-color: var(--cor-fundo-card);
border: 1px solid var(--cor-borda-suave);
border-radius: var(--border-radius-padrao);
box-shadow: var(--box-shadow-padrao);
display: flex; /* MUDANÇA PRINCIPAL: torna o card um flex container */
flex-direction: row; /* Layout horizontal */
gap: 0.75rem; /* Espaço entre a imagem e o conteúdo */
transition: transform 0.3s ease, box-shadow 0.3s ease;
overflow: hidden; /* Garante que os filhos não vazem */
align-items: stretch; /* Alinha os itens para terem a mesma altura */
}
.card:hover {
transform: translateY(-4px); /* Efeito de hover mais sutil para a lista */
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Container da Imagem (Mobile) */
.card-image-container {
display: block;
position: relative;
flex-shrink: 0; /* Impede que a imagem encolha */
width: 110px; /* Largura fixa para a imagem na horizontal */
background-color: #f8f9fa;
}

/* Imagem do Card (Mobile) */
.card-img {
width: 100%;
height: 100%;
object-fit: contain; /* Garante que a imagem inteira apareça */
object-position: center;
transition: transform 0.3s ease;
padding: 8px; /* Pequeno preenchimento para a imagem não colar nas bordas */
}

/* NOVO: Wrapper para o conteúdo textual */
.card-content-wrapper {
display: flex;
flex-direction: column;
flex-grow: 1; /* Faz esta área ocupar todo o espaço restante */
padding: 0.5rem 0.5rem 0.5rem 0; /* Padding ajustado */
justify-content: space-between; /* Empurra o footer para baixo */
}

/* Corpo do Card (Mobile) */
.card-body {
padding: 0.25rem 0.5rem; /* Padding reduzido para a vista de lista */
display: flex;
flex-direction: column;
flex-grow: 1;
}

.card-title {
font-size: 0.9rem; /* Fonte um pouco menor */
font-weight: 600;
margin-bottom: 0.5rem;
flex-grow: 1; /* Empurra o preço para baixo */
}
.card-title a { color: var(--cor-texto-principal); }
.card-title a:hover { color: var(--cor-primaria); text-decoration: none; }

/* Seção de Preço (Mobile) */
.card-price {
margin-top: auto;
padding-top: 0.5rem;
text-align: right;
}
.card-price p {
font-size: 0.85rem;
font-weight: 600;
color: var(--cor-texto-secundario);
margin-bottom: 0;
}

/* Rodapé do Card (Mobile) */
.card-footer {
padding: 0.25rem 0.5rem 0.25rem;
}
.card-footer .btn {
width: 100%;
font-size: 0.85rem;
padding: 0.5rem 0.8rem;
}

/* --- ESTILOS DE PROMOÇÃO --- */

.promo-badge {
position: absolute;
top: 8px;
left: 8px; /* Alterado para o canto superior esquerdo */
background-color: var(--cor-secundaria);
color: white;
padding: 3px 10px;
border-radius: var(--border-radius-padrao);
font-size: 0.8rem;
font-weight: 700;
z-index: 2;
box-shadow: 0 2px 5px rgba(0,0,0,0.25);
border: 1px solid rgba(255,255,255,0.3);
}

.card-price p {
display: flex;
align-items: baseline;
justify-content: flex-end;
flex-wrap: wrap; /* Garante que os preços não quebrem o layout */
gap: 0.4rem; /* Espaço entre os preços */
}

.card-price .original-price {
font-size: 0.8em;
font-weight: 400;
color: var(--cor-texto-terciario);
text-decoration: line-through;
}

.card-price .promo-price {
font-weight: 700;
color: var(--cor-primaria);
font-size: 1.05em; /* Destaca o preço promocional */
}

@media (min-width: 640px) {
.promo-badge {
top: 12px;
left: 12px;
font-size: 0.85rem;
}
}


/* --- Media Query para Telas Maiores (sm: 640px e acima) --- */
/* A partir daqui, os estilos revertem para o layout vertical original */
@media (min-width: 640px) {
.card {
flex-direction: column; /* REVERTE para layout vertical */
gap: 0;
margin-bottom: 1rem; /* Volta a ter margem inferior */
}
.card:hover {
transform: translateY(-6px); /* Efeito de hover original */
}

.card-image-container {
width: 100%; /* REVERTE para largura total */
aspect-ratio: 1 / 1; /* REVERTE para proporção quadrada */
}

.card-img {
padding: 5%; /* REVERTE para o padding original */
}
.card:hover .card-img {
transform: scale(1.03);
}

.card-content-wrapper {
padding: 0; /* Reseta o padding do wrapper */
}

.card-body {
padding: 1rem 1.25rem; /* REVERTE para padding original */
flex-grow: 1;
}

.card-title {
font-size: 1rem; /* REVERTE para o tamanho de fonte original */
}

.card-price {
padding-top: 0.75rem;
}
.card-price p {
font-size: 0.9rem; /* REVERTE para o tamanho original */
}

.card-footer {
padding: 0 1.25rem 1.25rem; /* REVERTE para padding original */
}
.card-footer .btn {
font-size: 0.9rem; /* REVERTE para o tamanho original */
padding: 0.65rem 1.2rem;
}
}

/* --- ESTILOS DO CARROSSEL DE BANNERS (Swiper.js) --- */
.banner-carousel {
position: relative;
width: 100%;
aspect-ratio: 4 / 1; /* Proporção recomendada de 1200x300px */
border-radius: var(--border-radius-padrao);
overflow: hidden;
box-shadow: var(--box-shadow-padrao);
background-color: var(--cor-borda-suave); /* Cor de fundo enquanto a imagem carrega */
}

.banner-carousel .swiper-slide img {
width: 100%;
height: 100%;
object-fit: cover; /* Garante que a imagem cubra todo o espaço sem distorcer */
}

/* Setas de Navegação (Próximo/Anterior) */
.banner-carousel .swiper-button-next,
.banner-carousel .swiper-button-prev {
color: var(--cor-primaria);
background-color: rgba(255, 255, 255, 0.8);
width: 48px;
height: 48px;
border-radius: 50%;
transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.2s ease; /* Adicionamos transição para opacidade
*/
box-shadow: 0 2px 5px rgba(0,0,0,0.15);
opacity: 0; /* INICIALMENTE INVISÍVEL */
pointer-events: none; /* Não interage com o mouse quando invisível */
}
.banner-carousel.hovered .swiper-button-next, /* APARECE NO HOVER */
.banner-carousel.hovered .swiper-button-prev {
opacity: 1; /* Torna visível */
pointer-events: auto; /* Volta a interagir com o mouse */
}
.banner-carousel .swiper-button-next:hover,
.banner-carousel .swiper-button-prev:hover {
background-color: #ffffff;
transform: scale(1.1);
}
.banner-carousel .swiper-button-next::after,
.banner-carousel .swiper-button-prev::after {
font-size: 22px;
font-weight: bold;
}

/* Paginação (Bolinhas) */
.banner-carousel .swiper-pagination-bullet {
background: rgba(255, 255, 255, 0.8);
width: 10px;
height: 10px;
opacity: 0; /* INICIALMENTE INVISÍVEL */
transition: opacity 0.3s ease, background-color 0.2s ease, transform 0.2s ease; /* Adicionamos transição para opacidade
*/
}
.banner-carousel.hovered .swiper-pagination-bullet { /* APARECE NO HOVER */
opacity: 0.9; /* Torna visível */
}

.banner-carousel .swiper-pagination-bullet-active {
background: var(--cor-secundaria);
transform: scale(1.2);
opacity: 1 !important; /* Garante que a bolinha ativa esteja sempre visível no hover */
}
/* Posição da paginação para ficar mais acima e não atrapalhar tanto o banner */
.banner-carousel .swiper-pagination {
bottom: 15px;
}


/* Rodapé do Card (onde fica o botão) */
.card-footer {
padding: 0 1.25rem 1.25rem;
}
.card-footer .btn {
width: 100%;
font-size: 0.9rem;
}

.card-body { padding: 1.25rem; }
.card-title { margin-bottom: 0.75rem; font-size: 1.3rem; }

.prose ul { list-style-type: disc; padding-left: 1.5em; margin-bottom: 1em; }
.prose li { margin-bottom: 0.5em; }
.prose p { margin-bottom: 1em; }

/* --- ESTILOS DO NOVO CABEÇALHO DA UNIDADE --- */

.unit-header-card {
background-color: var(--cor-fundo-elemento);
border-radius: var(--border-radius-padrao);
box-shadow: var(--box-shadow-padrao);
padding: 2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}

@media (min-width: 768px) { /* Em telas maiores, fica lado a lado */
.unit-header-card {
flex-direction: row;
align-items: center;
}
}

.unit-header-image {
flex-shrink: 0;
width: 150px; /* Tamanho da imagem aumentado */
height: 150px;
border-radius: 50%; /* Imagem redonda para um visual mais moderno */
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
margin: 0 auto; /* Centraliza a imagem em telas pequenas */
}
@media (min-width: 768px) {
.unit-header-image {
margin: 0;
}
}

.unit-header-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.unit-header-details {
flex-grow: 1;
text-align: center; /* Centraliza o texto em telas pequenas */
}
@media (min-width: 768px) {
.unit-header-details {
text-align: left;
}
}

.unit-header-details h1 {
margin-bottom: 0.5rem;
}

.address-container {
display: flex;
align-items: center;
justify-content: center; /* Centraliza em telas pequenas */
gap: 0.75rem;
margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
.address-container {
justify-content: flex-start;
}
}

.address-text {
color: var(--cor-texto-secundario);
font-size: 1rem;
margin: 0;
}

.btn-copy-address {
background: #f1f3f5;
border: 1px solid #dee2e6;
color: var(--cor-texto-terciario);
border-radius: 50%;
aspect-ratio: 1;
width: 36px;
height: 36px;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
}
.btn-copy-address:hover {
background: #e9ecef;
color: var(--cor-primaria);
}
.btn-copy-address.copied {
background-color: #d1fae5; /* Verde sucesso */
color: #065f46;
border-color: #a7f3d0;
}

.contact-buttons-container {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
justify-content: center; /* Centraliza em telas pequenas */
}
@media (min-width: 768px) {
.contact-buttons-container {
justify-content: flex-start;
}
}

.btn-contact {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
border-radius: var(--border-radius-padrao);
text-decoration: none !important;
font-weight: 600;
font-size: 0.9rem;
border: 1px solid transparent;
transition: all 0.2s ease;
}
.btn-contact i {
font-size: 1.1em;
}

.btn-whatsapp {
background-color: #25D366;
color: white;
}
.btn-whatsapp:hover {
background-color: #1DA851;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
color: white;
}

.btn-phone {
background-color: var(--cor-primaria);
color: white;
}
.btn-phone:hover {
background-color: var(--btn-primario-hover-fundo);
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
color: white;
}
.btn-map {
background-color: #f8f9fa;
color: #495057;
border-color: #dee2e6;
}
.btn-map:hover {
background-color: #e9ecef;
border-color: #ced4da;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
color: #212529;
}

/* --- ESTILOS DA SEÇÃO DE EQUIPAMENTOS EM DESTAQUE (CORRIGIDO) --- */

.featured-equipment-section {
background-color: var(--cor-primaria);
border-radius: var(--border-radius-padrao);
padding: 2.5rem 0;
box-shadow: var(--box-shadow-padrao);
position: relative; /* ESSENCIAL para posicionar os botões */
overflow: hidden; /* Garante que nada vaze para fora da seção */
}

.featured-equipment-section .section-title {
color: #ffffff;
text-align: center;
font-size: 2rem;
margin-bottom: 2rem;
padding: 0 1rem;
border-bottom: 2px solid var(--cor-secundaria);
padding-bottom: 0.5rem;
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
}

.featured-carousel {
/* O overflow: hidden padrão do Swiper vai funcionar aqui, contendo os slides */
/* Adicionamos padding nas laterais para os cards não colarem nas bordas da tela */
padding: 0.5rem 50px;
}

.featured-carousel .swiper-slide {
height: auto; /* Permite que o card defina a altura */
display: flex;
align-items: stretch;
}

.featured-carousel .card {
width: 100%;
}

/* Estilo e Posição das Setas de Navegação */
.featured-equipment-section .swiper-button-prev,
.featured-equipment-section .swiper-button-next {
color: #ffffff;
top: 50%; /* Alinha verticalmente com o meio da seção */
transform: translateY(-50%);
width: 44px;
height: 44px;
background-color: rgba(0, 0, 0, 0.25);
border-radius: 50%;
transition: background-color 0.2s ease;
z-index: 10; /* Garante que fiquem sobre os cards */
}
.featured-equipment-section .swiper-button-prev:hover,
.featured-equipment-section .swiper-button-next:hover {
background-color: rgba(0, 0, 0, 0.5);
}

.featured-equipment-section .swiper-button-prev::after,
.featured-equipment-section .swiper-button-next::after {
font-size: 1.2rem;
font-weight: bold;
}

/* Posiciona as setas dentro do padding da seção */
.featured-equipment-section .swiper-button-prev.featured-prev { left: 15px; }
.featured-equipment-section .swiper-button-next.featured-next { right: 15px; }

/* Em telas muito pequenas, o swipe é mais intuitivo, então podemos esconder as setas */
@media (max-width: 767px) {
.featured-equipment-section .swiper-button-prev,
.featured-equipment-section .swiper-button-next {
display: none;
}
/* Reduz o padding lateral do carrossel para dar mais espaço aos cards */
.featured-carousel {
padding: 0.5rem 20px;
}
}

.featured-equipment-section .swiper-button-disabled {
opacity: 0.2;
pointer-events: none;
}

/* --- ESTILOS DO FLOATING ACTION BUTTON (FAB) --- */
.whatsapp-fab {
position: fixed;
width: 60px;
height: 60px;
bottom: 25px;
right: 25px;
background-color: #25D366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.2s ease-in-out;
}
.whatsapp-fab:hover {
transform: scale(1.1);
color: #FFF;
}

/* --- ESTILOS PARA O SELETOR DE PERÍODO (BOTÕES) --- */
.period-selector {
display: flex;
flex-wrap: wrap;
border: 1px solid #d1d5db; /* border-gray-300 */
border-radius: var(--border-radius-padrao, 12px);
overflow: hidden;
}
.period-selector input[type="radio"] {
display: none; /* Esconde o botão de rádio real */
}
.period-selector label {
flex-grow: 1;
text-align: center;
padding: 0.75rem 0.5rem;
font-size: 0.9rem;
font-weight: 500;
color: #4b5563; /* text-gray-600 */
background-color: #f9fafb; /* bg-gray-50 */
cursor: pointer;
transition: all 0.2s ease-in-out;
border-left: 1px solid #d1d5db;
}
.period-selector label:first-of-type {
border-left: none;
}
.period-selector label:hover {
background-color: #f3f4f6; /* bg-gray-100 */
}
.period-selector input[type="radio"]:checked + label {
background-color: var(--cor-primaria, #284093);
color: white;
border-color: var(--cor-primaria, #284093);
}

/* --- ESTILOS PARA AS ABAS DA PÁGINA DE EQUIPAMENTO --- */
.tab-button {
border-color: transparent;
color: #6b7280; /* text-gray-500 */
}
.tab-button:hover {
border-color: #d1d5db; /* border-gray-300 */
color: #4b5563; /* text-gray-600 */
}
.tab-button.active {
border-color: var(--cor-primaria, #284093);
color: var(--cor-primaria, #284093);
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}

/* Correções de overflow para conteúdo das tabs no mobile */
.tab-pane .prose {
max-width: 100%;
overflow-wrap: break-word;
word-break: break-word;
}

.tab-pane .prose img,
.tab-pane .prose table,
.tab-pane .prose iframe,
.tab-pane .prose video {
max-width: 100%;
height: auto;
}

.tab-pane .prose table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}

.tab-pane .prose ul,
.tab-pane .prose ol {
padding-left: 1.5rem;
}

@media (max-width: 640px) {
.tab-pane .prose {
font-size: 0.9rem;
}

.tab-pane .prose h1,
.tab-pane .prose h2,
.tab-pane .prose h3 {
word-break: break-word;
}
}

/* Estilos para botão do manual */
.btn-manual {
display: inline-flex;
align-items: center;
gap: 0.625rem;
padding: 0.75rem 1.5rem;
background-color: white;
color: var(--cor-primaria);
border: 2px solid var(--cor-primaria);
border-radius: 6px;
font-weight: 600;
font-size: 0.9rem;
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
}

.btn-manual:hover {
background-color: var(--cor-primaria);
color: white;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-manual i {
font-size: 1rem;
}

/* Tabs com scroll horizontal no mobile */
#tabButtons {
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: var(--cor-primaria) #f3f4f6;
}

#tabButtons::-webkit-scrollbar {
height: 3px;
}

#tabButtons::-webkit-scrollbar-track {
background: #f3f4f6;
}

#tabButtons::-webkit-scrollbar-thumb {
background: var(--cor-primaria);
border-radius: 3px;
}

@media (max-width: 640px) {
#tabButtons {
-ms-overflow-style: auto;
scrollbar-width: auto;
}

.tab-button {
flex-shrink: 0;
}
}

/* Estilos para FAQ */
.faq-section {
margin-top: 3rem;
}

.faq-item {
background-color: white;
border: 1px solid #e5e7eb;
border-radius: 8px;
margin-bottom: 0.75rem;
overflow: hidden;
transition: box-shadow 0.2s ease;
}

.faq-item:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
width: 100%;
padding: 1.25rem;
background-color: #f9fafb;
border: none;
text-align: left;
font-weight: 600;
font-size: 1rem;
color: var(--cor-texto-principal);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
transition: background-color 0.2s ease;
}

.faq-question:hover {
background-color: #f3f4f6;
}

.faq-question.active {
background-color: rgba(var(--cor-primaria-rgb), 0.05);
color: var(--cor-primaria);
}

.faq-question-text {
flex-grow: 1;
}

.faq-icon {
flex-shrink: 0;
font-size: 1.25rem;
transition: transform 0.3s ease;
color: var(--cor-secundaria);
}

.faq-question.active .faq-icon {
transform: rotate(180deg);
color: var(--cor-primaria);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-answer.active {
max-height: 1000px;
}

.faq-answer-content {
padding: 1.25rem;
color: var(--cor-texto-secundario);
line-height: 1.7;
font-size: 0.95rem;
}

.faq-answer-content p:first-child {
margin-top: 0;
}

.faq-answer-content p:last-child {
margin-bottom: 0;
}

@media (max-width: 640px) {
.faq-question {
padding: 1rem;
font-size: 0.9rem;
}

.faq-answer-content {
padding: 1rem;
font-size: 0.875rem;
}

.faq-icon {
font-size: 1.1rem;
}
}


/* --- NOVO: Estilos para o Formulário de Orçamento --- */
.form-container {
background-color: white; padding: 25px; border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 100%; max-width: 400px; box-sizing: border-box;
}
.form-container h2 {
color: var(--cor-texto-principal);
margin-top: 0;
}
.form-group { margin-bottom: 15px; }
.form-group label {
display: block; color: #4a5568; margin-bottom: 5px; font-size: 0.9em;
}
.form-group input {
width: 100%; padding: 10px; border: 1px solid #cbd5e0;
border-radius: 4px; box-sizing: border-box; font-size: 1rem;
}
.form-container .submit-button {
width: 100%; padding: 12px; border: none; border-radius: 4px;
background-color: var(--cor-primaria); color: white;
cursor: pointer; font-size: 16px; font-weight: bold;
transition: background-color 0.2s ease;
}
.form-container .submit-button:hover {
background-color: var(--btn-primario-hover-fundo);
}
.form-container .submit-button:disabled {
background-color: #9ca3af;
cursor: not-allowed;
}

/* --- INÍCIO: NOVOS ESTILOS PARA A PÁGINA DE EQUIPAMENTO --- */

/* Galeria de Imagens Principal */
.gallery-main {
border-radius: var(--border-radius-padrao);
border: 1px solid var(--cor-borda-suave);
background-color: white;
}
.gallery-main .swiper-slide {
background-size: contain;
background-position: center;
background-repeat: no-repeat;
aspect-ratio: 1 / 1;
padding: 1rem;
}
.gallery-main .swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}

/* NOVO: Ajuste de altura máxima para desktop */
@media (min-width: 1024px) { /* Para telas maiores que lg (1024px) */
.gallery-main .swiper-slide {
max-height: 550px; /* Define uma altura máxima razoável */
aspect-ratio: 1; /* Remove o aspect-ratio fixo para usar max-height */
}
}

/* Miniaturas da Galeria */
.gallery-thumbs {
margin-top: 1rem;
padding: 0;
}
.gallery-thumbs .swiper-slide {
width: 25%;
height: 100%;
opacity: 0.5;
transition: opacity 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
border-radius: var(--border-radius-padrao);
overflow: hidden;
}
.gallery-thumbs .swiper-slide:hover {
opacity: 1;
}
.gallery-thumbs .swiper-slide-thumb-active {
opacity: 1;
border-color: var(--cor-primaria);
}
.gallery-thumbs .swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

/* Seção de Destaques Rápidos */
.quick-specs-list {
list-style: none;
padding: 0;
margin: 1.5rem 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1rem;
}
.quick-specs-list li {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.9rem;
color: var(--cor-texto-secundario);
}
.quick-specs-list .spec-icon {
font-size: 1.25em;
color: var(--cor-primaria);
width: 25px;
text-align: center;
}
/* --- FIM: NOVOS ESTILOS --- */

/* --- ESTILOS PARA A PILL DE HORÁRIOS DE FUNCIONAMENTO --- */

.hours-pill {
background-color: rgba(255, 255, 255, 0.95);
border: 1px solid var(--cor-borda-suave);
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
margin-bottom: 1rem;
overflow: hidden;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.hours-pill.expanded {
border-radius: 12px;
}

.hours-pill-header {
padding: 0.625rem 1.25rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
cursor: pointer;
transition: background-color 0.2s ease;
user-select: none;
}

.hours-pill-header:hover {
background-color: rgba(248, 249, 250, 0.8);
}

.hours-pill-left {
display: flex;
align-items: center;
gap: 1rem;
flex-grow: 1;
}

.hours-pill-icon {
font-size: 1.1rem;
color: var(--cor-secundaria);
flex-shrink: 0;
}

.hours-pill-today {
display: flex;
align-items: center;
gap: 0.5rem;
flex-grow: 1;
}

.hours-pill-label {
font-size: 0.9rem;
font-weight: 600;
color: var(--cor-texto-principal);
white-space: nowrap;
}

.hours-pill-times {
font-size: 0.9rem;
font-weight: 500;
color: var(--cor-texto-secundario);
white-space: nowrap;
}

.hours-pill-times.closed {
color: #dc2626;
}

.hours-pill-status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #10b981;
flex-shrink: 0;
margin-left: 0.5rem;
}

.hours-pill-times.closed + .hours-pill-status-dot {
background-color: #dc2626;
}

.hours-pill-expand-btn {
display: flex;
align-items: center;
gap: 0.375rem;
font-size: 0.85rem;
font-weight: 600;
color: var(--cor-primaria);
text-transform: uppercase;
letter-spacing: 0.025em;
transition: color 0.2s ease;
flex-shrink: 0;
white-space: nowrap;
}

.hours-pill-header:hover .hours-pill-expand-btn {
color: var(--cor-secundaria);
}

.hours-pill-expand-icon {
font-size: 0.9rem;
transition: transform 0.3s ease;
}

.hours-pill.expanded .hours-pill-expand-icon {
transform: rotate(180deg);
}

.hours-pill-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.hours-pill.expanded .hours-pill-content {
max-height: 500px;
}

.hours-pill-table-wrapper {
padding: 0.75rem 1.25rem 1rem;
border-top: 1px solid var(--cor-borda-suave);
}

.hours-pill-table {
width: 100%;
font-size: 0.875rem;
}

.hours-pill-table tbody tr {
border-bottom: 1px solid #f3f4f6;
}

.hours-pill-table tbody tr:last-child {
border-bottom: none;
}

.hours-pill-table tbody tr.today {
background-color: rgba(var(--cor-primaria-rgb), 0.05);
}

.hours-pill-table td {
padding: 0.5rem 0.375rem;
}

.hours-pill-table .day-name {
font-weight: 600;
color: var(--cor-texto-principal);
}

.hours-pill-table tr.today .day-name {
color: var(--cor-primaria);
}

.hours-pill-table .day-hours {
text-align: right;
color: var(--cor-texto-secundario);
font-size: 0.8125rem;
}

.hours-pill-table .day-hours.closed {
color: #dc2626;
font-weight: 500;
}

/* Responsividade para telas menores */
@media (max-width: 640px) {
.hours-pill {
border-radius: 12px;
}

.hours-pill.expanded {
border-radius: 10px;
}

.hours-pill-header {
padding: 0.5rem 0.875rem;
gap: 0.75rem;
}

.hours-pill-left {
gap: 0.625rem;
min-width: 0;
}

.hours-pill-icon {
font-size: 1rem;
}

.hours-pill-today {
gap: 0.375rem;
min-width: 0;
overflow: hidden;
}

.hours-pill-label {
font-size: 0.8125rem;
}

.hours-pill-times {
font-size: 0.8125rem;
}

/* Esconde o pontinho verde no mobile para economizar espaço */
.hours-pill-status-dot {
display: none;
}

.hours-pill-expand-btn {
font-size: 0.75rem;
gap: 0.25rem;
}

.hours-pill-expand-icon {
font-size: 0.8rem;
}

.hours-pill-table-wrapper {
padding: 0.625rem 0.875rem 0.75rem;
}

.hours-pill-table {
font-size: 0.8125rem;
}

.hours-pill-table td {
padding: 0.375rem 0.25rem;
}
}

/* --- FIM: ESTILOS DA PILL DE HORÁRIOS --- */