/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fafafa;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hidden {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(30, 91, 184, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a4d9e 0%, #2e8ac4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 91, 184, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

@media (min-width: 1024px) {
  .header-container {
    height: 4.5rem;
  }
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop .nav-link,
.mobile-nav .nav-link {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #666;
}

.nav-desktop .nav-link::after,
.mobile-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  transition: width 0.3s ease;
}

.nav-desktop .nav-link:hover::after,
.mobile-nav .nav-link:hover::after,
.nav-desktop .nav-link.active::after,
.mobile-nav .nav-link.active::after {
  width: 100%;
}

.nav-desktop .nav-link:hover,
.mobile-nav .nav-link:hover,
.nav-desktop .nav-link.active,
.mobile-nav .nav-link.active {
  color: #1e5bb8;
}

.nav-desktop a[href="#inicio"] {
  font-weight: 600;
  color: #1a1a1a;
}

.nav-desktop a[href="#inicio"]:hover {
  color: #1e5bb8;
}

.social-desktop {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .social-desktop {
    display: flex;
  }
}

.social-desktop a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
}

.social-desktop a:hover {
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
  transform: translateY(-2px);
}

.menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  border-top: 1px solid #e5e5e5;
  padding: 1rem;
  background: white;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  font-size: 0.875rem;
  color: #666;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #1e5bb8;
}

.mobile-social {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
  margin-top: 1rem;
}

.mobile-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
}

.mobile-social a:hover {
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f3d7a 0%, #1e5bb8 50%, #3b9dd8 100%);
  padding-top: 5rem;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ffffff 0%, #a8d5f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-image {
    margin-top: 0;
  }
}

.hero-image-container {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 1024px) {
  .hero-image-container {
    max-width: 700px;
  }
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-grid-centered {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid-centered {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid-centered {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: #3b9dd8;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 91, 184, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fc 100%);
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-column {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.column-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e5bb8;
  margin-bottom: 2rem;
  text-align: center;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.benefit-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.benefit-item h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.5;
}

/* Areas Section */
.areas-section {
  padding: 6rem 0;
  background: white;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 1rem;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.area-card:hover {
  border-color: #3b9dd8;
  box-shadow: 0 10px 30px rgba(30, 91, 184, 0.12);
  transform: translateY(-5px);
}

.area-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e8f4fc 0%, #d4ecfa 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5bb8;
}

.area-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  text-align: center;
}

.area-list {
  list-style: none;
  padding: 0;
}

.area-list li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.area-list li:last-child {
  border-bottom: none;
}

.area-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b9dd8;
  font-weight: bold;
}

/* Profiles Section */
.profiles-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fc 100%);
}

.profiles-tabs {
  margin-top: 3rem;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab-button {
  padding: 0.875rem 2rem;
  background: white;
  border: 2px solid #e5e5e5;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  border-color: #3b9dd8;
  color: #1e5bb8;
}

.tab-button.active {
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 91, 184, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.profile-card {
  padding: 1.75rem;
  background: white;
  border-radius: 0.75rem;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.profile-card:hover {
  border-color: #3b9dd8;
  box-shadow: 0 6px 20px rgba(30, 91, 184, 0.1);
  transform: translateY(-3px);
}

.profile-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e5bb8;
  margin-bottom: 0.5rem;
}

.profile-card p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.5;
}

/* Clients Section */
.clients-section {
  padding: 6rem 0;
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.client-logo:hover {
  background: #e8f4fc;
  transform: translateY(-5px);
}

.logo-placeholder {
  font-size: 0.875rem;
  color: #999;
  font-weight: 600;
}

/* Video Section */
.video-section {
  padding: 6rem 0;
  background: white;
}

/* Blog Section */
.blog-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fc 100%);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #e5e5e5;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: #3b9dd8;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 91, 184, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999;
}

.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  color: white;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-read-more {
  display: inline-block;
  color: #1e5bb8;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: #3b9dd8;
}

.blog-cta {
  text-align: center;
}

/* Pricing Section */
.pricing-section {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pricing-card {
  max-width: 600px;
  width: 100%;
  padding: 3rem;
  background: white;
  border-radius: 1.5rem;
  border: 3px solid #3b9dd8;
  box-shadow: 0 10px 40px rgba(30, 91, 184, 0.15);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  margin-bottom: 2rem;
}

.pricing-amount .amount {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e5bb8 0%, #3b9dd8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-amount .period {
  font-size: 1rem;
  color: #666;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item svg {
  flex-shrink: 0;
  color: #3b9dd8;
  margin-top: 0.125rem;
}

.feature-item span {
  font-size: 0.9375rem;
  color: #1a1a1a;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f3d7a 0%, #1e5bb8 50%, #3b9dd8 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 2.5rem 0 1.5rem; /* Reducido de 4rem 0 2rem a 2.5rem 0 1.5rem */
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* Reducido de 3rem a 2rem */
  margin-bottom: 2rem; /* Reducido de 3rem a 2rem */
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 2fr;
  }
}

