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

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* =====================================
   BASE
===================================== */
html, body {
    height: 100%;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

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

/* =====================================
   CONTAINER PADRÃO
===================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================
   HEADER
===================================== */
.header {
    background: #fff;
    padding: 18px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.header nav a {
    color: #000;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

.header nav a:hover {
    opacity: 0.7;
}

/* =====================================
   MAIN
===================================== */
.main-content {
    flex: 1;
}

/* =====================================
   HERO (FULL WIDTH)
===================================== */
.hero {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

/* Overlay escuro */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ===============================
   SLIDER PROFISSIONAL DEFINITIVO
================================ */

.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000;
}

/* WRAPPER QUE DESLIZA */
.banner-wrapper {
  display: flex;
  height: 100%;
  transition: transform .6s ease-in-out;
}

/* CADA SLIDE */
.banner-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

/* IMAGEM DE FUNDO */
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

/* OVERLAY ESCURO */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

/* CONTEÚDO */
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  color: #fff;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-content p {
  max-width: 600px;
  margin-bottom: 25px;
  font-size: 18px;
  opacity: .95;
}

/* BOTÃO */
.btn-cta {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(90deg,#1fb6ff,#2563eb);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
}

/* ===============================
   SETAS
================================ */

.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-prev {
  left: 25px;
}

.banner-next {
  right: 25px;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(0,0,0,.8);
  transform: translateY(-50%) scale(1.1);
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 1024px) {
  .banner {
    height: 520px;
  }

  .banner-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .banner {
    height: 420px;
  }

  .banner-content h1 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 15px;
  }

  .banner-prev,
  .banner-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* =====================================
   BOTÃO CTA BASE
===================================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    max-width: 260px;

    background: linear-gradient(45deg, #007bff, #00c6ff);
    padding: 14px 32px;
    border-radius: 40px;

    color: #fff;
    font-weight: 600;
    font-size: 16px;

    transition: all 0.3s ease;
}

/* Hover */
.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* =====================================
   ANIMAÇÃO DO TEXTO
===================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   FOOTER
===================================== */
.footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-text {
  opacity: .8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  margin-right: 12px;
  display: inline-block;
}

.footer-social img {
  width: 26px;
  transition: .3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-right h3 {
  margin-bottom: 15px;
}

.footer-right p {
  margin-bottom: 10px;
  opacity: .9;
}

.footer-right a {
  color: #1fb6ff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  opacity: .7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* =====================================
   RESPONSIVO
===================================== */
@media (max-width: 992px) {

    .hero {
        height: 500px;
    }

    .banner-content {
        height: 500px;
        text-align: center;
        align-items: center;
    }

    .banner-content h1 {
        font-size: 34px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {

    .hero {
        height: 400px;
    }

    .banner-content {
        height: 400px;
        padding: 0 20px;
    }

    .banner-content h1 {
        font-size: 26px;
    }
}

/* =====================================
   SEÇÃO FRASE INSPIRADORA
===================================== */

.secao-frase {
    background: #f5f7fa;
    padding: 80px 0;
}

.frase-box {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.frase-texto {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.8;
    color: #111;
    margin-bottom: 25px;
}

.frase-autor {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

/* Responsivo */
@media (max-width: 768px) {
    .frase-texto {
        font-size: 20px;
    }

    .secao-frase {
        padding: 60px 20px;
    }
}

/* =====================================
   SEÇÃO REPRESENTAÇÕES
===================================== */

.secao-representacoes {
    padding: 90px 0;
    background: #ffffff;
}

.representacoes-topo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.representacoes-topo h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.representacoes-topo p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* GRID */
.representacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* CARD */
.card-representada {
    background: #f8f9fb;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
}

.card-representada:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* LOGO PADRÃO QUADRADO */
.logo-representada {
    width: 200px;
    height: 140px;
    margin: 0 auto 20px auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.logo-representada img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* TÍTULO */
.card-representada h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* BOTÃO */
.btn-detalhes {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-detalhes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* =====================================
   SEÇÃO COMENTÁRIOS
===================================== */

.secao-comentarios {
    padding: 100px 0;
    background: #f5f7fa;
}

.comentarios-topo {
    text-align: center;
    margin-bottom: 60px;
}

.comentarios-topo h1 {
    font-size: 34px;
}

/* GRID */
.comentarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.card-comentario {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    position: relative;
    transition: 0.3s ease;
}

.card-comentario:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Texto */
.comentario-texto {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

/* Autor */
.comentario-autor {
    font-weight: 700;
    font-size: 15px;
    color: #007bff;
}

/* =====================================
   SEÇÃO REPRESENTAÇÕES
===================================== */
.secao-representacoes {
    padding: 90px 0;
    background: #ffffff;
}

.representacao-logo img {
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.representacoes-topo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.representacoes-topo h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.representacoes-topo p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.representacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.card-representada {
    background: #f8f9fb;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
}

.card-representada:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.logo-representada {
    width: 200px;
    height: 140px;
    margin: 0 auto 20px auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.logo-representada img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-representada h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-detalhes {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-detalhes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* =====================================
   CATÁLOGO FLIPBOOK
===================================== */

.catalogo-revista {
    margin-top: 40px;
}

#flipbook-container {
    display: flex;
    justify-content: center;
    position: relative;
}

#flipbook {
    width: 980px;
    height: 650px;
    background: #ddd;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
    border-radius: 10px;
}

#flipbook-wrapper {
    width: 100%;
    max-width: 1100px;
    height: 700px; /* ALTURA FIXA */
    margin: 0 auto;
    position: relative;
    background: #111;
    border-radius: 12px;
    overflow: hidden; /* impede barra externa */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fullscreen mantém layout */
#flipbook-wrapper:fullscreen {
    background: #000;
}

#flipbook-wrapper:fullscreen .catalogo-controls-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

#flipbook-viewport {
    transition: transform 0.25s ease;
    transform-origin: center center;
}

.flipbook-hidden {
    visibility: hidden;
}

.flip-page {
    width: 490px;
    height: 650px;
    background: #fff;
}

.flip-page canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.flipbook-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.flip-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.flip-btn:hover {
    background: #333;
}

.catalogo-controls-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.download-btn {
    background: linear-gradient(45deg, #28a745, #3ddc84);
}

.download-btn:hover {
    background: #1e7e34;
}

/* =====================================
   LISTA DE CATÁLOGOS
===================================== */
.catalogos-lista {
    margin-top: 60px;
}

.catalogos-lista h2 {
    margin-bottom: 25px;
    font-size: 24px;
}

.catalogos-grid {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.catalogos-grid li a {
    display: block;
    padding: 18px;
    background: #111;
    color: #fff;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.catalogos-grid li a:hover {
    background: #333;
}

.contato-premium{
  padding:60px 0;
}
.contato-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.contato-info ul{
  list-style:none;
  padding:0;
}
.contato-info li{
  margin-bottom:12px;
  font-size:16px;
}
.contato-form form{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contato-form input,
.contato-form textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
}
.contato-form textarea{
  min-height:120px;
}
.success{
  background:#15803d;
  color:#fff;
  padding:10px;
  border-radius:6px;
}
@media(max-width:768px){
  .contato-grid{
    grid-template-columns:1fr;
  }
}
.btn-whatsapp{
  display:inline-block;
  margin-top:15px;
  background:#25D366;
  color:#fff;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:.2s;
}
.btn-whatsapp:hover{
  background:#1ebe5d;
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 25px rgba(0,0,0,.25);
  z-index:9999;
  transition:.3s;
}

.whatsapp-float img{
  width:32px;
  height:32px;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}
.secao-equipe{
  padding:70px 0;
}

.equipe-topo{
  text-align:center;
  margin-bottom:40px;
}

.equipe-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card-equipe{
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
  transition:.3s;
}

.card-equipe:hover{
  transform:translateY(-6px);
}

.equipe-foto img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.equipe-info{
  padding:20px;
}

.equipe-info h3{
  margin:0;
  font-size:20px;
}

.funcao{
  display:block;
  font-weight:bold;
  color:#1fb6ff;
  margin-bottom:10px;
}
