* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #13315C;
  color: #ffffff;
  padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(11, 37, 69, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.header .container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header img {
  height: 50px;
  transition: transform 0.3s ease;
}

.header img:hover {
  transform: scale(1.05);
}

.menu {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.menu a:hover {
  color: #F59E0B;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F59E0B;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.area-cliente-link {
  background: rgba(245, 158, 11, 0.15);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(47, 107, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.area-cliente-link:hover {
  background: rgba(47, 107, 255, 0.25);
  border-color: #F59E0B;
  transform: translateY(-2px);
}

.area-cliente-link::after {
  display: none;
}

.area-cliente-link i {
  font-size: 14px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.phone-link:hover {
  color: #F59E0B;
}

.phone-link i {
  font-size: 14px;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 16px;
}

.hero {
  padding: 140px 20px 120px;
  background: #0F2A4A;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(47, 107, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(47, 107, 255, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(47, 107, 255, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(47, 107, 255, 0.3), transparent),
    radial-gradient(2px 2px at 90% 60%, rgba(47, 107, 255, 0.3), transparent),
    radial-gradient(1px 1px at 33% 80%, rgba(47, 107, 255, 0.3), transparent);
  background-size: 200% 200%;
  animation: particlesFloat 15s ease-in-out infinite;
}

@keyframes particlesFloat {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.3);
  border-radius: 30px;
  color: #F59E0B;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero h1 .highlight {
  color: #F59E0B;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, transparent);
  animation: highlightSlide 2s ease-in-out infinite;
}

@keyframes highlightSlide {
  0%, 100% { width: 0%; }
  50% { width: 100%; }
}

.hero p {
  font-size: 18px;
  color: #b8c5d6;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c5d6;
  font-size: 14px;
}

.feature-item i {
  color: #F59E0B;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.4s backwards;
}

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

.shield-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatShield 6s ease-in-out infinite;
}

@keyframes floatShield {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.shield-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

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

.shield-icon {
  width: 300px;
  height: 300px;
  fill: none;
  stroke: #F59E0B;
  stroke-width: 0.5;
  filter: drop-shadow(0 0 20px rgba(47, 107, 255, 0.5));
}

.shield-icon path:first-child {
  fill: rgba(245, 158, 11, 0.1);
  stroke: #F59E0B;
  stroke-width: 0.5;
  animation: shieldPulse 2s ease-in-out infinite;
}

.shield-icon path:last-child {
  stroke: #F59E0B;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: checkDraw 2s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { fill-opacity: 0.1; }
  50% { fill-opacity: 0.3; }
}

@keyframes checkDraw {
  0% { stroke-dashoffset: 20; }
  50%, 100% { stroke-dashoffset: 0; }
}

.shield-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: #F59E0B;
  text-shadow: 0 0 30px rgba(47, 107, 255, 0.8);
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { text-shadow: 0 0 30px rgba(47, 107, 255, 0.8); }
  50% { text-shadow: 0 0 50px rgba(47, 107, 255, 1); }
}

.tech-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #F59E0B, transparent);
  height: 1px;
  width: 200px;
}

.line-1 {
  top: 20%;
  left: -100px;
  animation: lineMove1 4s ease-in-out infinite;
}

.line-2 {
  top: 50%;
  right: -100px;
  animation: lineMove2 5s ease-in-out infinite;
}

.line-3 {
  top: 80%;
  left: -100px;
  animation: lineMove3 6s ease-in-out infinite;
}

@keyframes lineMove1 {
  0%, 100% { transform: translateX(0); opacity: 0; }
  50% { transform: translateX(300px); opacity: 1; }
}

@keyframes lineMove2 {
  0%, 100% { transform: translateX(0); opacity: 0; }
  50% { transform: translateX(-300px); opacity: 1; }
}

@keyframes lineMove3 {
  0%, 100% { transform: translateX(0); opacity: 0; }
  50% { transform: translateX(400px); opacity: 1; }
}

.btn-primary {
  background: #F59E0B;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.btn-primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #13315C;
  transform: translateY(-2px);
}

.servicos {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
  color: #13315C;
}

.servicos h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  color: #13315C;
}

.servicos-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.servico-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15);
}

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

.servico-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.servico-icon i {
  font-size: 32px;
  color: #ffffff;
}

.servico-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #13315C;
  font-weight: 700;
}

.servico-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 25px;
}

.servico-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #495057;
  font-size: 14px;
}

.servico-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: bold;
  font-size: 16px;
}

.servico-card-destaque {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #ffffff;
  border: none;
}

.servico-card-destaque::before {
  background: #ffffff;
}

.servico-card-destaque h3 {
  color: #ffffff;
}

.servico-card-destaque > p {
  color: rgba(255, 255, 255, 0.9);
}

.servico-card-destaque .servico-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.servico-card-destaque .servico-features li {
  color: rgba(255, 255, 255, 0.95);
}

