/*
Theme Name: CenterSIM Theme
Theme URI: https://centersim.com.br
Author: CenterSIM
Author URI: https://centersim.com.br
Description: Custom WordPress theme for CenterSIM
Version: 1.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: centersim
Requires PHP: 7.4
*/
/* ===== RESET & GLOBAL ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #F76510;
  --primary-dark: #d9560e;
  --primary-light: #ff8a3d;
  --secondary: #4CAF50;
  --dark: #1c1c1c;
  --dark-2: #2d2d2d;
  --gray: #666;
  --gray-light: #999;
  --gray-bg: #f5f5f5;
  --gray-bg-2: #fafafa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  height: 74px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.navbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  gap: 15px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  gap: 32px;
}

.navbar-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .navbar-menu a {
  color: var(--white);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover,
.navbar.scrolled .navbar-menu a:hover {
  color: var(--secondary);
}

.navbar a.btn {
  height: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 101, 16, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary);
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-outline-primary:hover {
  color: var(--white);
  border-color: var(--primary);
}

.btn-outline-primary:hover::before {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-green {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 8px 22px;
  font-size: 0.85rem;
}

.btn-nav-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 8px 22px;
  font-size: 0.85rem;
  width: 150px;
}

.btn-nav-outline:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-green:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 101, 16, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--gray-bg);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Utilities */
.d-desktop-none {
  display: none !important;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-simple {
  position: relative;
  padding: 140px 0 100px;
  background: radial-gradient(circle at top right, rgba(247, 101, 16, 0.15), transparent),
              radial-gradient(circle at bottom left, rgba(247, 101, 16, 0.05), transparent),
              var(--dark);
  color: var(--white);
  overflow: hidden;
}

.hero-simple::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-simple h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.hero-simple h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-simple p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-simple {
    padding: 100px 0 60px;
    text-align: center;
  }
  .hero-simple h1 {
    font-size: 2.5rem;
  }
  .hero-simple .hero-btns {
    justify-content: center;
  }
}


.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 4px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-15px) translateX(-50%);
  }
  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0) translateX(-50%);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px) translateX(-50%);
    opacity: 1;
  }
}

.hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.85) 0%, rgba(28, 28, 28, 0.4) 100%);
}

.hero-content {
  max-width: 620px;
  color: var(--white);
}

