/*
Theme Name: FrotaShop
Theme URI: https://frotashop.com
Author: FrotaShop Team
Author URI: https://frotashop.com
Description: Tema customizável para FrotaShop - focado em gestão de frotas e e-commerce
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frotashop
Tags: e-commerce, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #ffd700;
  --text-color: #1f2937;
  --bg-color: #ffffff;
  --border-color: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f5f5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .site-header .container {
    padding: 0 20px;
  }
}

/* Header */
.site-header {
  background: #ffffff;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f5f5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 72px;
}

body.menu-open {
  overflow: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.site-branding {
  flex-shrink: 0;
  order: 1;
}

.site-logo {
  height: 40px;
  width: auto;
  display: block;
}

/* Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 2;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin: 0;
}

.main-navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  transition: color 0.3s ease;
  display: inline-block;
}

.main-navigation a:hover {
  color: var(--primary-color);
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
  order: 3;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffd700 !important;
  color: #1f2937 !important;
  text-decoration: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.btn-phone svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  flex-shrink: 0;
  order: 4;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 8px;
}

.hamburger-line:nth-child(1) {
  top: 12px;
}

.hamburger-line:nth-child(2) {
  top: 19px;
}

.hamburger-line:nth-child(3) {
  top: 26px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Responsive Header */
@media (max-width: 1024px) {
  .site-header .container {
    position: relative;
  }

  .header-content {
    gap: 0 !important;
    justify-content: center !important;
    width: 100%;
    position: relative;
    min-height: 40px;
  }

  .site-branding {
    flex: 0 0 auto;
    margin-right: 0 !important;
    position: absolute !important;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 102;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: 0 !important;
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-navigation {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    z-index: 99;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-navigation.active {
    display: block;
    transform: translateX(0);
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }

  .main-navigation li {
    border-bottom: 1px solid #e5e7eb;
  }

  .main-navigation a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
  }

  .header-cta {
    display: none;
  }

  /* Botão WhatsApp no menu mobile */
  .mobile-only {
    display: block !important;
    border-bottom: none !important;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
  }

  .mobile-phone-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px !important;
    background: #ffd700 !important;
    color: #1f2937 !important;
    text-decoration: none;
    border-radius: 8px;
    font-family: "Inter", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 20px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
    text-align: center;
    margin: 0 !important;
    width: 100%;
  }

  .mobile-phone-button svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
}

/* Esconde o botão mobile no desktop */
@media (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .site-logo {
    height: 32px;
  }

  .main-navigation {
    width: 280px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
  min-height: 728px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1240px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #dbeafe;
  padding: 12px 20px;
  border-radius: 20px;
  width: fit-content;
}

.badge-dot {
  width: 12px;
  height: 12px;
  background: #1e40af;
  border-radius: 50%;
  flex-shrink: 0;
}

.badge-text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #1e40af;
}

/* Título */
.hero-title {
  font-family: "Inter", sans-serif;
  margin: 0;
}

.hero-title-line1,
.hero-title-line2 {
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.02em;
  color: #1f2937;
}

.hero-title-line1 {
  line-height: 64px;
}

.hero-title-line2 {
  line-height: 100%;
}

.hero-title-highlight {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
  font-weight: 800 !important;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: #043ca0;
  font-synthesis: weight;
}

/* Descrição */
.hero-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
  max-width: 520px;
}

/* Botão CTA */
.hero-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffd700;
  padding: 18px 24px;
  border-radius: 24px;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s ease;
}

.hero-cta-button span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #043ca0;
}

.hero-cta-button svg {
  flex-shrink: 0;
}

