/* =========================================================
   REI DO CHOPP SANDRO — Landing Page
   Todas as cores usadas no site estão centralizadas aqui em
   variáveis CSS (custom properties). Basta alterar os valores
   dentro de :root para trocar a identidade visual inteira do site.
   ========================================================= */

:root {
  /* ---- Cores principais (identidade da logo) ---- */
  --color-primary: #fbff00;        /* amarelo chopp / dourado */
  --color-primary-dark: #f5f100;   /* amarelo mais escuro (hover, detalhes) */
  --color-primary-light: #ffffff;  /* amarelo bem claro (fundos suaves) */

  --color-secondary: #e30613;      /* vermelho da logo (CTAs, destaques) */
  --color-secondary-dark: #b8040f; /* vermelho escuro (hover) */

  --color-dark: #14110f;           /* preto da logo (textos fortes, seções escuras) */
  --color-dark-soft: #000000;      /* preto suavizado (seção de marcas) */

  --color-success: #009b1d;;        /* verde (banner de rentabilidade) */
  --color-success-dark: #009b1d;

  /* ---- Base clara do site (fundo claro, nunca escuro) ---- */
  --color-bg: #ffffff;
  --color-bg-soft: #ffffff;
  --color-bg-gray: #eeeeee;

  /* ---- Textos ---- */
  --color-text: #000000;
  --color-text-muted: #000000;
  --color-text-inverse: #000000;

  /* ---- Bordas / sombras ---- */
  --color-border: #e7e2d8;
  --shadow-soft: 0 10px 30px rgba(20, 17, 15, 0.08);
  --shadow-card: 0 6px 18px rgba(20, 17, 15, 0.12);

  /* ---- Tipografia ---- */
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* ---- Layout ---- */
  --container-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 0px;
  border-radius:8px;
  font-weight:700;
  font-size:18px;
  letter-spacing:.3px;
  transition:
  transform .25s ease,
  box-shadow .25s ease,
  background .25s ease;
  position:relative;
  overflow:hidden;
}


.btn::before {
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,.35),
  transparent
  );
  transition:.5s;
}

.btn:hover::before{
  left:100%;
}

.btn:hover {
  transform:
  translateY(-4px);
  box-shadow:
  0 12px 25px rgba(0,0,0,.25);
}
.btn:hover { transform: translateY(-2px); }

.btn-success {
  background: var(--color-success);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-success:hover { background: var(--color-success-dark); }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--color-primary-dark); }

.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--color-primary);
  color: var(--color-dark);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}

/* =========================================================
   HEADER / HERO
   ========================================================= */
.hero {
  position: relative;
  height: calc(100vh - 45px);
  min-height: 650px;
  background-image: url('./../img/fundo_hero.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow:hidden;
}

.hero-layer {
  position:relative;
  width:100%;
  height:100%;
}

.hero-logo-rei {
  position:absolute;
  top:80px;
  left:80px;
  width:150px;
  z-index:3;
  transition:.4s ease;
}

.hero-logo-belco {
  position:absolute;
  top:220px;
  left:100px;
  width:110px;
  z-index:3;
  transition:.4s ease;
}

.hero-produtos{
  position:absolute;
  bottom:70px;
  right:40px;
  width: clamp(900px, 60vw, 1500px);
  z-index:2;
  transition:
    transform .5s ease,
    filter .5s ease;
}

.hero-detona{
  position:absolute;
  top:50px;
  left:300px;
  width:300px;
  z-index:3;
  transition:.4s ease;
}

.hero img {
  will-change:transform;
}

.hero-produtos:hover {
 transform:translateY(-10px) scale(1.03);
 filter:drop-shadow(0 20px 25px rgba(0,0,0,.35));
}

img {
  transition:
  transform .4s ease,
  filter .4s ease;
}

.btn-hero {
    position:absolute;
    background-color:#f5f100;
    color:#000;

    top:400px;
    left:80px;

    border:1px solid #fff;

    width:270px;
    height:50px;

    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    font-weight:bold;
    text-decoration:none;

    animation: brilhoBotao 1.8s infinite ease-in-out;

    transition:.3s ease;
}


.btn-hero:hover {
    transform:scale(1.08);
    background-color:#fdfdfd;
}


/* Efeito de luz pulsando */
@keyframes brilhoBotao {

    0% {
        box-shadow:
        0 0 0 0 rgba(247, 247, 245, 0.8);
    }

    50% {
        box-shadow:
        0 0 25px 10px rgba(243, 243, 240, 0.6);
    }

    100% {
        box-shadow:
        0 0 0 0 rgba(250, 250, 249, 0.8);
    }

}

.produtos-img img:hover,
.banner-photo img:hover,
.selo-card img:hover {
  transform:scale(1.04);
  filter:
  brightness(1.08);
}

/* =========================================================
   FEATURES STRIP
   ========================================================= */
.features {
  background: var(--color-bg-gray);
  padding: 46px 0;
}
.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.feature i {
  font-size: 80px;
  margin: 0 auto 14px;
  color: #000;
}
.feature h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--color-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.feature p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* =========================================================
   PRODUTOS / DIVERSIFICAÇÃO
   ========================================================= */
.produtos {
  padding: 90px 0 60px;
  position: relative;
  background-color: var(--color-bg);
}
.produtos .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:flex-end;
}
.produtos-img {
  position: relative;
}
.produtos-img img {
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.btn-produto{
  margin-bottom: 20px;
  width: 100%;
  height: 80px;
}

.produtos-text p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.7;
}
.produtos-text strong { color: var(--color-dark); }