/* Logo más grande pero contenido más compacto */
.footer-brand {
  max-width: 500px;
}

.footer-logo {
  height: 4rem; /* Un poco más pequeño que antes (estaba en 4.5rem) pero sigue siendo grande */
  width: auto;
  margin-bottom: 1rem; /* Reducido de 1.5rem a 1rem */
}

.footer-brand p {
  font-size: 0.875rem; /* Reducido ligeramente de 0.9375rem */
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 90%; /* Para que no sea tan ancho */
}

.footer-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* Reducido de 2rem a 1.5rem */
}

@media (min-width: 768px) {
  .footer-contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contacto más compacto */
.contact-section {
  min-width: 0;
}

.contact-section h4 {
  font-size: 0.9rem; /* Reducido de 1rem */
  font-weight: 600;
  margin-bottom: 0.75rem; /* Reducido de 1rem */
  color: white;
  letter-spacing: 0.5px;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem; /* Reducido de 0.75rem */
  padding: 0.35rem 0; /* Reducido de 0.5rem */
  font-size: 0.85rem; /* Reducido de 0.9375rem */
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  width: 100%;
  text-decoration: none;
}

.contact-link:hover {
  color: #3b9dd8;
}

/* Íconos ligeramente más pequeños */
.contact-link svg {
  flex-shrink: 0;
  width: 18px; /* Reducido de 20px */
  height: 18px; /* Reducido de 20px */
  margin-top: 0.125rem;
}

.contact-link span {
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

/* Específico para el correo */
.email-link span {
  white-space: normal;
  font-size: 0.85rem;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem; /* Reducido de 0.5rem */
}

/* Footer bottom simplificado - SIN aviso de privacidad */
.footer-bottom {
  padding-top: 1.5rem; /* Reducido de 2rem */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem; /* Reducido de 0.875rem */
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Eliminado .footer-privacy-link ya que no lo necesitamos */
/* ... resto de tu CSS ... */

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: white;
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-amount .amount {
    font-size: 3rem;
  }
}
/* ===== CLIENTES CARRUSEL ===== */
.clients-carousel {
  width: 100%;
  overflow: hidden;          /* Esconde los logos que se salgan del contenedor */
  padding: 1.5rem 0;         /* Espacio arriba y abajo para que no quede tan pegado */
}

.clients-section .clients-grid {
  display: flex !important;  /* Forzamos el display flex */
  gap: 3rem;                 /* Espacio entre logos. Ajusta a tu gusto */
  animation: scrollClientes 30s linear infinite; /* Velocidad de la animación */
  width: max-content;        /* Hace que el contenedor sea tan ancho como todos los logos juntos */
  grid-template-columns: none; /* Eliminamos cualquier estilo de grid */
}

/* La animación: mueve el contenedor de logos de su posición original a la izquierda */
@keyframes scrollClientes {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1.5rem)); /* Ajusta según tu gap */
  }
}

/* Para que la animación sea más suave y no se detenga al pasar el mouse */
.clients-carousel:hover .clients-grid {
  animation-play-state: paused;
}

/* Contenedor de cada logo: lo hacemos más pequeño */
.clients-section .clients-grid .logo-placeholder {
  flex: 0 0 auto;            /* Evita que los logos se encojan o crezcan */
  width: 120px;              /* Ancho fijo para el contenedor del logo */
  height: 80px;              /* Alto fijo */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;       /* Mantenemos el fondo de tus logos */
  border-radius: 0.75rem;    /* Mantenemos el borde redondeado */
  padding: 0.5rem;           /* Espacio interno para que la imagen no quede pegada al borde */
  transition: all 0.3s ease;
  margin: 0;                 /* Eliminamos cualquier margen por defecto */
}

/* La imagen dentro del logo: que ocupe el espacio disponible */
.clients-section .clients-grid .logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;       /* Ajusta la imagen sin deformarla */
  filter: sepia(100%) hue-rotate(180deg) saturate(200%); /* Tinte azul en lugar de gris */
  opacity: 0.8;              /* Un poco más visible que antes */
  transition: all 0.3s ease;
}

/* Al pasar el mouse sobre un logo, lo resaltamos */
.clients-section .clients-grid .logo-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 91, 184, 0.2);
}

.clients-section .clients-grid .logo-placeholder:hover img {
  filter: none;              /* Quitamos todos los filtros al hacer hover */
  opacity: 1;
}

/* Responsive: ajustar el tamaño en móviles */
@media (max-width: 768px) {
  .clients-section .clients-grid .logo-placeholder {
    width: 100px;
    height: 60px;
  }
  
  .clients-section .clients-grid {
    gap: 2rem;
  }
}