:root{
  --primary:#e60028;
  --primary-dark:#cc0023;
  --font: 'Roboto', sans-serif;
  --text-gray: #666;
  --light-bg: #fafafa;
}

* {
  scroll-behavior: smooth;
}

body{
  font-family: var(--font);
  background: #fff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

header .navbar-brand strong{ 
  font-weight:700;
}

header .navbar-brand img {
  transition: transform 0.3s ease;
  height: 50px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

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

header .btn-primary {
  padding: 10px 25px;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(230, 0, 40, 0.3);
}

header .btn-primary:hover {
  box-shadow: 0 4px 15px rgba(230, 0, 40, 0.4);
}

header .nav-link {
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 15px !important;
}

header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

header .nav-link:hover::after {
  width: 80%;
}

h1,h2,h3{ 
  color:#111; 
}

.btn-primary{
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover{
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 0, 40, 0.3);
}

.card .icon{ 
  font-size:36px; 
}

blockquote{ 
  font-size:1.05rem; 
}

/* Secciones */
section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
  scroll-margin-top: 80px;
}

section:first-of-type {
  padding-top: 7rem;
}

/* HERO SECTION */
.hero{
  background: linear-gradient(135deg, var(--primary) 0%, #ff0040 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::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="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

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

.hero h1{
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero h2{
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero p{
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero .hero-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero .hero-subtext {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Asegurar que el texto sea visible en desktop */
@media (min-width: 769px) {
  .hero .hero-text {
    display: block !important;
  }
  
  .hero .hero-subtext {
    display: block !important;
  }
}

.hero .btn-primary{
  background: #fff;
  color: var(--primary);
  font-weight: bold;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero .btn-primary:hover{
  background: #f8f8f8;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.hero-btn-mobile {
  display: none;
}

.hero-btn-desktop {
  display: inline-block;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.4s both;
  z-index: 10;
}

.hero-phone {
  max-width: 280px;
  max-height: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.hero-phone:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
}

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

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

/* CARACTERÍSTICAS SECTION */
#caracteristicas {
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
  position: relative;
}

#caracteristicas h2{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}

#caracteristicas h2 strong{
  color: var(--primary);
  font-weight: 700;
}

#caracteristicas p.lead{
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-gray);
}

#caracteristicas .card {
  border: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

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

#caracteristicas .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(230, 0, 40, 0.15);
}

#caracteristicas .card:hover::before {
  transform: scaleX(1);
}

#caracteristicas .card .icon{
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ffe5ea 0%, #ffd0d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(230, 0, 40, 0.1);
}

#caracteristicas .card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(230, 0, 40, 0.2);
}

#caracteristicas .card .icon img{
  width: 60px;
  height: 60px;
}

#caracteristicas .card h5{
  color: #111;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

#caracteristicas .card p strong{
  color: var(--primary);
  font-weight: 600;
}

/* BENEFICIOS SECTION */
#beneficios{
  background: linear-gradient(135deg, var(--primary) 0%, #ff0040 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#beneficios::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}

#beneficios .container {
  position: relative;
  z-index: 1;
}

#beneficios .col-lg-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
}

#beneficios img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

#beneficios img:hover {
  transform: scale(1.05);
}

#beneficios h2{
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}

#beneficios .lead{
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

#beneficios p{
  color: #fff;
}

#beneficios .benefit-box{
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#beneficios .benefit-box:hover{
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px) scale(1.02);
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#beneficios .benefit-box h5{
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

#beneficios .benefit-box p{
  color: #fff;
  font-size: 1rem;
  margin: 0;
}

/* COMO FUNCIONA SECTION */
#como-funciona {
  background: #fff;
}

#como-funciona h2{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1rem;
}

#como-funciona h2 strong{
  color: var(--primary);
  font-weight: 700;
}

#como-funciona p.lead{
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

#como-funciona .box{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

#como-funciona .box .number{
  background: var(--primary);
  color: #fff;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

#como-funciona .box h5{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

#como-funciona .box p{
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

#como-funciona .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

#como-funciona .thumb img {
  max-width: 80%;
  height: auto;
}

/* CASOS DE ÉXITO SECTION */
#casos {
  background: #f9f9f9;
}

#casos h2{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

#casos h2 strong{
  color: var(--primary);
}

#casos p.lead{
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

#casos .card {
  border: 2px solid #e8e8e8;
  border-radius: 25px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 35px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#casos .card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0;
}

