/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e3a5f;
  --secondary-color: #ffa500;
  --accent-color: #1e88e5;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --dark-blue: #0d1b2a;
  --gold: #d4af37;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* Header Styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(1px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -14px);
}

/* Hero Section */
.hero {
  margin-top: 82px;
  min-height: calc(100vh - 82px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.85) 0%,
    rgba(13, 27, 42, 0.9) 100%
  );
  z-index: 1;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
  text-align: left;
}

/* Hero Form Card */
.hero-form-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
}

.form-card h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.form-subtitle {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

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

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.6s both;
}

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

.btn {
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
  background: #ff8c00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-white {
  background: var(--white);
  color: var(--secondary-color);
  font-weight: 700;
  border: 2px solid var(--secondary-color);
}

.btn-white:hover {
  background: #fffbf0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 0 auto 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Sobre Section */
.sobre {
  padding: 50px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.sobre-content {
  display: grid;
  gap: 3rem;
}

.sobre-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.insurance-guarantee {
  background: linear-gradient(135deg, #e3f2fd 0%, #f1f8ff 100%);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.1);
}

.guarantee-icon {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.guarantee-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.guarantee-content p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(30, 136, 229, 0.15);
  border: 1px solid rgba(30, 136, 229, 0.2);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.25);
  border-color: var(--accent-color);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Nosso Foco Section */
.nosso-foco {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  position: relative;
  overflow: hidden;
}

.nosso-foco::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(30, 136, 229, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.nosso-foco .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.focus-categories {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.focus-category {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.focus-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.category-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0;
}

.focus-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.focus-item.enhanced {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  border-opacity: 0.2;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.1);
}

.focus-item.enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  transform: scaleY(1);
  transition: transform 0.3s;
}

.focus-item.enhanced:hover::before {
  transform: scaleY(1);
  box-shadow: 0 0 10px rgba(30, 136, 229, 0.3);
}

.focus-item.enhanced:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.item-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.1) 0%,
    rgba(30, 58, 95, 0.1) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.item-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.item-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.1) 0%,
    rgba(30, 58, 95, 0.1) 100%
  );
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

.badge.highlight {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c00 100%);
  color: var(--white);
}

/* Focus Stats */
.focus-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 3rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Focus CTA */
.focus-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c00 100%);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255, 165, 0, 0.2);
}

.cta-text {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.focus-cta .btn {
  font-size: 1.1rem;
  padding: 15px 35px;
  background: var(--white);
  color: var(--secondary-color);
}

.focus-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Serviços Section */
.servicos {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(30, 58, 95, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.services-grid.modern {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.services-grid.modern .service-card {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 320px;
  max-width: 380px;
}

.service-card.enhanced {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 136, 229, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: auto;
}

/* Bordas coloridas para cada tipo de serviço */
.service-card.popular-border {
  border-color: #ff6b35;
}

.service-card.offer-border {
  border-color: #4caf50;
}

.service-card.express-border {
  border-color: #2196f3;
}

.service-card.instant-border {
  border-color: #9c27b0;
}

.service-card.consultoria-border {
  border-color: #ff9800;
}

.service-card.enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card.enhanced:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(30, 136, 229, 0.2);
  border-color: rgba(30, 136, 229, 0.15);
}

.service-card.enhanced:hover::before {
  transform: scaleX(1);
}

.service-header {
  padding: 2rem 2rem 1rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.service-card.enhanced:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(30, 136, 229, 0.4);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  color: var(--white);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-badge.popular {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-badge.offer {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.service-badge.express {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.service-badge.instant {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.service-badge.consultoria {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.service-content {
  padding: 0 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.feature-item:hover {
  background: rgba(30, 136, 229, 0.05);
}

.feature-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.feature-item span:last-child {
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Services Guarantees */
.services-guarantees {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(30, 136, 229, 0.1);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.guarantee-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(30, 136, 229, 0.08);
  border: 1px solid rgba(30, 136, 229, 0.05);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.guarantee-item h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.guarantee-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Vantagens Section */
.vantagens {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.vantagens-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.vantagem-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.vantagem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vantagem-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c00 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vantagem-icon svg {
  width: 25px;
  height: 25px;
  color: var(--white);
}

.vantagem-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Mapa Brasil Section */
.mapa-brasil {
  padding: 50px 0;
  background: linear-gradient(to bottom, var(--white) 0%, #fafbfc 100%);
}

.mapa-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brasil-svg {
  display: flex;
  justify-content: center;
}

.brasil-map {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(30, 136, 229, 0.2));
}

.map-region {
  transition: all 0.3s ease;
  cursor: pointer;
}

.map-region:hover {
  opacity: 1 !important;
  filter: brightness(1.1);
  transform: scale(1.02);
  transform-origin: center;
}

.coverage-point {
  animation: pulse 2s ease-in-out infinite;
  cursor: pointer;
}

.coverage-point:hover {
  r: 6;
  filter: brightness(1.2);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.coverage-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(30, 136, 229, 0.05) 0%,
    rgba(30, 58, 95, 0.05) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(30, 136, 229, 0.1);
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.3rem;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coverage-info h3 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.region-tag {
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 50px 0;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta p {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Contato Section */
.contato {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contato-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 25px;
  height: 25px;
  color: var(--white);
}

.info-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contato-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.back-to-top.show {
  display: flex;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 998;
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.whatsapp-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 8px;
  opacity: 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      var(--primary-color) 0%,
      var(--dark-blue) 100%
    );
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    padding: 3rem 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

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

  .info-content {
    font-size: 0.7rem;
  }

  .nav-menu a {
    color: var(--white) !important;
    font-size: 1.2rem;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    transition: all 0.3s;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .nav-menu a:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transform: translateX(10px);
  }

  .hero {
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 90%;
    max-width: 300px;
    padding: 15px;
    font-size: 1rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mapa-container {
    grid-template-columns: 1fr;
  }

  .contato-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contato-form {
    padding: 1.5rem;
    margin: 0;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    box-sizing: border-box;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-content,
  .section-header,
  .about-content,
  .services-grid,
  .vantagens-list,
  .contato-content {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .hero-title {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Hero Section Mobile */
  .hero {
    margin-top: 70px; /* Espaçamento do header fixo */
    min-height: auto;
    padding: 40px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    text-align: center;
    order: 1; /* Texto primeiro */
  }

  .hero-form-card {
    order: 2; /* Formulário depois */
  }

  .form-card {
    padding: 25px;
    margin: 0 auto;
  }

  .form-card h3 {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .coverage-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .highlight-number {
    font-size: 1.5rem;
  }

  .vantagens-list {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid.modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .services-grid.modern .service-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .service-header {
    padding: 1.5rem 1.5rem 1rem;
    flex-direction: row;
    align-items: center;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-badge {
    position: static;
    margin-left: auto;
    margin-top: 0;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .service-content {
    padding: 0 1.5rem 1.5rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantee-item {
    padding: 1.25rem;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float:hover {
    width: 55px;
    padding-right: 0;
    border-radius: 50%;
  }

  .whatsapp-text {
    display: none;
  }

  .focus-categories {
    gap: 2rem;
  }

  .focus-items {
    grid-template-columns: 1fr;
  }

  .focus-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
  }

  .focus-cta .btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}
