:root {
  --primary: #0066CC;
  --primary-dark: #004999;
  --secondary: #00C9A7;
  --dark: #1a1a2e;
  --text-light: #666; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333; }

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0; }

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary) !important;
  letter-spacing: -0.5px; }

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 1rem;
  transition: color 0.3s; }

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

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s; }

.btn-nav-restricted {
  background: white;
  color: var(--primary) !important;
  border: 1px solid var(--primary); }

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3); }

.btn-nav-restricted:hover {
  background: var(--primary);
  color: white !important; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(66, 154, 237, 0.755) 0%, rgba(57, 145, 233, 0.75) 80%), url("../images/imgtopo.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  overflow: hidden; }

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3; }

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease; }

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto; }

.btn-hero {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  margin: 0.5rem; }

.btn-hero-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary); }

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

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

/* Institutional Section */
.institutional-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 80%); }

.institutional-section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem; }

.institutional-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem; }

.highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #e6ecf5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); }

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0066cc, #00c9a7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0; }

.highlight strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.15rem; }

.highlight p {
  margin: 0;
  color: var(--text-light); }

.institutional-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6ecf5; }

.institutional-card .badge-soft {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem; }

.institutional-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark); }

.institutional-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0; }

.institutional-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-light); }

.institutional-card li i {
  color: var(--primary); }

.institutional-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; }

.metric-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary); }

.metric-label {
  color: var(--text-light);
  font-size: 0.95rem; }

/* Trust Stats */
.trust-section {
  padding: 5rem 0;
  background: white; }

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: #f8f9fa;
  transition: transform 0.3s;
  height: 100%; }

.stat-card:hover {
  transform: translateY(-10px); }

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem; }

.stat-label {
  color: var(--text-light);
  font-size: 1.1rem; }

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: #f8f9fa; }

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark); }

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 4rem; }

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s;
  border: 2px solid transparent;
  height: 100%;
  margin-bottom: 2rem; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary); }

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem; }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 700; }

/* Clients Section */
.clients-section {
  padding: 6rem 0;
  background: white; }

.client-logo {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  transition: all 0.3s;
  margin-bottom: 2rem; }

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

.client-logo img {
  max-width: 100%;
  max-height: 120px;
  opacity: 0.7;
  transition: opacity 0.3s; }

.client-logo:hover img {
  opacity: 1; }

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; }

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  color: #333;
  height: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem; }

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: 700; }

.author-info h5 {
  margin: 0;
  font-weight: 700;
  color: var(--dark); }

.author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem; }

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem; }

/* Lead Form Section */
.lead-form-section {
  padding: 6rem 0;
  background: #f8f9fa; }

.form-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); }

.form-control, .form-select {
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s; }

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1); }

.btn-submit {
  width: 100%;
  background: var(--secondary);
  color: white;
  padding: 1.2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s; }

.btn-submit:hover {
  background: #00b393;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 201, 167, 0.3); }

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center; }

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem; }

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 1.5rem; }

footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 700; }

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s; }

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

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

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease; }

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  color: white; }

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px; }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    right: 16px;
    bottom: 16px; }

  .hero-content h1 {
    font-size: 2.5rem; }

  .hero-content p {
    font-size: 1.1rem; }

  .section-title {
    font-size: 2rem; }

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

/*# sourceMappingURL=main.css.map */