#casos .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 0, 40, 0.05), transparent);
  transition: left 0.6s ease;
}

#casos .card:hover::before {
  left: 100%;
}

#casos .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 0, 40, 0.15);
  border-color: var(--primary);
}

#casos .card h5 {
  text-align: left;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

#casos .card p strong{
  font-weight: 700;
  color: #111;
}

#casos .card .card-text:last-of-type {
  margin-bottom: auto;
}

#casos .card .btn-primary{
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding: 8px 25px;
  font-size: 0.9rem;
  margin-top: 20px;
  align-self: flex-start;
}

/* TESTIMONIOS SECTION */
#testimonios {
  background: #fff;
}

#testimonios h2{
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

#testimonios h2 strong{
  color: var(--primary);
}

#testimonios p.lead{
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 2px solid #e8e8e8;
  border-radius: 30px;
  padding: 40px 30px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(230, 0, 40, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 0, 40, 0.12);
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.testimonial-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;
  margin-bottom: 25px;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  margin-bottom: 5px;
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* CONTACTO SECTION */
#contacto {
  background: #f9f9f9;
}

#contacto h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #111;
}

#contacto h2 strong {
  color: var(--primary);
  font-weight: 700;
}

#contacto .contact-subtitle {
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#contacto p.lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-control {
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1rem;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(230, 0, 40, 0.15);
  outline: none;
  color: #333;
  transform: translateY(-2px);
}

.contact-form .form-control.is-valid {
  border-color: #28a745;
  background: #fff;
}

.contact-form .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.25);
}

.contact-form .form-control.is-invalid {
  border-color: #dc3545;
  background: #fff;
}

.contact-form .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.25);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  padding: 15px 50px;
  font-size: 1.2rem;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(230, 0, 40, 0.3);
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  box-shadow: 0 8px 30px rgba(230, 0, 40, 0.4);
  transform: translateY(-3px);
}

.contact-form .btn-primary:disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.contact-form .btn-primary:disabled:hover {
  background: #ccc;
  border-color: #ccc;
  transform: none;
  box-shadow: none;
}

#formMessage .alert {
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

#formMessage .alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formMessage .alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
footer {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

img{
  width: 100%;
}

/* Responsive */
@media (min-width: 992px) {
  section .row {
    align-items: center;
  }
}

/* Scroll suave y efectos adicionales */
section h2 {
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff0040);
  border-radius: 2px;
}

/* Mejorar imágenes */
img {
  transition: transform 0.3s ease;
}

section img:hover {
  transform: scale(1.02);
}

/* Footer mejorado */
footer {
  background: linear-gradient(180deg, #f9f9f9 0%, #f0f0f0 100%);
  border-top: 1px solid #e0e0e0;
  padding: 30px 0 !important;
}

footer img {
  transition: transform 0.3s ease;
  width: auto;
  object-fit: contain;
}

footer .footer-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
}

footer .footer-logo-small {
  height: 40px;
  width: auto;
  max-width: 150px;
}

footer img:hover {
  transform: scale(1.05);
}

