@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-orange: #ff5a00;
  --primary-orange-hover: #e04f00;
  --primary-blue: #0037a8;
  --primary-blue-hover: #002d8a;
  --dark-blue: #002366;
  --darkest-blue: #001233;
  --accent-blue: #0046d5;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --card-border-orange: rgba(255, 90, 0, 0.3);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 8px 20px rgba(255, 90, 0, 0.2);
  --shadow-blue: 0 8px 20px rgba(0, 35, 102, 0.25);
  
  /* Layout */
  --container-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-lg: 24px;
}

/* --- Resets & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .btn {
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-align: center;
}

/* --- Buttons System --- */
.btn-primary {
  background: var(--primary-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 90, 0, 0.35);
}

.btn-secondary {
  background: var(--dark-blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-secondary:hover {
  background: var(--darkest-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 35, 102, 0.4);
}

/* --- Header & Top Bar --- */
header {
  width: 100%;
  position: relative;
  z-index: 100;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background: var(--primary-orange);
  border-bottom: none;
  padding: 8px 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-info span strong {
  color: #ffffff;
}

.top-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-social a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.top-social a:hover {
  color: #ffffff;
}

.main-header {
  padding: 12px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 52px;
}

.nav-menu {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-item {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--dark-blue);
}

.nav-link:hover {
  color: var(--primary-orange);
}

.nav-item.blue-btn {
  background-color: var(--dark-blue);
  color: #ffffff;
}

.nav-item.blue-btn:hover {
  background-color: var(--accent-blue);
  transform: translateY(-1px);
}

.nav-item.orange-btn {
  background-color: var(--primary-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.nav-item.orange-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-1px);
}

.nav-item.green-btn {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.nav-item.green-btn:hover {
  background-color: #128c7e;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--dark-blue);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero Banner --- */
.hero {
  position: relative;
  background: linear-gradient(110deg, var(--dark-blue) 53%, var(--primary-orange) 53%);
  color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.hero-left {
  animation: fadeInLeft 0.8s var(--transition-normal);
}

.hero-tag {
  color: var(--primary-orange);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero h1 {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: none;
  color: #ffffff;
}

.hero-left p {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-img-wrapper {
  position: relative;
  bottom: -60px;
  z-index: 5;
}

.hero-img {
  max-height: 500px;
  object-fit: contain;
}

.hero-right {
  padding-left: 20px;
  text-align: left;
  animation: fadeInRight 0.8s var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-right h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-right .btn {
  padding: 14px 35px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  background-color: var(--dark-blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.hero-right .btn:hover {
  background-color: var(--darkest-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 35, 102, 0.4);
}

/* --- Section: Intro Title --- */
.section-intro-text {
  text-align: center;
  padding: 50px 0 15px 0;
  font-size: 1.2rem;
  color: var(--dark-blue);
  font-weight: 700;
}

.section-intro-text strong {
  color: var(--primary-orange);
  font-weight: 800;
}

/* --- Section: Key Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px 0 60px 0;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--primary-orange);
  border-radius: var(--border-radius-lg);
  padding: 25px 15px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 230px;
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-orange);
}

.benefit-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.35;
}

.benefit-value {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-title);
}

/* --- Section: Who We Are (Quem Somos) --- */
.quem-somos {
  background: var(--dark-blue);
  color: #ffffff;
  padding: 80px 0;
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.quem-somos-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.quem-somos-content p {
  opacity: 0.9;
  font-size: 0.88rem;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: justify;
}

.quem-somos-content .btn {
  padding: 12px 30px;
  font-size: 0.88rem;
  border-radius: 6px;
}

.quem-somos-images {
  position: relative;
  padding-bottom: 40px;
}

.hq-img-large {
  border-radius: var(--border-radius-lg);
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.hq-img-large img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hq-img-small {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  border-radius: var(--border-radius-lg);
  border: 6px solid #ffffff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 10;
}

.hq-img-small img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* --- Section: Mission, Vision, Values --- */
.mvv-container {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mvv-card {
  text-align: center;
  position: relative;
}

.mvv-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.mvv-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--primary-orange);
  margin: 8px auto 0 auto;
}

.mvv-card p {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* --- Section: National Coverage Banner --- */
.nacional-cobertura {
  padding: 60px 0;
  background-color: #ffffff;
}

.nacional-banner {
  background: var(--dark-blue);
  border-radius: var(--border-radius-lg);
  color: #ffffff;
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
}

.nacional-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.nacional-content h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.nacional-content .btn {
  padding: 12px 30px;
  font-size: 0.88rem;
  border-radius: 6px;
  margin-top: 10px;
}

.nacional-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brasil-map-svg {
  width: 100%;
  max-width: 320px;
  opacity: 1;
}

.car-overlay-img {
  position: absolute;
  max-width: 230px;
  right: 10px;
  bottom: -20px;
  filter: grayscale(100%) brightness(40%) contrast(140%);
  animation: hoverFloat 4s ease-in-out infinite;
}

/* --- Section: Complete Coverage (Cobertura Completa) --- */
.cobertura-completa {
  background-color: var(--light-bg);
  padding: 70px 0;
  text-align: center;
}

.cobertura-completa h2 {
  font-size: 2rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.cobertura-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cobertura-card {
  background: #ffffff;
  border: 1px solid var(--primary-orange);
  border-radius: var(--border-radius);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  min-height: 160px;
}

.cobertura-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.cobertura-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cobertura-icon-wrapper svg {
  width: 25px;
  height: 25px;
  fill: var(--primary-orange);
}

.cobertura-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

.cobertura-completa .btn {
  padding: 14px 35px;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 6px;
}

/* --- Section: 24h Assistance (Assistencia 24h) --- */
.assistência-24h {
  padding: 80px 0;
  background-color: #ffffff;
}

.assistance-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.assistance-left h2 {
  font-size: 2.5rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.assistance-left h2 span {
  display: block;
  font-size: 3.5rem;
  color: var(--accent-blue);
  font-weight: 900;
}

.assistance-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.assistance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistance-item {
  display: flex;
  align-items: center;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.assistance-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-orange);
}

.assistance-item-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
}

.assistance-item-icon i {
  font-size: 1.1rem;
}

.assistance-right {
  display: flex;
  justify-content: center;
}

.tow-truck-img {
  max-width: 100%;
}

/* --- Section: App Showcase (Tudo na palma da sua mão) --- */
.app-showcase {
  background: var(--dark-blue);
  color: #ffffff;
  padding: 80px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.app-mockup-container {
  display: flex;
  justify-content: center;
}

.app-img {
  max-height: 440px;
}

.app-content h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.app-content p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.app-store-buttons {
  display: flex;
  gap: 15px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  text-align: left;
  transition: var(--transition-fast);
}

.store-btn:hover {
  background: #222222;
  border-color: #ffffff;
}

.store-btn i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.store-btn-text {
  font-size: 0.6rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.store-btn-title {
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Footer --- */
footer {
  background-color: var(--darkest-blue);
  color: #ffffff;
  padding: 50px 0 25px 0;
  font-size: 0.8rem;
  border-top: 4px solid var(--primary-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}

.footer-col h3 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-orange);
}

.footer-about p {
  opacity: 0.7;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-orange);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  opacity: 0.75;
}

.footer-contact li i {
  color: var(--primary-orange);
  margin-right: 10px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
}

.footer-bottom p {
  font-size: 0.72rem;
}

/* --- Lead Modal / Popup --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 18, 51, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 460px;
  padding: 30px;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.form-control:focus {
  border-color: var(--accent-blue);
  outline: none;
}

.modal-container .btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  text-transform: uppercase;
  border-radius: 4px;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 15px 0;
}

.form-success-message.active {
  display: block;
}

.success-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.success-icon-wrapper svg {
  width: 35px;
  height: 35px;
  fill: #10b981;
}

.form-success-message h4 {
  font-size: 1.4rem;
  color: #10b981;
  margin-bottom: 5px;
}

.form-success-message p {
  font-size: 0.85rem;
}

/* --- Animations --- */
@keyframes hoverFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
  .hero .container {
    grid-template-columns: 1.2fr 1fr;
  }
  .hero-right {
    display: none;
  }
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quem-somos-grid {
    grid-template-columns: 1fr;
  }
  
  .hq-img-small {
    display: none;
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nacional-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .nacional-media {
    margin-top: 15px;
  }
  
  .cobertura-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .assistance-grid {
    grid-template-columns: 1fr;
  }
  
  .app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .app-store-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 15px;
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark-blue) 48%, var(--primary-orange) 48%);
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-img-wrapper {
    bottom: 0;
  }
  
  .hero-img {
    max-height: 300px;
  }

  .hero-right {
    text-align: center;
    align-items: center;
    padding-left: 0;
  }
  
  .cobertura-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cobertura-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  width: auto;
  padding: 0 20px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float i {
  font-size: 30px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 2px 5px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {

  /* === TOPO (Top Bar) === */
  .top-bar {
    display: none; /* Esconde a barra superior no celular para ganhar espaço */
  }

  /* === HEADER / MENU === */
  header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .main-header .container {
    padding: 10px 16px;
  }

  .logo img {
    height: 45px !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--darkest-blue);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 25px 30px;
    gap: 12px;
    transition: left 0.35s ease;
    box-shadow: 5px 0 20px rgba(0,0,0,0.3);
    z-index: 998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
  }

  /* === BOTÃO FLUTUANTE WHATSAPP === */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    bottom: 20px;
    right: 20px;
    font-size: 0;
    border-radius: 50%;
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  /* === BANNERS (Edge-to-Edge) === */
  .banner-hero .container,
  .coberturas .container,
  .assistência-24h .container,
  .app-showcase .container {
    padding: 0 !important;
    max-width: 100%;
  }

  .banner-hero img,
  .coberturas img,
  .assistência-24h img,
  .app-showcase img {
    border-radius: 0 !important;
    margin: 8px 0 !important;
    width: 100% !important;
  }

  /* === SEÇÃO BENEFÍCIOS === */
  .benefits {
    padding: 35px 0 !important;
  }

  .benefits-title {
    font-size: 1.3rem;
  }

  .benefits-grid-image-style {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .benefit-col {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    width: 100%;
  }

  .benefit-col.no-border {
    border-bottom: none;
    padding-bottom: 0;
  }

  .benefits-footer-pill {
    flex-direction: column;
    border-radius: 15px;
    text-align: center;
    gap: 8px;
    padding: 15px;
  }

  /* === SEÇÃO QUEM SOMOS === */
  .quem-somos-grid {
    grid-template-columns: 1fr;
  }

  .quem-somos-images {
    display: none; /* Esconde as fotos no mobile para agilizar carregamento */
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* === SEÇÃO FAQ === */
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 15px 20px;
  }

  /* === SEÇÃO DEPOIMENTOS === */
  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .depoimento-card {
    padding: 20px;
  }

  /* === RODAPÉ === */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    flex-direction: column;
    gap: 5px;
  }

  /* === GERAL === */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  section {
    padding: 40px 0;
  }
}


/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.4s; }

.mvv-grid .mvv-card:nth-child(1) { transition-delay: 0.1s; }
.mvv-grid .mvv-card:nth-child(2) { transition-delay: 0.3s; }
.mvv-grid .mvv-card:nth-child(3) { transition-delay: 0.5s; }

/* --- Depoimentos --- */
.depoimentos {
  padding: 20px 0 60px 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.depoimento-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-orange);
  transition: var(--transition-normal);
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.depoimento-texto {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cliente-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cliente-avatar {
  width: 50px;
  height: 50px;
  background: var(--dark-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: var(--font-title);
  font-weight: 700;
}

.cliente-info h4 {
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 2px;
}

.cliente-info span {
  font-size: 0.75rem;
  color: var(--primary-orange);
  font-weight: 600;
}

/* Depoimentos Animation Delays */
.depoimentos-grid .depoimento-card:nth-child(1) { transition-delay: 0.1s; }
.depoimentos-grid .depoimento-card:nth-child(2) { transition-delay: 0.2s; }
.depoimentos-grid .depoimento-card:nth-child(3) { transition-delay: 0.3s; }
.depoimentos-grid .depoimento-card:nth-child(4) { transition-delay: 0.4s; }
.depoimentos-grid .depoimento-card:nth-child(5) { transition-delay: 0.5s; }
.depoimentos-grid .depoimento-card:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 992px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FAQ Section --- */
.faq-section {
  padding: 20px 0 70px 0;
  background: var(--light-bg);
}

.faq-list {
  max-width: 860px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-left-color: var(--primary-orange);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: left;
  border-radius: 0;
  gap: 15px;
}

.faq-question:hover {
  color: var(--primary-orange);
  background: rgba(255, 90, 0, 0.03);
  transform: none;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary-orange);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* --- Banner Style Benefits (Image Replica) --- */
.banner-style-benefits {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.benefits-title {
  color: var(--dark-blue);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
}

.benefits-title .highlight-orange {
  color: var(--primary-orange);
}

.header-divider {
  width: 70px;
  height: 3px;
  background-color: var(--primary-orange);
  margin: 20px auto 0 auto;
}

.benefits-grid-image-style {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.benefit-col {
  flex: 1;
  text-align: center;
  padding: 0 15px;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-col.no-border {
  border-right: none;
}

.b-icon {
  margin-bottom: 20px;
}

.premium-icon i,
.premium-icon svg {
  font-size: 2.8rem;
  color: var(--primary-orange);
  background: rgba(255, 102, 0, 0.08);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 102, 0, 0.2);
  transition: all 0.3s ease;
}

.premium-icon svg {
  padding: 18px; /* Controla o tamanho do SVG dentro do círculo de 80px */
}

.benefit-col:hover .premium-icon i,
.benefit-col:hover .premium-icon svg {
  background: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

.b-text {
  color: var(--dark-blue);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.b-divider {
  width: 40px;
  height: 2px;
  background-color: var(--primary-orange);
  margin: 0 auto 15px auto;
}

.b-value {
  color: var(--primary-orange);
  font-size: 1.5rem;
  font-weight: 800;
}

.benefits-footer-pill {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #d0d0d0;
  border-radius: 30px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #fff;
}

.benefits-footer-pill i {
  color: var(--dark-blue);
  font-size: 1.4rem;
}

.benefits-footer-pill span {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .benefits-grid-image-style {
    flex-wrap: wrap;
    gap: 40px;
  }
  .benefit-col {
    flex: 1 1 40%;
    border-right: none;
  }
}

@media (max-width: 768px) {
  .benefits-title {
    font-size: 1.5rem;
  }
  .benefit-col {
    flex: 1 1 100%;
  }
  .benefits-footer-pill {
    flex-direction: column;
    text-align: center;
    border-radius: 15px;
    gap: 10px;
  }
}