/* Features */
.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-feature-item span {
  font-family: "Inter", "Liberation Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}

.hero-feature-item svg {
  flex-shrink: 0;
}

/* Imagem */
.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.hero-blur-yellow {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 350px;
  height: 350px;
  z-index: 0;
  pointer-events: none;
}

.hero-blur-blue {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 350px;
  height: 350px;
  z-index: 0;
  pointer-events: none;
}

.hero-main-image {
  width: 100%;
  height: auto;
  max-width: 580px;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-secondary-image {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 400px;
  height: auto;
  z-index: 3;
}

/* Content */
.site-content {
  padding: 0;
  min-height: auto;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

article {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.entry-title a {
  text-decoration: none;
  color: inherit;
}

.entry-meta {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.entry-content {
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: #f9fafb;
  padding: 30px 120px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
}

.footer-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #5b5b5b;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
  }

  .footer-text {
    font-size: 11px;
    line-height: 14px;
  }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Animação de pulso */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* Responsive WhatsApp Float */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--secondary-color);
}

/* Responsive Hero */
@media (max-width: 1200px) {
  .hero-container {
    padding: 100px 40px;
  }

  .hero-content-wrapper {
    gap: 60px;
  }

  .hero-image img {
    max-width: 500px;
  }

  .hero-secondary-image {
    max-width: 320px;
    bottom: -35px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 80px 40px;
  }

  .hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    display: contents;
  }

  .hero-badge {
    order: 1;
    grid-row: 1;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-image {
    order: 2;
    grid-row: 2;
    width: 100%;
    margin: 0;
  }

  .hero-title {
    order: 3;
    grid-row: 3;
    text-align: center;
  }

  .hero-description {
    order: 4;
    grid-row: 4;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-cta-button {
    order: 5;
    grid-row: 5;
    margin: 0 auto;
  }

  .hero-features {
    order: 6;
    grid-row: 6;
    justify-content: center;
  }

  .hero-title-line1,
  .hero-title-line2,
  .hero-title-highlight {
    font-size: 44px;
  }

  .hero-title-line1 {
    line-height: 56px;
  }

  .hero-title-highlight {
    line-height: 56px;
  }

  .hero-main-image {
    max-width: 550px;
  }

  .hero-secondary-image {
    max-width: 350px;
    bottom: -30px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 60px 20px;
  }

  .hero-title-line1,
  .hero-title-line2,
  .hero-title-highlight {
    font-size: 36px;
  }

  .hero-title-line1 {
    line-height: 44px;
  }

  .hero-title-line2 {
    line-height: 44px;
    white-space: nowrap;
  }

  .hero-title-highlight {
    line-height: 44px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta-button span {
    font-size: 16px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-main-image {
    max-width: 100%;
  }

  .hero-secondary-image {
    max-width: 280px;
    bottom: -20px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.hero-blur-yellow,
.hero-blur-blue {
  width: 250px;
  height: 250px;
}

.hero-blur-yellow {
  right: -50px;
  top: -30px;
}

.hero-blur-blue {
  left: -50px;
  bottom: -30px;
}

/* Seção 2: Por que Frotashop */
.why-section {
  background: #ffffff;
  padding: 80px 40px;
}

.why-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Cabeçalho */
.why-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.why-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #043ca0;
  margin: 0;
}

.why-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
  max-width: 532px;
}

.why-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
  max-width: 586px;
}

/* Cards Primários */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border: 1px solid #d3d8e2;
  border-radius: 8px;
  background: #ffffff;
  position: relative;
}

.why-card-badge {
  position: absolute;
  top: 0;
  right: 32px;
  background: #ffd700;
  color: #043ca0;
  font-family: "Liberation Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  padding: 4px 12px;
  border-radius: 0 0 0 4px;
  text-transform: uppercase;
  z-index: 1;
}

.why-card svg {
  flex-shrink: 0;
}

.why-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #111827;
  margin: 0;
}

.why-card-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
}

/* Card Horizontal Grande */
.why-feature-card {
  display: flex;
  gap: 64px;
  padding: 48px;
  background: #f9fafb;
  border: 1px solid #d3d8e2;
  border-radius: 16px;
  align-items: center;
}

.why-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #111827;
  margin: 0;
}

.why-feature-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
}

.why-feature-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #111827;
}

.why-feature-item svg {
  flex-shrink: 0;
}

.why-feature-item-wrong {
  color: #6b7280;
  text-decoration: line-through;
}

.why-feature-image {
  flex-shrink: 0;
}

.why-feature-image img {
  width: 416px;
  height: 240px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

/* Responsive Why Section */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-feature-card {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }

  .why-feature-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 60px 20px;
  }

  .why-title {
    font-size: 24px;
  }

  .why-card {
    padding: 24px;
  }

  .why-feature-card {
    padding: 24px;
  }
}

/* Seção 3: Tinta para Frotas */
.products-section {
  background: #043ca0;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.products-blur {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.products-blur-left {
  top: 0;
  left: 0;
}

.products-blur-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.products-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Cabeçalho */
.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.products-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.products-title span {
  font-weight: 500;
}

.products-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #dbeafe;
  margin: 0;
  max-width: 672px;
}

/* Cards */
.products-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0px 8px 10px -6px rgba(0, 0, 0, 0.1),
    0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  justify-self: center;
}

.product-card-image {
  width: 100%;
  height: 283px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.product-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #043ca0;
  margin: 0;
}

.product-card-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4b5563;
  margin: 0;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
}

.product-card-feature svg {
  flex-shrink: 0;
}

.product-card-button {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #043ca0;
  border: 1px solid #043ca0;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.product-card-button:hover {
  background: #043ca0;
  color: #ffffff;
}

