/* --- Reset Básico e Variáveis --- */
:root {
    --color-primary: #ed3136;
    /* Laranja (cor primária) */
    --color-secondary: #0a2540;
    /* Azul escuro (cor secundária) */
    --color-dark: #333;
    --color-light: #f4f4f4;
    --color-white: #ffffff;
    --font-family: 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0;
    padding: 0;
}

html {
  scroll-behavior: smooth;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-secondary);
}

section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--color-light);
}

/* --- Botões --- */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0bace6;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0d3052;
}


/* --- 1. Cabeçalho (Header) --- */
header {
    background-color: transparent;
    /* Fundo totalmente transparente */
    border-bottom: none;
    /* Remove a borda inferior */
    padding: 15px 0;
    position: absolute;
    /* Fica sobre o hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 115px;

    /* Ajuste a altura do seu logo */
}

header nav {
    display: none;
    /* Escondido em mobile por padrão */
}

header nav.active {
    display: block;
    /* Mostra quando o menu mobile está ativo */
    position: absolute;
    top: 71px;
    /* Altura do header */
    left: 0;
    width: 100%;
    background-color: transparent;
    border-top: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

header nav ul li a {
    color: var(--color-white);
}


header nav ul li a {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-white);
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--color-primary);
}

.header-icons {
    display: flex;
    align-items: center;
}

.header-icons a {
    font-size: 1.2rem;
    margin-left: 20px;
    color: var(--color-dark);
}

.header-icons a:hover {
    color: var(--color-white);
}

/* Header muda ao rolar */
header.scrolled {
    background-color: rgba(10, 37, 64, 0.9);
    /* Fundo escuro semi-transparente */
    transition: background-color 0.3s ease;
}


.mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-secondary);
}


/* --- 2. Seção Hero (Vídeo) --- */
.hero {
    position: relative;
    height: 85vh;
    /* Ajuste aqui como preferir */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Garante que o vídeo não vaze */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    /* Garante que o conteúdo fique na frente */
    z-index: 1;
    text-align: center;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 15px;
}


/* 5. Estilos da Seção de Parceiros */

.parceiros-section {
  text-align: center;
  padding: 80px 20px;
  background: #f7f7f7;
}

.subtitulo-parceiros {
  color: #0bace6;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2.0rem;
}