/* Botones con efecto ripple */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Tablet */
@media (max-width: 991px) {
  section {
    padding: 60px 0 !important;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  #caracteristicas .card,
  #casos .card,
  .testimonial-card {
    margin-bottom: 20px;
  }
  
  #beneficios .col-lg-9,
  #beneficios .col-lg-3 {
    width: 100%;
  }
  
  #beneficios img {
    max-width: 40%;
    margin-top: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  header {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .btn-primary {
    margin-top: 15px;
    width: 100%;
  }
  
  header .nav-link {
    padding: 10px 15px !important;
  }
  
  section {
    padding: 50px 0 !important;
   
  }
  
  .hero {
    padding-top: 80px !important;
    position: relative;
    min-height: auto;
  }
  
  .hero .container {
    text-align: center;
  }
  
  .hero .row {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .hero .hero-text-content {
    order: 1;
    margin-bottom: 0;
  }
  
  .hero .hero-text-content h1 {
    order: 1;
  }
  
  .hero .hero-text-content h2 {
    order: 2;
  }
  
  .hero .col-lg-6:nth-child(2) {
    order: 3;
  }
  
  .hero .hero-btn-mobile {
    order: 4;
    display: block;
    text-align: center;
    margin-top: 0;
  }
  
  .hero .hero-btn-desktop {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-image-wrapper {
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 2rem;
    justify-content: center;
    padding-right: 0;
    z-index: 5;
  }
  
  .hero-phone {
    max-width: 250px;
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .hero .hero-text {
    display: block !important;
    font-size: 1rem;
    text-align: center;
  }
  
  .hero .hero-subtext {
    display: block !important;
    font-size: 0.9rem;
    text-align: center;
  }
  
  .hero .hero-btn-mobile .btn-primary {
    width: auto;
    padding: 12px 35px;
    display: inline-block;
    margin-top: 0;
  }
  
  #caracteristicas {
    padding-top: 100px !important;
  }
  
  #caracteristicas h2,
  #como-funciona h2,
  #casos h2,
  #testimonios h2,
  #contacto h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  #caracteristicas p.lead,
  #como-funciona p.lead,
  #casos p.lead,
  #testimonios p.lead {
    font-size: 1rem;
  }
  
  #caracteristicas .card {
    margin-bottom: 15px;
    padding: 25px 15px;
  }
  
  #caracteristicas .card .icon {
    width: 80px;
    height: 80px;
  }
  
  #caracteristicas .card .icon img {
    width: 50px;
    height: 50px;
  }
  
  #beneficios h2 {
    font-size: 1.6rem;
  }
  
  #beneficios .lead {
    font-size: 0.95rem;
  }
  
  /* Tabs para móviles */
  .benefits-tabs {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 140px;
    flex-shrink: 0;
    border-right: 2px solid rgba(255,255,255,0.3);
    padding-right: 15px;
  }
  
  .tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255,255,255,0.7);
    padding: 12px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .tab-btn:hover {
    color: rgba(255,255,255,0.95);
    border-bottom-color: rgba(255,255,255,0.4);
  }
  
  .tab-btn.active {
    color: #fff;
    border-bottom-color: #fff;
    font-weight: 700;
  }
  
  .tabs-content {
    flex: 1;
    position: relative;
    min-height: 300px;
  }
  
  .tab-pane {
    display: none;
    animation: fadeInRight 0.4s ease;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .benefit-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .benefit-card h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .benefit-card p {
    color: rgba(255,255,255,0.95);
    font-size: 1rem;
    line-height: 1.7;
  }
  
  #como-funciona .box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  #como-funciona .box .number {
    margin-bottom: 15px;
  }
  
  #como-funciona .box h5 {
    font-size: 1.3rem;
  }
  
  #como-funciona .thumb img {
    margin-bottom: 30px;
  }
  
  #casos .card {
    margin-bottom: 20px;
    padding: 25px;
  }
  
  #casos .card h5 {
    font-size: 1.3rem;
  }
  
  .testimonial-card {
    margin-bottom: 20px;
    padding: 30px 20px;
    min-height: 350px;
  }
  
  .testimonial-title {
    font-size: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  #contacto h2 {
    font-size: 1.6rem;
  }
  
  #contacto .contact-subtitle {
    font-size: 1.4rem;
  }
  
  #contacto p.lead {
    font-size: 1rem;
  }
  
  .contact-form .btn-primary {
    width: 100%;
    padding: 15px 30px;
  }
  
  footer {
    text-align: center;
  }
  
  footer .container {
    flex-direction: column !important;
    gap: 15px;
  }
  
  footer img {
    max-width: 150px;
    height: auto !important;
  }
  
  header .navbar-brand img {
    height: 40px !important;
    max-width: 150px;
  }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .hero-image-wrapper {
    right: auto;
    top: auto;
  }
  
  .hero-phone {
    max-width: 200px;
  }
  
  .hero .hero-btn-mobile .btn-primary {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
  
  #caracteristicas h2,
  #como-funciona h2,
  #casos h2,
  #testimonios h2,
  #contacto h2 {
    font-size: 1.4rem;
  }
  
  .tabs-nav {
    width: 120px;
    padding-right: 12px;
  }
  
  .tab-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  
  .benefit-card {
    padding: 30px 20px;
    min-height: 280px;
  }
  
  .benefit-card h5 {
    font-size: 1.15rem;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
  }
  
  .contact-form .form-control {
    font-size: 0.9rem;
  }
  
  footer .footer-logo {
    height: 35px !important;
    max-width: 120px;
  }
  
  footer .footer-logo-small {
    height: 30px !important;
    max-width: 100px;
  }
  
  header .navbar-brand img {
    height: 35px !important;
    max-width: 120px;
  }
}

