/* Variables */
:root {
  --primary: #002d72; /* Azul oscuro basado en el logo */
  --primary-light: #1a4d9e;
  --primary-dark: #001f4d;
  --secondary: #6c757d;
  --accent: #ffc107; /* Color ámbar para acentos */
  --accent-light: #ffe082;
  --accent-dark: #ffa000;
  --success: #28a745;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 30px rgba(0, 45, 114, 0.1);
  --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  --border-radius: 10px;
  --border-radius-sm: 5px;
  --border-radius-lg: 20px;
}

/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-700);
  overflow-x: hidden;
  padding-top: 76px;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-800);
  font-weight: 600;
}

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

a:hover {
  color: var(--primary-light);
}

.btn {
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 45, 114, 0.2);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 45, 114, 0.2);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-light:hover,
.btn-light:focus {
  background-color: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  color: var(--gray-800);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary) 0%, #4a89dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.badge {
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.text-bg-primary {
  background-color: rgba(0, 45, 114, 0.1);
  color: var(--primary);
}

/* Trust Elements */
.trust-badge {
  display: flex;
  align-items: center;
  background-color: rgba(0, 45, 114, 0.08);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 1rem;
}

.trust-badge i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--accent-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-badge i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.trust-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  background-color: rgba(0, 45, 114, 0.05);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-item i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.security-note {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  font-size: 0.85rem;
}

.security-note i {
  margin-right: 0.5rem;
  color: var(--success);
}

.guarantee-seal {
  position: absolute;
  bottom: 30px;
  right: -20px;
  z-index: 3;
}

.seal-inner {
  background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--dark);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  box-shadow: var(--box-shadow);
  transform: rotate(5deg);
}

.seal-inner i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.seal-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.trust-badge-large {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 45, 114, 0.08);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
}

.trust-badge-large i {
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.trust-badge-footer {
  display: flex;
  align-items: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.trust-badge-footer i {
  margin-right: 0.5rem;
  color: var(--primary-light);
}

/* Navbar */
.navbar {
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 30px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  background-color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.blob-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, rgba(0, 45, 114, 0.1) 0%, rgba(74, 137, 220, 0.1) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -50px;
  right: -50px;
  z-index: -1;
  animation: blob-animation 8s infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.hero-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
}

/* Shape Divider */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.shape-divider .shape-fill {
  fill: var(--gray-100);
}

.shape-divider-bottom {
  transform: rotate(180deg);
  bottom: -1px;
  top: auto;
}

/* Stats Section */
.stats-section {
  background-color: var(--gray-100);
  padding: 60px 0;
}

.section-counter {
  margin-bottom: 3rem;
}

.counter-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.counter-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #4a89dc 100%);
  margin: 1rem auto;
  border-radius: 2px;
}

.stat-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex-grow: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-title {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* Services Section */
.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-top: 4px solid transparent;
  border-image: linear-gradient(to right, var(--primary), #4a89dc);
  border-image-slice: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 193, 7, 0.15);
  color: var(--accent-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.service-features li i {
  color: var(--success);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.service-card .card-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, rgba(0, 45, 114, 0.03) 0%, rgba(74, 137, 220, 0.08) 100%);
  border-radius: 100% 0 0 0;
  z-index: -1;
}

.service-card:nth-child(odd) {
  border-image: linear-gradient(to right, var(--primary), #4a89dc);
  border-image-slice: 1;
}

.service-card:nth-child(even) {
  border-image: linear-gradient(to right, #4a89dc, var(--primary));
  border-image-slice: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(45deg, rgba(0, 45, 114, 0.03) 0%, rgba(74, 137, 220, 0.03) 100%);
  transition: var(--transition);
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  opacity: 0.1;
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

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

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-light);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about-image-container {
  position: relative;
  z-index: 1;
}

.about-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, rgba(0, 45, 114, 0.1) 0%, rgba(74, 137, 220, 0.1) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -30px;
  left: -30px;
  z-index: -1;
  animation: blob-animation 8s infinite alternate;
}

.about-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 2;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  box-shadow: var(--box-shadow);
  z-index: 3;
}

.experience-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
}

.about-values {
  margin: 2rem 0;
}

.values-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.values-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #4a89dc 100%);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.values-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.value-item {
  background-color: rgba(0, 45, 114, 0.08);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text {
  flex-grow: 1;
}

.feature-text h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* Team Section */
.team-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.team-position {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-experience {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-social .social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 45, 114, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-social .social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Process Section */
.proceso-timeline {
  position: relative;
  padding: 2rem 0;
}

.proceso-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary) 0%, #4a89dc 100%);
  border-radius: 2px;
}

.proceso-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.proceso-item:last-child {
  margin-bottom: 0;
}

.proceso-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--box-shadow);
}