.parceiros-marcas {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.parceiros-marcas img {
  max-height: 100px;
  transition: transform 0.3s ease;
  border-radius: 10%;
}

.parceiros-marcas img:hover {
  transform: scale(1.1);
}

.diferenciais-bottom {
  background: linear-gradient(90deg, #111, #0bace6);
  color: #fff;
  padding: 60px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.feature-item {
  text-align: center;
}

.feature-item i {
  font-size: 2.5rem;
  color: #0bace6;
}

.feature-item h3 {
  margin: 10px 0;
  font-weight: bold;
}

/* ===== SESSÃO DIFERENCIAIS ===== */

.diferenciais-section {
    padding: 80px 20px;
    background: #f7f7f7;
    text-align: center;
}

.section-title span {
    display: block;
    color: #0bace6;
    font-weight: 700;
    font-size: 2.0rem;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: 800;
    color: #222;
}

.diferenciais-wrapper {
    max-width: 1300px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* COLUNAS LATERAIS */
.dif-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARDS */
.dif-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s ease;
    border-left: 6px solid transparent;
}

.dif-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.dif-card p {
    margin-top: 8px;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* CORES DAS BORDAS */
.dif-card.yellow { border-color: #0bace6; }
.dif-card.green  { border-color:  var(--color-primary); }
.dif-card.red    { border-color: var(--color-primary); }
.dif-card.purple { border-color: #0bace6; }

/* HOVER */
.dif-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGEM CENTRAL */
.dif-center img {
    max-width: 280px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.2));
}

/* BOTÃO */
.dif-button {
    display: inline-block;
    margin-top: 40px;
    background: var(--color-primary);
    padding: 16px 35px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 40px;
    text-transform: uppercase;
    transition: 0.3s;
}

.dif-button:hover {
    background: #0bace6;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 992px) {

    .diferenciais-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dif-center img {
        margin: 30px auto;
    }

    .dif-card {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section-title h2 {
        font-size: 1.9rem;
    }

    .dif-card {
        padding: 20px;
    }
}


/* 7. Estilos da Seção de Segmentação (Cards com Estilo da Imagem e Pequenos) */

/* ===== BANNER DESTAQUE ===== */
.banner-destaque {
  width: 100%;
  overflow: hidden;
  background-color: #000; /* fundo de segurança para bordas */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* sem espaço em volta */
}

.banner-destaque img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: contain; /* mostra a imagem inteira */
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-destaque img {
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain; /* garante imagem completa */
  }
}



/* ============================================
   SEÇÃO SEGMENTAÇÃO (com imagem mobile)
============================================ */

.segmentation-section {
  position: relative;
  background: url("img/segmentacao.webp") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Overlay escuro */
.segmentation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Conteúdo acima do overlay */
.segmentation-section * {
  position: relative;
  z-index: 2;
}

/* HEADER */
.segmentation-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.segmentation-header .subtitulo-highlight {
  display: inline-block;
  color: #0bace6;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.segmentation-header h2 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.segmentation-header p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

/* GRID */
.segmentation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARDS */
.segment-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 40px 25px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(8px);
}

.segment-card i {
  font-size: 3rem;
  color: #ed3136;
  margin-bottom: 20px;
}

.segment-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.segment-card p {
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* HOVER */
.segment-card:hover {
  background: rgba(17, 17, 17, 0.85);
  border-color: #0bace6;
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ============================================
   RESPONSIVIDADE
============================================ */

/* Tablet */
@media (max-width: 992px) {
  .segmentation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — muda imagem para versão mobile */
@media (max-width: 600px) {
  .segmentation-section {
    background: url("img/segmentacao-mobile.webp") center/cover no-repeat;
    padding: 80px 20px;
  }

  .segmentation-header h2 {
    font-size: 1.8rem;
  }

  .segmentation-grid {
    grid-template-columns: 1fr;
  }

  .segment-card {
    padding: 30px 20px;
  }
}

/* 8. Estilos da Seção de Diferenciais Destacados (Com Imagem Central) */
.highlight-diferenciais-section {
    padding: 6rem 2rem 4rem;
    background-color: #f8f8f8; /* Fundo cinza claro */
    text-align: center;
}

.highlight-header {
    margin-bottom: 3rem;
}

.subtitulo-highlight {
    color: #0bace6; /* Cor vermelha para o subtítulo */
    font-weight: 600;
    font-size: 2.0rem;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-header h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

/* Estiliza a palavra destacada (laranja #0bace6) */
.highlight-header h2 strong {
    color: #0bace6; /* Laranja conforme solicitado */
}

/* Estrutura central da grade */
.highlight-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.highlight-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Inverte a ordem na coluna da direita para seguir o design */
    justify-content: space-around; 
}

.right-col {
    /* Garante que os itens fiquem na ordem correta na visualização de desktop */
    flex-direction: column-reverse; 
}

.center-col {
    flex: 0 1 400px; /* Largura fixa para a coluna central */
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Estilo de cada item de diferencial */
.highlight-item {
    display: flex;
    align-items: center;
    text-align: left;
    margin: 2rem 0;
}

/* Alinha o texto à direita na coluna da direita */
.right-col .highlight-item {
    flex-direction: row-reverse;
    text-align: right;
}

.right-col .text-content {
    margin-right: 15px; /* Espaçamento entre texto e caixa de cor */
    margin-left: 0;
}

/* Estilo da caixa de cor (o quadrado pequeno) */
.color-box {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-right: 15px;
}

/* Posição da caixa de cor na coluna da direita */
.right-col .color-box {
    margin-right: 0;
    margin-left: 15px;
}

.text-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.2rem 0;
}

.text-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Cores das caixas */
.yellow-bg { background-color: #0bace6; }
.green-bg { background-color: #ed3136; }
.red-bg { background-color: #ed3136; }
.purple-bg { background-color: #0bace6; }

/* Botão CTA Laranja  */
.highlight-cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #ed3136; /* Laranja Solicitado */
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

.highlight-cta-button:hover {
    background-color: #0bace6; /* Laranja um pouco mais escuro no hover */
}

.highlight-cta-button i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .highlight-container {
        flex-direction: column;
    }

    .highlight-col {
        width: 100%;
        flex-direction: row; /* Volta a ser horizontal em telas menores */
        justify-content: space-around;
        gap: 1rem;
    }

    .left-col, .right-col {
        order: 2; /* Move as colunas laterais para baixo no mobile */
        margin-top: 2rem;
    }
    
    .right-col {
        flex-direction: row; /* Volta a ser da esquerda para a direita no mobile */
    }

    .center-col {
        order: 1; /* Mantém a imagem no topo */
        flex: 1;
        max-width: 400px;
    }

    .highlight-item {
        /* Garante que os blocos fiquem empilhados verticalmente no mobile/tablet */
        flex-direction: column; 
        text-align: center;
        width: 45%; /* Permite 2 itens por linha */
        margin: 1rem 0;
        align-items: center;
    }
    
    .right-col .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .color-box, .right-col .color-box {
        margin: 0 0 10px 0;
    }
    
    .right-col .text-content {
        margin-right: 0;
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .highlight-col {
        flex-direction: column; /* Empilha os itens verticalmente */
    }
    .highlight-item {
        width: 100%;
    }
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 992px) {
  .sobre-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px; /* reduz o espaçamento entre texto e imagem */
  }

  .sobre-imagem {
    margin-bottom: 0; /* remove margem inferior */
  }

  .sobre-shape {
    display: none; /* remove forma decorativa em telas pequenas */
  }

  .sobre-texto h2 {
    font-size: 1.8rem;
  }
}


/* ======== SEÇÃO SOBRE ======== */
.sobre-section {
  background: #0d0d0d;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* TEXTO */
.sobre-texto {
  flex: 1 1 480px;
  color: #fff;
}

.sobre-texto h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sobre-texto h2 span {
  color: #00b4ff;
}

.sobre-texto p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #e8e8e8;
}

/* IMAGEM */
.sobre-imagem {
  flex: 1 1 420px;
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 50px;
}

.sobre-imagem img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.65);
}

/* EFEITO GLOW */
.sobre-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.4), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ======== RESPONSIVO ======== */
@media (max-width: 992px) {
  .sobre-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sobre-texto h2 {
    font-size: 2.2rem;
  }

  .sobre-texto p {
    font-size: 1.05rem;
  }

  .sobre-imagem img {
    max-width: 90%;
  }

  .sobre-glow {
    display: none;
  }
}

@media (max-width: 600px) {
  .sobre-section {
    padding: 70px 20px;
  }

  .sobre-texto h2 {
    font-size: 2rem;
  }

  .sobre-texto p {
    font-size: 1rem;
  }
}


/* --- 10. Rodapé (Footer) --- */
/* Estilos básicos do Footer */
footer {
    background-color: #222; /* Fundo escuro */
    color: #fff; /* Texto branco */
    padding: 30px 0; /* Espaçamento interno */
    font-family: Arial, sans-serif; /* Fonte padrão */
    text-align: center; /* Centraliza o conteúdo geral */
}

/* Container para centralizar o conteúdo e limitar a largura */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Estilos para a nova seção de Contato */
.footer-contato-simples {
    display: flex;
    flex-direction: column; /* Organiza em coluna (contato em cima, copyright em baixo) */
    align-items: center;
}

.info-contato {
    margin-bottom: 20px;
    text-align: center;
}

.info-contato h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0bace6; /* Cor de destaque (laranja, combinando com a sua imagem anterior) */
    text-transform: uppercase;
}

.info-contato p {
    margin: 8px 0;
    font-size: 0.95rem;
}

/* Estilo para os ícones do Font Awesome */
.info-contato i {
    margin-right: 10px;
    color: #0bace6; /* Cor de destaque para os ícones */
    width: 20px; /* Garante que os ícones fiquem alinhados */
    text-align: left;
}

/* Estilos para a parte inferior (Copyright) */
.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid #444; /* Linha divisória sutil */
    width: 100%;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaa;
}

/* Ajuste para telas menores (opcional) */
@media (max-width: 600px) {
    .info-contato {
        text-align: left;
    }
}


/* --- Responsividade (Media Queries) --- */

/* Tablet (ex: iPads) */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
        /* Esconde o botão "hambúrguer" */
    }

    header nav {
        display: block;
        /* Mostra o menu normal */
        position: static;
        width: auto;
        background: none;
        border: none;
        padding: 0;
    }

    header nav ul {
        display: flex;
    }

    header nav ul li {
        margin-bottom: 0;
        margin-left: 25px;
    }

    header nav ul li a {
        font-size: 1rem;
    }




/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons a.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
}

/*======================================================*/
/* 4. GRID DE PRODUTOS */
/* Configuração Base (Mobile - até 767px): 1 Coluna */
/*======================================================*/
/* ===== GRID DE PRODUTOS ===== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coluna */
    gap: 25px;
    padding: 0 15px;
}

/* ===== CARD DE PRODUTO ===== */
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGEM ===== */
.product-card img {
    width: 100%;
    height: auto;
    max-height: 230px;
    object-fit: contain;
    padding: 15px 0;
}

/* ===== TÍTULO (MARCA) ===== */
.product-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin: 12px 0 5px;
    width: 100%;
}

/* ===== TEXTO (AMPERAGEM E GARANTIA) ===== */
.product-card .price {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
}

/* ===== BOTÃO WHATSAPP ===== */
.product-card .btn-secondary {
    display: block;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    max-width: 90%;
    margin: 0 auto 20px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.product-card .btn-secondary:hover {
    background-color: #1ebc5e;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet (2 colunas) */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (4 colunas) */
@media (min-width: 1025px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Título e descrição da seção de produtos */
.titulo-secao {
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    color: #0bace6;
    margin-bottom: 8px;
}

.descricao-secao {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}


/* FLOATING BUTTONS */
.botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.botao-whatsapp a {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.botao-whatsapp a.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.botao-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

section:last-of-type {
  padding-bottom: 0;
}

footer {
  margin-top: 0;
}

section {
  padding: 40px 0; /* em vez de 60px */
}

/* ======== FAÇA VOCÊ MESMO - ESTILO EXCLUSIVO ======== */
.diy-area-exclusiva {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.diy-conteudo-topo {
  max-width: 800px;
  margin: 0 auto 50px;
}

.diy-subtitulo {
  color: #0bace6;
  font-weight: bold;
  font-size: 2.0rem;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.diy-titulo {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

.diy-descricao {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ======== GRID DOS CARDS ======== */
.diy-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ======== CARD GERAL ======== */
.diy-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 380px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.diy-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ======== IMAGENS DE FUNDO ======== */
.diy-card-pintura {
  background-image: url('img/ligando-carro.webp');
}

.diy-card-polimento {
  background-image: url('img/andando-carro.webp');
}

.diy-card-limpeza {
  background-image: url('img/manutencao.webp');
}

/* ======== OVERLAY ======== */
.diy-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
  padding: 25px;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ======== TEXTOS DO CARD ======== */
.diy-card-titulo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.diy-card-texto {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ======== BOTÃO ======== */
.diy-botao {
  display: inline-block;
  background: #0bace6;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 22px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.diy-botao:hover {
  background: #ed3136;
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 768px) {
  .diy-titulo {
    font-size: 1.8rem;
  }

  .diy-card {
    height: 320px;
  }

  .diy-card-texto {
    font-size: 0.95rem;
  }
}
/* Ajuste para evitar que os telefones passem por cima do logo no mobile */
@media (max-width: 600px) {
    .hero {
        height: auto;
        padding-top: 220px; /* empurra o conteúdo para baixo */
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-content .btn-primary {
        margin-bottom: 20px;
    }
}




