/* 
  Design System & CSS Reset 
*/

:root {
  /* Colors - White, Blue (shades), Yellow */
  --primary-blue: #0A2342; /* Deep Navy - Traditional & Trustworthy, good for CCB context */
  --light-blue: #1C4066;
  --bg-blue: #F8FAFC; /* Soft clean background */
  --accent-yellow: #F5B301; /* Golden Yellow for high conversion */
  --accent-yellow-hover: #E0A400;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #128C7E;
  
  --white: #FFFFFF;
  --text-dark: #1A202C;
  --text-muted: #4A5568;
  --border-color: #E2E8F0;

  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Sora', sans-serif; /* Used for headings */
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Base elements */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

.logo {
  height: 80px; /* Trava a altura do menu */
  display: flex;
  align-items: center;
  overflow: hidden; /* Corta o excesso de espaço em branco da imagem */
}

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

.btn-outline {
  border: 2px solid var(--whatsapp-green);
  color: var(--whatsapp-green);
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background-color: var(--whatsapp-green);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--white) 0%, #E6F0FA 100%);
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: rgba(245, 179, 1, 0.15);
  color: #B28300;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.headline {
  font-size: 3rem;
  margin-bottom: 24px;
}

.sub-headline {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary-blue);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}

.payment-badge i {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

/* Video */
.large-video {
  width: 100%;
  max-width: 900px;
}

.video-wrapper {
  background: var(--white);
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1);
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(45deg, var(--primary-blue), var(--light-blue));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Placeholder image evoking organ/music */
  background: url('https://images.unsplash.com/photo-1579546929662-711aa81148cf?q=80&w=2070&auto=format&fit=crop') center/cover;
  opacity: 0.15;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent-yellow);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(245, 179, 1, 0.3);
  padding-left: 5px; /* Visual center play icon */
}

.play-btn:hover {
  transform: scale(1.1);
  background-color: var(--accent-yellow-hover);
}

.video-placeholder p {
  position: relative;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Capture Section */
.capture-section {
  padding: 80px 0;
  background-color: var(--primary-blue);
  color: var(--white);
}

.capture-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.capture-info h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.capture-info p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.direct-contact {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.direct-contact p {
  margin-bottom: 15px;
  font-weight: 600;
}

.btn-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--whatsapp-green);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  width: 100%;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
}

/* Form */
.capture-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #F8FAFC;
  color: var(--text-dark);
}

.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

select {
  appearance: none;
}

.btn-submit {
  width: 100%;
  background-color: var(--accent-yellow);
  color: var(--primary-blue);
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(245, 179, 1, 0.2);
}

.security-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

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

@media (max-width: 768px) {
  .features-grid {
    display: flex;
    gap: 0;
  }
}

.feature-card {
  background: var(--bg-blue);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10, 35, 66, 0.08);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 179, 1, 0.15);
  color: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background-color: var(--bg-blue);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.brand-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-left-color: var(--accent-yellow);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateX(5px);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery Carousel Section */
.gallery-section {
  padding: 80px 0;
  background-color: var(--white);
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
}

.instrument-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(10,35,66,0.95), transparent);
  color: var(--white);
  padding: 40px 15px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 10;
  pointer-events: none;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-blue) !important;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-blue) !important;
  background: rgba(255,255,255,0.8);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background-color: var(--white);
}

.trust-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.trust-content {
  flex: 1;
}

.trust-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.trust-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.trust-image {
  flex: 1;
}

.trust-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.15);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-flex;
  width: auto;
  padding: 20px 40px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-author h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stars {
  color: var(--accent-yellow);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.google-badge-wrapper {
  display: flex;
  justify-content: center;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.google-logo {
  width: 30px;
  height: 30px;
}

.google-info {
  display: flex;
  flex-direction: column;
}

.google-info strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.google-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: #051426;
  color: rgba(255,255,255,0.6);
  padding: 30px 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer-note {
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .capture-container {
    grid-template-columns: 1fr;
  }
  
  .headline {
    font-size: 2.5rem;
  }
  
  .video-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    width: 150px;
  }
  
  .btn-outline {
    font-size: 0.75rem;
    padding: 6px 10px;
    gap: 4px;
  }

  .headline {
    font-size: 2rem;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .capture-form-wrapper {
    padding: 25px;
  }
  
  .capture-section {
    padding: 50px 0;
  }
  
  .trust-container {
    flex-direction: column-reverse;
  }
  
  .cta-btn {
    width: 100%;
    padding: 16px 20px;
  }
}
