@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --cor1: #f2f2f2;
  --cor2: #030a8c;
  --cor3: #063573;
  --cor4: #047f8c;
  --cor5: #0d0d0d;
  --texto1: Verdana, Geneva, Tahoma, sans-serif;
  --texto2: "roboto", Arial, Helvetica, sans-serif;
  --texto3: Arial, Helvetica, sans-serif;
}

/* Reset e Tipografia */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--cor1);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--cor1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

p {
  text-indent: 10px;
}

/* Logo */
.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Links Base */
.menu-list {
  list-style: none;
}

.menu-list li a {
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.servico {
  font-weight: bold;
  color: var(--cor5);
  font-size: 15px;
}

/* Estrutura fundamental do carrossel */
.carrossel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.carrossel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carrossel-item {
  min-width: 100%;
}

.carrossel-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Estilo básico dos botões */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: var(--cor1);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Botoes carrossel */

.carrossel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 50 !important;
  /* Garante que fique acima das setas se necessário */
}

.dots-container {
  display: flex !important;
  /* Força o aparecimento */
  gap: 10px;
  z-index: 20;
  /* Valor alto para ficar à frente de tudo */
}

.dot {
  display: block !important;
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  /* Branco com transparência */
  border: 1px solid #000;
  /* Borda fina para ver se eles aparecem */
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: var(--cor2) !important;
  /* Cor verde ativa */
}

/* fundamento de conteudo */