.pedido-minimo {
  margin: 26px 0;
  padding: 22px 24px;
  background: var(--color-primary-light);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-sm);
}
.pedido-minimo h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.pedido-minimo li {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* =========================================================
   BLACK SECTION — SELOS + BANNERS
   ========================================================= */
.destaque {
  background: var(--color-dark-soft);
  padding: 60px 0;
}
.destaque .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
}
.selos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.selo-card {
  background:#fff;
  border-radius:12px;
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:
  transform .3s ease,
  box-shadow .3s ease;
}

.selo-card:hover {
  transform:
  translateY(-8px);
  box-shadow:
  0 15px 30px rgba(0,0,0,.2);
}

.selo-card img { width: 100%; }

.btn-whatsapp {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 6px;
}

.btn-whatsapp .btn { width: 100%; }

.banners { display: flex; flex-direction: column; gap: 18px; }

.banner-cta img{
  width:100%;
  transition:.4s ease;
}

.banner-cta .flag {
  font-size: 30px;
}

.banner-cta h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.banner-cta h3 span { display: block; font-size: 30px; }

.banner-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.banner-photo img { width: 100%; display: block; }

.banner-rent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-rent h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.banner-rent h3 span { display: block; font-size: 27px; }
.banner-rent .arrow { font-size: 28px; }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  background: var(--color-primary);
}
.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.newsletter-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter-info i {
  font-size: 50px;
}
.newsletter-info .icon { font-size: 30px; }
.newsletter-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.newsletter-info p { font-size: 13.5px; color: var(--color-dark); opacity: 0.75; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
}
.newsletter-form button {
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  background: var(--color-dark);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #000; }

/* =========================================================
   ÁREA DE ATENDIMENTO
   ========================================================= */
.atendimento {
  padding: 80px 0;
}

.atendimento .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.atendimento-info {
  display: flex;
  flex-direction: column;
  justify-content:center;
}

.atendimento h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 26px;
}

.regiao {
  margin-bottom: 20px;
}

.regiao h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.regiao p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.atendimento-map {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.atendimento-map iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #000;
  color: #cfc9bd;
  padding: 50px 0 26px;
}
footer .container {

    display:grid;

    grid-template-columns:
    1.2fr 1fr 1.4fr .8fr;

    gap:40px;

    align-items:start;

}
footer h5 {
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
footer p {

    font-size:14px;

    line-height:1.6;

    margin-bottom:10px;

}


footer strong {

    color:#fff;

}


.social-title {

    margin-top:25px;

}


.footer-security {

    margin-top:20px;

    color:#aaa;

}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.15);
}

.payment-icons i {
  font-size: 30px;
  color: #fff;
  padding-right: 10px;
  transition: transform 0.2s;
}

.payment-icons i:hover {
  transform: scale(1.15);
}

.footer-bottom {
  border-top: 1px solid #3a352d;
  margin-top: 36px;
  padding-top: 18px;
  text-align: center;
  font-size: 12.5px;
  color: #8f887c;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width: 1300px){
  .btn-hero {
    top:400px;
    left:80px;
    text-align: center;
    font-size: 15px;
    width:150px;
    height:50px;
  }
}
@media(max-width: 1195px){
  .btn-hero {
    top:75px;
    left: 70vw;
    font-size: 15px;
    width:250px;
    height:50px;
  }
}
@media(max-width: 1024px){
  .topbar span {
    font-size: 11px;
  }
  .hero-logo-rei {
    top:25px;
    left:20px;
    width:130px;
  }

  .hero-logo-belco {
    top:170px;
    left:30px;
    width:100px;
  }

  .hero-produtos {
    width: 90vw;
    right: 50px;
    bottom: 80px;
  }

  .hero-detona{
    top:10px;
    left:300px;
    width:230px;
  }

}

@media (max-width: 900px) {
  .produtos .container,
  .atendimento .container,
  .destaque .container {
    grid-template-columns: 1fr;
  }
  .features .container { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
  .newsletter .container { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%; }

  .hero-produtos {
    width: 100vw;
    right: 0px;
    bottom: 80px;
  }

  .hero-detona{
    top: 20%;
    left: 20%;
    width:200px;
  }

  .btn-hero {
    top:75px;
    left: 55vw;
    font-size: 15px;
    width:250px;
    height:50px;
  }
}

@media(max-width:600px){
.hero {
  height:650px;
}

.hero-logo-rei {
  top:25px;
  left:20px;
  width:130px;
}

.hero-logo-belco {
  top:25px;
  left:150px;
  width:100px;
}

.hero-produtos {
  margin: 0 auto;
  width:65vh;
  right:0;
  left: 0;
  bottom:50px;
}

.hero-detona{
    top:25%;
    left:0%;
    width:200px;
}

.btn-hero {
  top:48px;
  left: 270px;
  font-size: 13px;
  width:180px;
  height:50px;
}

.container{
  padding:0 18px;
}

.section-title{
  font-size:26px;
}

.features .container{
  grid-template-columns:1fr;
}

.produtos .container{
  gap:30px;
}

.btn-produto{
  height:60px;
}

.newsletter-form{
  flex-direction:column;
}

.newsletter-form button{
  width:100%;
}

.atendimento-map iframe{
  height:300px;
  }
}
@media(max-width: 465px){
  .btn-hero {
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 90%;
    font-size: 15px;
    width:90%;
    height:50px;
  }
}