/* Responsive Products Section */
@media (max-width: 1024px) {
  .products-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 20px;
  }

  .products-title {
    font-size: 24px;
  }

  .products-subtitle {
    font-size: 18px;
  }

  .product-card-content {
    padding: 24px;
  }

  .products-blur {
    opacity: 0.3;
  }
}

/* Seção 4: Sistema Tintométrico */
.tintometric-section {
  background: #f5f6f8;
  padding: 0;
  overflow: hidden;
}

.tintometric-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.tintometric-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tintometric-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tintometric-content {
  padding: 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  max-width: 650px;
}

.tintometric-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #043ca0;
  margin: 0;
}

.tintometric-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
}

.tintometric-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
}

.tintometric-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #043ca0;
  text-decoration: none;
  transition: gap 0.3s ease;
  width: fit-content;
}

.tintometric-link:hover {
  gap: 12px;
}

.tintometric-link svg {
  flex-shrink: 0;
}

/* Responsive Tintometric Section */
@media (max-width: 1024px) {
  .tintometric-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tintometric-image {
    width: 100%;
    height: 400px;
  }

  .tintometric-image img {
    min-height: 400px;
  }

  .tintometric-content {
    padding: 60px 40px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .tintometric-container {
    min-height: auto;
  }

  .tintometric-image {
    height: 300px;
  }

  .tintometric-image img {
    min-height: 300px;
  }

  .tintometric-content {
    padding: 40px 20px;
  }

  .tintometric-title {
    font-size: 24px;
  }
}

/* Seção 5: Linha Completa */
.complete-line-section {
  background: #ffffff;
  padding: 120px 40px;
}

.complete-line-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Cabeçalho */
.complete-line-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.complete-line-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
}

.complete-line-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4b5563;
  margin: 0;
}

/* Grid de Produtos */
.complete-line-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: end;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.product-item-image {
  width: 100%;
  height: 286px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-item-label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #111827;
  margin: 0;
}

/* Responsive Complete Line */
@media (max-width: 1024px) {
  .complete-line-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .complete-line-section {
    padding: 80px 20px;
  }

  .complete-line-products {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .complete-line-title {
    font-size: 24px;
  }

  .product-item-image {
    height: 240px;
  }
}

/* Seção 6: Nossa Estrutura */
.structure-section {
  background: #043ca0;
  padding: 80px 40px;
}

.structure-container {
  max-width: 1040px;
  margin: 0 auto;
}

.structure-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow:
    0px 8px 10px -6px rgba(0, 0, 0, 0.1),
    0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 534px;
}

.structure-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.structure-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #111827;
  margin: 0;
}

.structure-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4b5563;
  margin: 0;
}

.structure-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.structure-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.structure-list-number {
  width: 32px;
  height: 32px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.structure-list-number span {
  font-family: "Liberation Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #043ca0;
}

.structure-list-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4b5563;
}

.structure-button {
  display: inline-block;
  padding: 12px 32px;
  background: #043ca0;
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  width: fit-content;
}

.structure-button:hover {
  background: #032d7a;
}

.structure-image {
  width: 100%;
  height: 100%;
  min-height: 534px;
  overflow: hidden;
}

.structure-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Structure Section */
@media (max-width: 1024px) {
  .structure-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .structure-content {
    padding: 48px;
    order: 2;
  }

  .structure-image {
    min-height: 400px;
    order: 1;
  }
}

@media (max-width: 768px) {
  .structure-section {
    padding: 60px 20px;
  }

  .structure-content {
    padding: 32px;
  }

  .structure-title {
    font-size: 24px;
  }

  .structure-image {
    min-height: 300px;
  }
}

/* Seção 7: Marcas Parceiras */
.brands-section {
  background: #f9fafb;
  padding: 120px 40px;
}

.brands-container {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.brands-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(180deg, #b0b5bf 0%, #525459 198.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  max-width: 692px;
}

.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.brand-logo img {
  max-width: 220px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo img:hover {
  transform: scale(1.05);
}

/* Responsive Brands Section */
@media (max-width: 768px) {
  .brands-section {
    padding: 80px 20px;
  }

  .brands-title {
    font-size: 24px;
  }

  .brands-logos {
    gap: 32px;
  }

  .brand-logo {
    height: 60px;
  }

  .brand-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}

/* Seção 8: CTA Final */
.cta-section {
  background: #020f26;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  min-height: 473px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-ellipse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1236px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.cta-container {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  max-width: 602px;
}

.cta-subtitle {
  font-family: "Liberation Sans", "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #dbeafe;
  margin: 0 0 32px 0;
  max-width: 800px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button-primary {
  background: #ffd700;
  color: #043ca0;
  border: 1px solid #000000;
  box-shadow:
    0px 4px 6px -4px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button-primary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
    min-height: auto;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .cta-ellipse {
    width: 800px;
  }
}