.hero-label {
  display: block;
  background: none;
  color: var(--primary);
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-content p {
  font-size: 1.1rem;
  text-wrap: balance;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-dots {
  position: absolute;
  right: 40px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 4px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--white);
  height: 36px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 5;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.hero-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-bg);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-stats-compact {
  padding: 40px 0;
}

.section-orange {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== TV/VIDEO SECTION ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.video-play i {
  font-size: 3rem;
  color: var(--white);
  transition: var(--transition);
}

.video-card:hover .video-play {
  background: rgba(0, 0, 0, 0.4);
}

.video-card:hover .video-play i {
  transform: scale(1.15);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.video-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.video-info .btn {
  font-size: 0.85rem;
  padding: 8px 20px;
}

/* ===== MAGAZINE SECTION ===== */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.magazine-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.magazine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.magazine-cover {
  aspect-ratio: 3/4;
  background: var(--gray-bg);
  overflow: hidden;
}

.magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-info {
  padding: 20px;
  text-align: center;
}

.magazine-info h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.magazine-info .btn {
  font-size: 0.85rem;
  padding: 8px 20px;
}

/* ===== QUEM SOMOS GRID ===== */
.quemsomos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .quemsomos-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MAP / LOCATION SECTION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-map img {
  width: 100%;
}

.location-info {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.location-info h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.location-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.location-contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.location-contact-item p {
  font-size: 1rem;
  color: var(--gray);
}

/* ===== CONTACT GRID & FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Card (FAQ sidebar) */
.contact-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
}

.contact-card-map {
  background: #f5f5f5;
  line-height: 0;
}

.contact-card-map iframe {
  width: 100%;
  display: block;
}

.contact-card-map img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.contact-card-body {
  padding: 28px;
}

.contact-card-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-card-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-card-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-card-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-card-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-card-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(247, 101, 16, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-item:hover .faq-question {
  color: var(--primary);
}

.faq-question {
  padding: 18px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question i {
  color: var(--dark);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  height: 0;
  overflow: hidden;
  color: var(--gray);
  opacity: 0;
  transition: all 0.3s ease;
  line-height: 1.7;
  font-size: 0.9rem;
}

.faq-item.open .faq-answer {
  padding: 0 0 18px;
  height: auto;
  opacity: 1;
}


/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-nav button.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  position: relative;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.footer-mantra {
  margin-left: auto;
}

/* ===== PAGE HERO / BREADCRUMB ===== */
.page-hero {
  margin-top: 0;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 101, 16, 0.15) 0%, transparent 70%);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--primary);
}

.page-hero .breadcrumb span {
  color: var(--primary);
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-intro h2 span {
  color: var(--primary);
}

.about-intro p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Mission Vision Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mvv-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.mvv-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services list */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.service-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray);
}

.section-dark .stat-number {
  color: var(--primary);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-form-card p {
  color: var(--gray);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--gray-bg-2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247, 101, 16, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-card .icon-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* FAQ duplicate overrides removed — styles defined in FAQ SECTION above */

/* ===== PARTNER PAGE ===== */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 20px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 101, 16, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(247, 101, 16, 0.1);
  border-color: rgba(247, 101, 16, 0.2);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(247, 101, 16, 0.2);
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(-10deg) scale(1.1);
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  opacity: 0.85;
}

/* Bento Spans */
@media (min-width: 992px) {
  .benefit-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
  }
  .benefit-card:nth-child(2) {
    background: var(--dark);
    color: var(--white);
  }
  .benefit-card:nth-child(2) h4 { color: var(--white); }
  .benefit-card:nth-child(2) p { color: rgba(255,255,255,0.7); }
  
  .benefit-card:nth-child(6) {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f0 100%);
  }
}

@media (max-width: 991px) {
  .partner-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partner-benefits {
    grid-template-columns: 1fr;
  }
}

/* Partner check list */
.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--gray);
}

.check-list li i {
  color: var(--primary);
  margin-top: 4px;
}

/* ===== JÁ SOU PARCEIRO ===== */
.partner-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.app-downloads {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.app-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--dark);
  border-radius: var(--radius);
  color: var(--white);
  transition: var(--transition);
}

.app-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--dark-2);
}

.app-download-btn i {
  font-size: 1.8rem;
}

.app-download-btn .app-text {
  display: flex;
  flex-direction: column;
}

.app-download-btn .app-text small {
  font-size: 0.7rem;
  opacity: 0.7;
}

.app-download-btn .app-text span {
  font-weight: 600;
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
  }

  .navbar-menu.open {
    transform: translateY(0);
  }

  .navbar-menu a {
    color: var(--dark) !important;
  }

  .d-desktop-none {
    display: inline-flex !important;
  }

  .d-mobile-none {
    display: none !important;
  }

  .navbar-actions {
    flex: 0;
  }

  .navbar-menu a,
  .navbar-menu .btn {
    padding: 14px 16px;
    width: 100%;
    text-align: center;
  }

  .navbar-toggle {
    display: block;
  }

  .hero {
    height: clamp(560px, 92svh, 680px);
    min-height: clamp(560px, 92svh, 680px);
  }

  .hero-slides,
  .hero-slide {
    height: clamp(560px, 92svh, 680px);
    min-height: clamp(560px, 92svh, 680px);
  }

  .hero-slide {
    align-items: flex-end;
    padding: 110px 0 56px;
  }

  .hero-slide-bg {
    object-position: var(--hero-mobile-position, center center);
  }

  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.15) 0%, rgba(28, 28, 28, 0.45) 38%, rgba(28, 28, 28, 0.88) 100%);
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 460px;
  }

  .hero-content p {
    max-width: 34ch;
  }

  .hero-arrows {
    top: auto;
    bottom: 88px;
    transform: none;
    padding: 0 15px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .partner-app-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero {
    height: clamp(520px, 88svh, 620px);
    min-height: clamp(520px, 88svh, 620px);
  }

  .hero-slides,
  .hero-slide {
    height: clamp(520px, 88svh, 620px);
    min-height: clamp(520px, 88svh, 620px);
  }

  .hero-slide {
    padding: 102px 0 52px;
  }

  .hero-content h1 {
    font-size: 1.45rem;
    max-width: 16ch;
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 30ch;
    margin-bottom: 24px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-dots {
    right: 18px;
    bottom: 18px;
  }

  .supplier-brand-box {
    width: 180px;
    height: 96px;
    padding: 12px;
  }

  .supplier-brand-box img {
    max-width: 85%;
    max-height: 72%;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .app-downloads {
    flex-direction: column;
  }
}

/* ===== NEW QUEM SOMOS ACCORDION ===== */
.qs-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--dark);
}