.servico-card-destaque .servico-features li::before {
  color: #ffffff;
}

.servicos-cta {
  text-align: center;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.servicos-cta h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #13315C;
  font-weight: 700;
}

.servicos-cta p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
}

.sobre {
  padding: 100px 20px;
  background: #13315C;
  color: #ffffff;
}

.sobre-header {
  text-align: center;
  margin-bottom: 60px;
}

.sobre-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.sobre-subtitle {
  font-size: 18px;
  color: #cfd8e3;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.sobre-text h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #F59E0B;
  font-weight: 700;
}

.sobre-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfd8e3;
  margin-bottom: 20px;
}

.sobre-text strong {
  color: #ffffff;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.stat-item {
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(47, 107, 255, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: #F59E0B;
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 32px;
  color: #F59E0B;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: #cfd8e3;
  font-weight: 500;
}

.valores {
  margin-bottom: 80px;
}

.valores h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  color: #F59E0B;
  font-weight: 700;
}

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

.valor-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.valor-item:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-5px);
  border-color: rgba(47, 107, 255, 0.5);
}

.valor-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.valor-icon i {
  font-size: 30px;
  color: #ffffff;
}

.valor-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 700;
}

.valor-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd8e3;
  margin: 0;
}

.diferenciais h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  color: #F59E0B;
  font-weight: 700;
}

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

.diferencial-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diferencial-item:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateX(5px);
  border-color: rgba(47, 107, 255, 0.5);
}

.diferencial-item > i {
  font-size: 28px;
  color: #F59E0B;
  flex-shrink: 0;
}

.diferencial-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
}

.diferencial-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfd8e3;
  margin: 0;
}

.footer {
  background: #0B2545;
  color: #b8c5d6;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(47, 107, 255, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 320px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #8b96a8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #F59E0B;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8b96a8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #F59E0B;
  transform: translateX(5px);
}

.footer-contact ul li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact i {
  color: #F59E0B;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #8b96a8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.footer-contact a:hover {
  color: #F59E0B;
}

.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-contact span {
  font-size: 14px;
  color: #8b96a8;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #6c7a8e;
  margin: 8px 0;
}

.footer-tagline {
  color: #F59E0B;
  font-weight: 500;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: #13315C;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(47, 107, 255, 0.3);
  animation: modalSlideIn 0.4s ease-out;
  z-index: 10001;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.modal-close:hover {
  background: #F59E0B;
  border-color: #F59E0B;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  padding: 50px 40px 30px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4); }
  50% { box-shadow: 0 8px 30px rgba(47, 107, 255, 0.6); }
}

.modal-icon i {
  font-size: 36px;
  color: #fff;
}

.modal-header h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.modal-header p {
  font-size: 16px;
  color: #b8c5d6;
}

.modal-body {
  padding: 40px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(47, 107, 255, 0.2);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.contact-info-card.clickable {
  cursor: pointer;
}

.contact-info-card.clickable:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: #F59E0B;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(47, 107, 255, 0.4);
}

.contact-info-card:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #F59E0B;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.3);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(47, 107, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card-icon i {
  font-size: 28px;
  color: #F59E0B;
}

.contact-info-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-link {
  display: block;
  color: #b8c5d6;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #F59E0B;
}

.contact-detail {
  display: block;
  font-size: 13px;
  color: #8b96a8;
  margin-top: 10px;
}

.contact-cta {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(47, 107, 255, 0.3);
  border-radius: 16px;
  padding: 35px;
  text-align: center;
}

.contact-cta h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}

.horario-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.horario-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8c5d6;
  font-size: 15px;
}

.horario-item i {
  color: #F59E0B;
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }

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

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .shield-container {
    width: 280px;
    height: 280px;
  }

  .shield-icon {
    width: 200px;
    height: 200px;
  }

  .shield-badge {
    font-size: 60px;
  }
  
  .servicos h2 {
    font-size: 32px;
  }
  
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  
  .header .container {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .logo-link {
    order: 1;
  }

  .area-cliente-link {
    order: 2;
    font-size: 11px;
    padding: 5px 10px;
  }

  .area-cliente-link i {
    font-size: 12px;
  }

  .header-contact {
    order: 3;
    gap: 8px;
  }

  .menu {
    order: 4;
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
    margin: 0;
  }

  .phone-link {
    font-size: 12px;
  }

  .whatsapp-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  .header img {
    height: 40px;
  }

  .sobre-header h2 {
    font-size: 32px;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-stats {
    grid-template-columns: 1fr;
  }

  .valores h3,
  .diferenciais h3 {
    font-size: 28px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer {
    padding: 60px 20px 30px;
  }

  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header {
    padding: 40px 25px 25px;
  }

  .modal-header h2 {
    font-size: 26px;
  }

  .modal-body {
    padding: 25px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .horario-item {
    justify-content: center;
  }

  .contact-cta {
    padding: 25px;
  }
}