/* Estilos base estruturais */
.page-container {
  max-width: auto;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Força as seções a agirem como blocos independentes (um abaixo do outro) */
.secao-texto,
.secao-beneficios {
  display: block;
  width: 100%;
}

.page-container h2 {
  color: var(--cor2);
  /* Tom azul escuro da Glassminium */
  font-size: 28px;
  margin-bottom: 20px;
}

.page-container p {
  color: var(--cor5);
  line-height: 1.6;
  margin-bottom: 15px;
}

.secao-beneficios {
  margin-bottom: 20px;
}

.secao-beneficios h3 {
  font-size: 18px;
  color: var(--cor5);
  margin-bottom: 5px;
}

/* estrutura card */

/* Estilo comum dos cards */
.card {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Ajuste a opacidade aqui */
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.card-icon img {
  width: 55px;
  height: auto;
  margin-bottom: 15px;
}

.card-title {
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.servicos-texto {
  display: none;
}

.card {
  position: relative;
  height: 250px;
  /* ... restante do código anterior ... */
}

/* seção de botao orçamento */

.botao-simples a {
  color: var(--cor1);
  font-family: sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* Espaço entre letras para o visual premium */
}

.botao-simples {
  /* 1. Cores e Fonte */
  background-color: var(--cor3);
  /* O verde-azulado da imagem */

  /* 2. Tamanho e Alinhamento */
  padding: 30px 85px;
  border: none;
  cursor: pointer;
  display: inline-block;

  /* 3. O SEGREDO: O Formato */
  /* Corta as pontas para criar a inclinação */
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);

  /* 4. Efeito de Interação */
  transition:
    transform 0.2s,
    background 0.2s;
}

.botao-simples:hover {
  background-color: var(--cor2);
  transform: scale(1.05);
  /* Aumenta levemente ao passar o mouse */
}

/* Seção de portifolio */

.portfolio-section {
  font-family: "Arial", sans-serif;
  padding: 40px 20px;
  background-color: var(--cor1);
}

.portfolio-container {
  max-width: 100%;
  margin: 0 auto;
}

/* Cabeçalho com Linhas Laterais */
.portfolio-header {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-header::before,
.portfolio-header::after {
  content: "";
  flex: 1;
  border-bottom: 3px solid var(--cor2);
  opacity: 0.5;
}

.portfolio-header::before {
  margin-right: 20px;
}

.portfolio-header::after {
  margin-left: 20px;
}

.portfolio-title {
  color: var(--cor5);
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
}

/* Imagens */
.portfolio-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

/* Rodapé e Botão */
.portfolio-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-orcamento {
  display: inline-block;
  background-color: var(--cor3);
  color: var(--cor1);
  text-decoration: none;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-orcamento:hover {
  background-color: var(--cor2);
  transform: translateY(-2px);
  cursor: pointer;
}

/* Estilos Base do Rodapé */
.site-footer {
  background-color: var(--cor3);
  color: var(--cor1);
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}

/* formatação rodapé */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Ícones e Caixas Ciano */
.icon-box {
  background-color: #3bb3b4;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Textos e Títulos */
.contact-text h3 {
  color: var(--cor1);
  font-size: 14px;
  margin: 0 0 5px 0;
}

.contact-text .highlight-title {
  margin-top: 15px;
}

/* Inputs do Formulário */
.footer-form input,
.footer-form textarea {
  background-color: var(--cor1);
  border: none;
  padding: 12px 15px;
  color: #1a1a1a;
  font-weight: bold;
}

footer a {
  color: var(--cor1);
  font-weight: bold;
  text-decoration: none;
}

address {
  text-decoration: underline;
}

.btn-send {
  background-color: var(--cor5);
  color: #ffffff;
  border: none;
  padding: 12px;
  cursor: pointer;
  text-transform: uppercase;
}

.form-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-text {
  margin-top: 10px;
}

.copy {
  background-color: var(--cor5);
  color: var(--cor1);
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Pag_contato|header */

.media {
  display: flex;
  background-color: var(--cor4);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.media h1 {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.media h2 {
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.media p {
  max-width: 800px;
  margin-bottom: 30px;
}

/* Estilo do Botão */
.mediabtn {
  background-color: var(--cor2);
  /* Cor oficial WhatsApp */
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.mediabtn:hover {
  transform: scale(1.05);
  background-color: var(--cor3);
}

.mediabtn a {
  text-decoration: none;
  color: var(--cor1);
  font-weight: bold;
  font-size: 1rem;
  display: block;
}

/* Pag_contato|formulario */

.form-container {
  background: #fff;
  margin: 40px auto;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

h2 {
  margin-top: 0;
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
}

.option-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.upload-section {
  border: 2px dashed var(--accent-color);
  padding: 20px;
  text-align: center;
  background: #fffdf7;
  border-radius: 4px;
}

.forbtn {
  width: 100%;
  background-color: var(--cor4);

  padding: 15px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.forbtn a {
  color: var(--cor1);
  text-decoration: none;
}

/* Pag_contato|contato extras */

.contact-channels-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
  margin-top: 20px;
}

.contact-channels-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-channels-header h2 {
  color: #1a2b4c;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.contact-channels-header p {
  color: #666;
  margin: 0 auto 45px auto;
  line-height: 1.6;
  text-align: center;
}

/* Cards - Base */
.channel-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid #1a2b4c;
  text-align: center;
}

/* Cores específicas dos canais */
.channel-card.whatsapp {
  border-top-color: #25d366;
}

.channel-card.email {
  border-top-color: #007bff;
}

.channel-card.phone {
  border-top-color: #495057;
}

.channel-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.whatsapp .channel-icon {
  color: #25d366;
}

.email .channel-icon {
  color: #007bff;
}

.phone .channel-icon {
  color: #495057;
}

.channel-link {
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 12px;
}

.channel-info {
  font-size: 0.9rem;
  color: #777;
}

/* Botão WhatsApp */
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
}

/* Pag_contato|endereço */

.container-contato {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.info-section p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-info {
  background-color: var(--bg-light);
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  margin-bottom: 20px;
}

.card-info h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.atendimento-lista {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.atendimento-lista li {
  background: #e9ecef;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #444;
}

.maps {
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  /* Garante que o mapa não saia das bordas arredondadas */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.maps iframe {
  width: 100%;
  /* Faz o mapa ocupar toda a largura do container */
  display: block;
  /* Remove espaços vazios na base do iframe */
  border: 0;
}

/* Pag_contato|Soluções */

.subtitle {
  margin-bottom: 20px;
}

.solutions-section {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
}

.solutions-section h2 {
  color: #1a2b4c;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.solutions-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 4px solid #1a2b4c;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  max-width: 1000px; /* O card não passará de 400px */
  width: 100%; /* Ele ocupará 100% em telas menores que 400px */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card p {
  color: #666;
  margin: 0 auto 45px auto;
  line-height: 1.6;
  text-align: center;
}

.icon {
  width: 10px;
  height: 10px;
  background: var(--accent);
  display: inline-block;
  border-radius: 50%;
}

/* Pag_sobre| conteudo principal*/

.historia h2 {
  text-align: center;
  margin: 20px 0;
  font-size: 2.5rem;
  color: var(--cor2);
}

.historia p {
  margin: 0 20px;
  text-align: justify;
  text-indent: 10px;
}

.subtexto {
  margin-bottom: 20px;
  text-indent: 10px;
  text-align: justify;
}

.var {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Pag_sobre| Por Que Escolher a Glassminium */

.glassminium-why-us {
  font-family: var(--texto1);
  padding: 60px 20px;
  color: var(--cor5);
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  color: var(--cor2);
}

.section-title span {
  color: var(--cor5);
  font-weight: bolder;
}

/* Estilo do Card */
.feature-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid var(--accent-color);
}

/* Call to Action */
.cta-section {
  text-align: center;
  background: var(--cor3);
  color: var(--cor1);
  padding: 40px;
  border-radius: 12px;
}

.btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* Pag_esquadrias| Conteudo */

#card {
  display: flex;
  /* Ativa o modo flexível */
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente (se o pai tiver altura definida) */
  gap: 20px;
  /* Cria o espaço entre os dois cards */
  padding: 20px;
}

/* pag_esquadrias | botao */

.botao-orcamento {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente (se a div tiver altura) */
  width: 100%; /* Garante que a div ocupe a largura total */
  background-color: var(--cor2);
  height: 70px;
}

/* Ajuste opcional para o botão e o link */