.qs-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.qs-header-left {
  min-width: 0;
}

.qs-header-right {
  min-width: 0;
}

.qs-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--dark);
}

.qs-title span {
  color: var(--primary);
}

.qs-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--body);
}

.qs-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.qs-tabs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qs-tab {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: 50px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.qs-tab:hover {
  border-color: rgba(76, 175, 80, 0.3);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.05);
}

.qs-tab.active {
  background: var(--white);
  border-color: var(--secondary);
  border-width: 2px;
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.1);
}

.qs-tab.active .qs-tab-title {
  color: var(--secondary);
}

.qs-tab-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qs-tab-title span {
  color: var(--secondary);
  font-weight: 800;
}

.qs-tab-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--secondary);
}

.qs-tab.active .qs-tab-arrow,
.qs-tab:hover .qs-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.qs-display {
  position: relative;
}

.qs-panel {
  display: none;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  width: 100%;
  align-items: stretch;
}

.qs-panel.active {
  display: grid;
}

.qs-image-container {
  background: #f8f9fa;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.qs-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qs-content-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qs-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  color: var(--dark);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #eaeaea;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.qs-card.highlight {
  background: var(--secondary);
  color: var(--white);
  border: none;
  text-align: center;
  align-items: center;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qs-card.highlight h3 {
  color: var(--white) !important;
  font-size: 2rem !important;
  margin-bottom: 20px !important;
}

.qs-card.highlight p {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  opacity: 1 !important;
}

.qs-content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qs-stat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qs-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qs-stat-region {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  width: 130px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
}

.qs-stat-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  overflow: hidden;
}

.qs-stat-bar > span {
  display: block;
  height: 100%;
  background: var(--white);
  border-radius: 99px;
  transition: width 0.6s ease;
}

.qs-stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.qs-badge {
  background: var(--white);
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.qs-pill-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.qs-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
  .qs-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .qs-container {
    grid-template-columns: 1fr;
  }

  .qs-image-container {
    height: 300px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .qs-header {
    flex-direction: column;
    gap: 20px;
  }

  .qs-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qs-title {
    font-size: 2.5rem;
  }
}

.qs-fade-in {
  animation: qsFadeIn 0.4s ease-out forwards;
}

@keyframes qsFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BRAZIL MAP ===== */
.brazil-map-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 20px;
  padding: 30px;
}

