/* Configurações básicas */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1321;
    color: #e0f2f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Header fixo - Estilo antigo */
.header {
    background-color: #00296b;
    padding: 20px 0;
    border-bottom: 1px solid #0d1321;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Estilização do logo */
.logo-img {
    max-height: 30px;
    width: auto;
}

/* Menu sanduíche */
.nav-toggle {
    display: none; /* Escondido por padrão em telas grandes */
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 25px;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.nav-toggle span:nth-child(1) {
    top: 0px;
}

.nav-toggle span:nth-child(2) {
    top: 9px;
}

.nav-toggle span:nth-child(3) {
    top: 18px;
}

.nav-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background-color: #f44336;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.nav-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background-color: #f44336;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    font-weight: 400;
    color: #e0f2f7;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #bbdefb;
}

/* Main Slider Section */
.main-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.slide-content {
    position: relative;
    z-index: 1;
}

.slider-slide h1 {
    font-size: 50px;
    margin: 0;
    font-weight: 300;
}

.slider-slide p {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
}

.slider-slide h3 {
    font-size: 28px;
    margin: 10px 0 20px;
    font-weight: 600;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* Footer */
.footer {
    background-color: #00296b;
    color: #fff;
    padding: 40px 0;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e0f2f7;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #bbdefb;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #00296b;
    border-top: 1px solid #0d1321;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px; /* <-- aqui entra o espacinho */
  }

  .nav-menu.active {
    display: flex;
  }

  .main-slider {
    height: 300px;
  }

  .slide-content h1 {
    font-size: 30px;
  }

  .slide-content p, .slide-content h3 {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.novidades {
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
  color: #222;
}

.sec-title {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 30px;
}

.novidades-slider {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.novidades-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  justify-content: center; /* Centraliza no desktop */
}

.novidade-card {
  min-width: 280px;
  max-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 0 0 auto;
  text-align: center;
}

.novidade-card img {
  width: 100%;
  border-radius: 8px;
}

.novidade-card .nome {
  font-size: 1rem;
  margin: 10px 0 5px;
  font-weight: 500;
  color: #0d3878; /* azul forte */
}

.novidade-card .preco {
  color: #1a237e;
  font-weight: bold;
}

.slider-arrow.prev-nov,
.slider-arrow.next-nov {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.slider-arrow.prev-nov {
  left: 10px;
}

.slider-arrow.next-nov {
  right: 10px;
}

@media (max-width: 768px) {
  .novidades-track {
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .novidade-card {
    flex: 0 0 90%;
    margin: 0 auto;
    scroll-snap-align: center;
  }

  .slider-arrow.prev-nov,
  .slider-arrow.next-nov {
    display: none;
  }
}

.influencer {
  background: #fff;
  padding: 60px 20px;
}

.influencer-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.influencer-text {
  flex: 1;
  min-width: 280px;
}

.influencer-text h2 {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Poppins', serif;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0d3878; /* azul vivo */
}

.influencer-text h2 span {
  font-style: italic;
  font-weight: 400;
  color: #e63946; /* vermelho vibrante */
}

.influencer-text span {
  font-style: italic;
  font-weight: 400;
}

.influencer-text .hashtag {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}

.influencer-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.influencer-img {
  margin-top: 20px;
  position: relative;
  width: 100%;
  max-width: 320px;
}

.influencer-img img {
  width: 100%;
  border-radius: 10px;
}

.insta-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #f06292;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.insta-tag:hover {
  background: #ec407a;
}

.influencer-slider {
  flex: 1;
  min-width: 300px;
scroll-padding-left: 10px;
}

.categorias {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.categorias .sec-title {
  font-size: 2rem;
  font-family: 'Poppins', serif;
  margin-bottom: 30px;
  color: #0d3878; /* azul forte */
}

.categorias .sec-title span {
  font-style: italic;
  font-weight: 600;
  color: #e63946; /* vermelho vibrante */
}

.categorias-slider {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.categorias-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.categoria-card {
  flex: 0 0 250px;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
  text-align: center;
  scroll-snap-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.categoria-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  padding: 20px;
  width: 100%;
  border-radius: 0 0 10px 10px;
}

.slider-arrow.prev-cat,
.slider-arrow.next-cat {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  color: #333;
}

.slider-arrow.prev-cat {
  left: 0;
}

.slider-arrow.next-cat {
  right: 0;
}

@media (max-width: 768px) {
  .categoria-card {
    flex: 0 0 80%;
    height: 300px;
  }

  .slider-arrow.prev-cat,
  .slider-arrow.next-cat {
    display: none;
  }

  .categorias-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

.insta-newsletter {
  background-color: #f4f4f4;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  text-align: center;
}

.insta-text h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #0d3878; /* azul vivo */
}

.insta-text span {
  color: #e63946; /* vermelho vibrante */
}

.insta-text p {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #222; /* preto suave para máxima legibilidade */
}

.insta-text strong {
  color: #0d3878; /* destaque no @jeanjeansstore */
}

.newsletter h3,
.social-links h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0d3878;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 250px;
}

.newsletter input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.newsletter button {
  background-color: #0d3878;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter button:hover {
  background-color: #06224e;
}

.social-links .icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.5rem;
  margin-top: 10px;
}

.social-links a {
  color: #0d3878;
  transition: 0.3s;
}

.social-links a:hover {
  color: #06224e;
}

.rodape-copy p {
  margin: 8px 0;
  font-size: 14px;
  align-items: center;
  text-align: center;
}

/* Página de Produtos */
.produtos-page {
  padding: 40px 0;
  background: #fff;
  color: #222;
}
.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.produto-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.produto-card img {
  width: 100%;
  border-radius: 8px;
}
.produto-card h3 {
  margin: 10px 0;
}
.produto-card .preco {
  color: #0d3878;
  font-weight: bold;
}

/* Página de Contato */
.contato-page {
  padding: 40px 0;
  background: #fff;
  color: #222;
}
.contato-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contato-form input, 
.contato-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}
.contato-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Página Sobre */
.sobre-page {
  padding: 40px 0;
  background: #fff;
  color: #222;
}
.sobre-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.sobre-texto {
  flex: 1 1 300px;
}
.sobre-img {
  flex: 1 1 300px;
}
.sobre-img img {
  width: 100%;
  border-radius: 8px;
}

/* HERO Sobre */
.sobre-hero {
  background: url('../img/calca-sarja-sawary-boot-cut-274683--1-.webp') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
}
.sobre-hero-content h1 {
  font-size: 2.5rem;
}
.sobre-hero-content span {
  color: #ffd700;
}

/* Quem Somos */
.sobre-info {
  background: #fff;
  color: #222;
  padding: 50px 20px;
}
.sobre-desc {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}
.valores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.valor-item {
  flex: 1 1 250px;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.valor-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0d3878;
}

/* Localização */
.sobre-local {
  padding: 50px 20px;
  background: #fafafa;
}
.sobre-local-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sobre-contatos {
  flex: 1;
  min-width: 250px;
}
.sobre-contatos h3 {
  color: #0d3878; /* azul vivo */
  margin-bottom: 15px;
}

.sobre-contatos p {
  color: #222; /* texto escuro para contraste */
  font-size: 15px;
  margin-bottom: 8px;
}

.sobre-contatos i {
  color: #e63946; /* vermelho vibrante para ícones */
  margin-right: 6px;
}
.sobre-map {
  flex: 2;
  min-width: 300px;
}

/* Redes Sociais */
.sobre-social {
  text-align: center;
  padding: 5px 5px;
  background: #00296b;
  color: white;
}
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.social-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}
.insta { background: #e4405f; }
.face { background: #1877f2; }
.whats { background: #25d366; }

/* Contato */
.contato-hero {
  background: #00296b;
  color: white;
  text-align: center;
  padding: 50px 20px;
}
.contato-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  background: white;
  color: #222;
}
.contato-form-area, .contato-info-area {
  flex: 1;
  min-width: 280px;
}
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contato-form input, .contato-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contato-form textarea {
  resize: vertical;
}

.footer {
  background-color: #00296b;
  color: #fff;
  padding: 40px 0 20px; /* ajuste para o espaçamento extra */
  text-align: left;
}

.footer .container {
  position: relative;
}

.footer-separator {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding-top: 15px;
}

.rodape-copy {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}


