/* DougGo - Visual Profissional Premium v4.1 (Corrigido posicionamento dos botões do Swiper) */

:root {
  --primary: #1e3a8a; /* Deep blue for trust */
  --secondary: #10b981; /* Vibrant green for energy */
  --accent: #2563eb; /* Bright blue for CTAs */
  --light: #f8fafc; /* Clean white background */
  --soft-accent: #dbeafe; /* Subtle blue for sections */
  --text: #010305; /* Dark slate for readability */
  --text-secondary: #101c2e; /* Softer slate for secondary text */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, var(--accent), var(--primary));
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 2rem 1.5rem;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.top-bar {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.navbar {
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-title {
  font-size: 1.5rem;
  color: var(--primary);
}

.logo-navbar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn, .btn-nav, .btn-hero {
  background: var(--gradient);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover, .btn-nav:hover, .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-hero {
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  margin-top: 1.5rem;
}

.hero {
  background: var(--gradient);
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section {
  padding: 5rem 1rem;
}

.section:nth-of-type(even) {
  background: var(--soft-accent);
}

.grid, .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card, .step {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover, .step:hover {
  transform: translateY(-5px);
}

.card i, .step i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.printSwiper {
  position: relative;
  padding: 1rem 0;
}

.printSwiper .swiper-slide {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.printSwiper img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.print-caption {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
}

.swiper-button-prev, .swiper-button-next {
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1rem;
}

.swiper-button-prev {
  left: -10px;
}

.swiper-button-next {
  right: -10px;
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--primary);
}

.form-demo {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-demo input {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-demo input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}

.floating-whatsapp, .floating-demo, .floating-top, .floating-instagram {
  position: fixed;
  padding: 0.75rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp {
  background: #25D366;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
}

.floating-demo {
  background: var(--accent);
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  font-size: 0.9rem;
  padding: 0.5rem;
  font-family: 'Poppins', sans-serif; /* Nova fonte */
  font-weight: 700; /* Negrito */
  color: #a0e485; /* Amarelo suave */
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase; /* Mantém maiúsculas */
}

.floating-demo:hover {
  transform: scale(1.15);
  background: #1e40af; /* Cor mais escura no hover */
  color: #fff; /* Volta ao branco no hover */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.floating-top {
  background: var(--primary);
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  display: none;
}

.floating-instagram {
  background: #E1306C;
  bottom: 170px;
  right: 30px;
  width: 60px;
  height: 60px;
}

.floating-whatsapp:hover, .floating-demo:hover, .floating-top:hover, .floating-instagram:hover {
  transform: scale(1.15);
}

.bg-textura {
  background-image: url('assets/textura.jpg');
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  h2 { font-size: 1.75rem; }
  .grid, .steps { grid-template-columns: 1fr; }
  .btn, .btn-hero, .form-demo input { width: 100%; }
  .hero { padding: 4rem 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.9rem; }
  .swiper-button-prev, .swiper-button-next { display: none; }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    align-items: flex-start;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .btn-nav {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .nav-links a.btn-nav {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  display: block;
  width: 100%;
}

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .form-demo {
    width: 100%;
    padding: 1.5rem;
  }

  .form-demo input {
    width: 100%;
  }

  .printSwiper {
    padding-bottom: 3rem;
  }

  .printSwiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .swiper-container {
    width: 100% !important;
  }

  .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }

  .swiper-slide img {
    max-height: 200px;
  }

  .grid, .steps {
    grid-template-columns: 1fr !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.prints-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
}

.prints-scroll::-webkit-scrollbar {
  height: 8px;
}

.prints-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.print-card {
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  flex-shrink: 0;
  text-align: center;
}

.print-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.prints-scroll {
  -webkit-overflow-scrolling: touch; /* faz deslizar suave no iOS */
  scrollbar-width: none; /* esconde a barra no Firefox */
}

.prints-scroll::-webkit-scrollbar {
  display: none; /* esconde a barra no Chrome/Safari */
}