.brazil-map-container svg {
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.brazil-map-region {
  transition: fill-opacity 0.3s ease;
}

.brazil-map-region:hover {
  fill-opacity: 0.85;
}

.brazil-map-dot {
  animation: dotPulse 2.5s ease-in-out infinite;
}

.brazil-map-dot:nth-child(2n) {
  animation-delay: 0.5s;
}

.brazil-map-dot:nth-child(3n) {
  animation-delay: 1s;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== SUPPLIERS / BRANDS ===== */
.suppliers-carousel {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.suppliers-draggable {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}

.suppliers-draggable::-webkit-scrollbar {
  display: none;
}

.suppliers-track {
  display: flex;
  gap: 30px;
  animation: scroll 150s linear infinite;
  width: max-content;
}

.suppliers-track-static {
  animation: none;
  padding: 0 30px;
}

.supplier-brand-box {
  width: 240px;
  height: 120px;
  background-color: #ffffff !important;
  border-radius: 12px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  padding: 15px;
  flex-shrink: 0;
  transition: var(--transition);
  overflow: hidden;
}

.supplier-brand-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.supplier-brand-box:focus-visible {
  outline: 3px solid rgba(247, 101, 16, 0.35);
  outline-offset: 3px;
}

.supplier-brand-box img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  margin: 0 auto;
}

/* ===== NEW SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-new-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.service-new-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-new-card:hover .service-new-box {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-new-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-new-card:hover .service-new-box img {
  transform: scale(1.05);
}

.service-new-card h3 {
  font-size: 0.85rem;
}

.service-new-card p {
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
}

/* ===== PARCEIROS SECTION REDESIGN ===== */
.section-parceiros {
  background: #f4f7f9;
  padding: 80px 0;
}

.parceiros-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.parceiros-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.parceiros-header .section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
}

.contact-new-form input:focus,
.contact-new-form select:focus,
.contact-new-form textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 103, 0, 0.1);
}

.contact-new-wrapper {
  display: flex;
  align-items: stretch;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-block {
  flex: 1;
  background: var(--primary);
  padding: 60px 45px;
  border-radius: 30px;
  color: var(--white);
  position: relative;
  z-index: 2;
  box-shadow: 15px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.contact-form-block {
  flex: 2;
  background: var(--white);
  padding: 50px 50px 50px 80px;
  /* Extra left padding for overlap space */
  border-radius: 0 30px 30px 0;
  margin-left: -40px;
  /* Overlap effect */
  z-index: 1;
  box-shadow: var(--shadow);
}

.info-subtitle {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: #fff;
  letter-spacing: 1px;
}

.pilares-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pilar-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pilar-icon {
  font-size: 1rem;
  color: var(--white);
  height: 1.54rem; /* Aligns with the 1.4 line-height of the 1.1rem title */
  display: flex;
  align-items: center;
}

.pilar-text h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 0;
}

.pilar-text p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Form Styles */
.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-new-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-new-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-new-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-left: 10px;
}

.contact-new-form input,
.contact-new-form select,
.contact-new-form textarea {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid #e1e8ed;
  background: #f8fafc;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.contact-new-form textarea {
  border-radius: 20px;
}

.form-contact-error {
  color: #e53e3e;
  font-size: 0.85rem;
  margin: -5px 0 5px;
}

.form-footer {
  margin-top: 5px;
}