.proceso-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.proceso-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.proceso-content p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
}

.cta-card {
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-badge i {
  margin-right: 0.5rem;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.cta-guarantee i {
  margin-right: 0.5rem;
}

.cta-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.cta-timer i {
  margin-right: 0.5rem;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: -1;
}

.cta-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}

.cta-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* CTA Section Alt */
.cta-section-alt {
  padding: 60px 0;
}

.cta-card-alt {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-left: 5px solid var(--primary);
}

.cta-card-alt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(0, 45, 114, 0.03) 0%, rgba(74, 137, 220, 0.05) 100%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: -1;
}

.cta-card-alt h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.cta-card-alt p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

/* Casos de Éxito Section */
.caso-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.caso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.caso-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.caso-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.caso-header h4 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--gray-800);
}

.caso-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.caso-result {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: rgba(0, 45, 114, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
}

.caso-result span {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* Companies Section */
.company-logo {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.company-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--gray-100);
  padding: 80px 0;
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-700);
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content p::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: -10px;
  top: -20px;
  color: var(--primary);
  opacity: 0.2;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-800);
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.testimonial-location i {
  margin-right: 0.25rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background-color: var(--white);
  color: var(--gray-800);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(0, 45, 114, 0.03);
  box-shadow: var(--card-shadow);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 45, 114, 0.1);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002D72'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
}

.faq-more-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-info-card {
  background: linear-gradient(45deg, var(--primary) 0%, #4a89dc 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: -1;
}

.contact-info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  z-index: -1;
}

.contact-info-card h3 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text {
  flex-grow: 1;
}

.contact-text h5 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-map {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  height: 100%;
}

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

.form-header h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.form-header p {
  color: var(--gray-600);
}

.form-control,
.form-select {
  border: 1px solid var(--gray-300);
  padding: 0.75rem 1rem;
  height: calc(3.5rem + 2px);
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 45, 114, 0.25);
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  border-radius: var(--border-radius-sm);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-security {
  color: var(--gray-600);
  font-size: 0.85rem;
}

.form-security i {
  color: var(--success);
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 30px;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition);
  display: inline-block;
}

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

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

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--primary-light);
}

.footer-certificate {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-certificate span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: var(--white);
  color: var(--gray-800);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--white);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Call Button */
.call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: var(--transition);
}

.call-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  background-color: var(--primary-light);
}

.call-tooltip {
  position: absolute;
  left: 70px;
  background-color: var(--white);
  color: var(--gray-800);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.call-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--white);
}

.call-btn:hover .call-tooltip {
  opacity: 1;
  visibility: visible;
  left: 75px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-section h1 {
    font-size: 3rem;
  }

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

  .cta-card {
    padding: 2.5rem;
  }

  .cta-card h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 80px;
  }

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

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

  .experience-badge {
    bottom: 20px;
    right: 20px;
    min-width: 100px;
    padding: 0.75rem;
  }

  .experience-badge .number {
    font-size: 2rem;
  }

  .cta-card {
    padding: 2rem;
  }

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

  .trust-badge {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

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

  .stat-card,
  .service-card,
  .testimonial-card,
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.3rem;
  }

  .proceso-timeline::before {
    left: 20px;
  }

  .proceso-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .proceso-item {
    padding-left: 60px;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

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

  .stat-icon,
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

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

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

  .experience-badge {
    min-width: 80px;
    padding: 0.5rem;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }

  .whatsapp-btn,
  .call-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 15px;
  }

  .whatsapp-tooltip,
  .call-tooltip {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .trust-banner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