.form-footer .btn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-new-wrapper {
    flex-direction: column;
  }

  .contact-form-block {
    margin-left: 0;
    margin-top: -30px;
    padding: 60px 30px 30px;
    border-radius: 0 0 30px 30px;
  }

  .contact-info-block {
    border-radius: 30px 30px 0 0;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS MARQUEE SECTION ===== */
.section-testimonials-marquee {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-marquee-grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-text-col {
  flex: 1;
}

.marquee-text-col .section-label {
  display: block;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.marquee-text-col .section-title {
  font-size: 3rem;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 25px;
  text-align: left;
  /* Ensure left alignment */
}

.marquee-text-col .section-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 35px;
  max-width: 450px;
  text-align: left;
  /* Ensure left alignment */
}

.marquee-visual-col {
  flex: 1.5;
  display: flex;
  gap: 24px;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.marquee-column {
  flex: 1;
  height: max-content;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-up .marquee-inner {
  animation: scrollUp 40s linear infinite;
}

.column-down .marquee-inner {
  animation: scrollDown 40s linear infinite;
}

.marquee-hover-pause:hover .marquee-inner {
  animation-play-state: paused;
}

.testimonial-card-mini {
  background: #f8fbfb;
  /* Very light tint */
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-mini:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mini-quote {
  color: var(--secondary);
  opacity: 0.2;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-card-mini p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  font-weight: 500;
}

.mini-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Align to right */
  gap: 12px;
}

.mini-author-info {
  display: flex;
  flex-direction: column;
  text-align: right;
  /* Text aligned to right */
}

.mini-author strong {
  font-size: 0.9rem;
  color: var(--dark);
}

.mini-author span {
  font-size: 0.8rem;
  color: #888;
}

.mini-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mini-photo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1rem;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .testimonials-marquee-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .marquee-text-col .section-description {
    margin-left: auto;
    margin-right: auto;
  }

  .marquee-visual-col {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .marquee-visual-col {
    flex-direction: column;
    height: auto;
    gap: 16px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .marquee-column {
    width: 100%;
    height: auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .marquee-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .column-up .marquee-inner {
    animation: scrollLeft 30s linear infinite;
  }

  .column-down .marquee-inner {
    animation: scrollRight 30s linear infinite;
  }

  .testimonial-card-mini {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
    flex-shrink: 0;
  }

  .testimonial-card-mini p {
    font-size: 0.85rem;
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===== PAGE HERO WITH BACKGROUND IMAGE ===== */
.page-hero-with-bg {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 0 100px !important;
  margin-top: 0 !important;
  background: var(--dark);
  overflow: hidden;
}

.page-hero-with-bg h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.04em;
  max-width: 800px;
}

.page-hero-with-bg p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.6;
}

.page-hero-with-bg .container {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: saturate(0.85) brightness(0.9);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  mix-blend-mode: multiply;
  z-index: 1;
}

.page-hero-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.Power BI.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}


/* ===== TESTIMONIAL AUTHOR (Seja Parceiro) ===== */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.testimonial-author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-store {
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-location {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== APP MOCKUP (Já Sou Parceiro) ===== */
/* ===== PHONE DEVICE MOCKUP ===== */
.partner-app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-app-visual img {
  border-radius: 16px;
}

.phone-device {
  position: relative;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 620px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 4px #1a1a1a,
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1c1c1c 0%, #2a2a2a 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.phone-status-icons {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
}

.phone-app-header {
  background: var(--primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-app-header img {
  height: 28px;
}

.phone-app-content {
  padding: 20px 16px;
  flex: 1;
}

.phone-greeting {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.phone-subgreeting {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.phone-stat {
  background: rgba(247, 101, 16, 0.12);
  border: 1px solid rgba(247, 101, 16, 0.25);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}

.phone-stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.phone-stat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.phone-menu-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.phone-menu-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

.phone-menu-item span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(247, 101, 16, 0.12) 0%, rgba(247, 101, 16, 0) 60%);
  z-index: -1;
  pointer-events: none;
}

/* ===== APP FEATURES GRID (Já Sou Parceiro) ===== */
.app-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.app-feature-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.app-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.app-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(247, 101, 16, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.app-feature-card:hover .app-feature-icon {
  background: var(--primary);
}

.app-feature-icon i {
  color: var(--primary);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.app-feature-card:hover .app-feature-icon i {
  color: #fff;
}

.app-feature-card h4 {
  color: var(--dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.app-feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .app-features-grid {
    grid-template-columns: 1fr;
  }
  
  .app-feature-card {
    padding: 24px;
  }
}

/* Form Success Animation Styles */
.form-success-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 80px 20px;
  min-height: 480px;
  animation: formFadeIn 0.8s ease-out;
}

.success-icon-container {
  width: 140px;
  height: 140px;
  border: 4px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  animation: successPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-icon-container i {
  font-size: 4.5rem;
  color: var(--secondary);
  animation: successIconBounce 0.6s 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.form-success-wrapper h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  opacity: 0;
  animation: textSlideUp 0.5s 0.5s forwards;
}

.form-success-wrapper p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 320px;
  line-height: 1.6;
  opacity: 0;
  animation: textSlideUp 0.5s 0.7s forwards;
}

@keyframes formFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; border-width: 1px; }
  60% { transform: scale(1.1); opacity: 1; border-width: 6px; }
  100% { transform: scale(1); opacity: 1; border-width: 4px; }
}

@keyframes successIconBounce {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes textSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .success-icon-container {
    width: 110px;
    height: 110px;
  }
  .success-icon-container i {
    font-size: 3.5rem;
  }
  .form-success-wrapper {
    min-height: 380px;
    padding: 40px 10px;
  }
  .form-success-wrapper h3 {
    font-size: 1.5rem;
  }
}


