.product-icon i {
    color: var(--accent-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}
/* --- Sezione Prodotti --- */
.products-section {
    margin: 48px 0;
}
.products-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
    color: #2d3748;
}
.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    max-width: 320px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: flex-start;
    border-left: 5px solid var(--accent-color);
    background: linear-gradient(135deg, #f9fafb 0%, white 100%);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 102, 0, 0.15);
}
.product-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}
.product-card:hover {
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.13);
    border-color: #2563eb;
}
.product-card h3 {
    font-size: 1.4rem;
    color: var(--brand-primary);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}
.product-card p {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 14px;
}
.product-details {
    font-size: 0.95rem;
    color: #64748b;
    background: #eaf0f6;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: auto;
    font-weight: 500;
}
 /* --- Reset y Estilos Globales --- */
 :root {
     --bg-color: #FFFFFF;
     --primary-text: #0C1A29;
     --secondary-text: #5a5f7d;
     --accent-color: #FE6600;
     /* Naranja vibrante */
     --accent-color-hover: #E55D00;
     --decorative-bg: #f5f7fa;
     --brand-primary: #0C1A29;
     --font-family: 'Rubik', sans-serif;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: var(--font-family);
     background-color: var(--bg-color);
     color: var(--primary-text);
     line-height: 1.6;
 }

 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* --- Barra de Confianza --- */
 .trust-bar {
     background: linear-gradient(90deg, var(--brand-primary) 0%, #1a3a52 100%);
     padding: 12px 0;
     text-align: center;
     font-size: 0.9rem;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 30px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 }

 .trust-bar .contact-info {
     font-weight: 600;
     color: white;
 }

 .trust-bar i {
     vertical-align: middle;
    font-size: 1.5rem;
     margin-right: 5px;
     color: var(--accent-color);
 }

 /* --- Cabecera (Header) --- */
 .main-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 0;
     background-color: white;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     position: relative;
     width: 100%;
 }

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo img {
    height: 80px;
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

 .logo img:hover {
     transform: scale(1.05);
 }

 /* Botón hamburguesa - OCULTO por defecto, solo se muestra en móvil */
 .mobile-menu-toggle {
     display: none;
     position: relative;
     z-index: 1002;
 }

 @media (max-width: 768px) {
     .main-header {
         padding: 15px 20px;
         flex-wrap: nowrap;
         position: relative;
     }

     .logo {
         flex: 0 0 auto;
         margin-right: auto;
     }

     .logo img {
         height: 50px;
         max-height: 50px;
     }

     .mobile-menu-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
         background: none;
         border: none;
         font-size: 1.5rem;
         color: var(--primary-text);
         cursor: pointer;
         padding: 8px 12px;
         transition: color 0.3s ease;
         min-width: 44px;
         min-height: 44px;
         flex: 0 0 auto;
         margin-left: 10px;
     }

     .mobile-menu-toggle:active {
         color: var(--accent-color);
         background-color: rgba(254, 102, 0, 0.1);
         border-radius: 4px;
     }

     .main-nav {
         order: 3;
     }
 }

 .mobile-menu-overlay {
     display: none !important;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
     opacity: 0;
     transition: opacity 0.3s ease;
     pointer-events: none;
 }

 .mobile-menu-overlay.active {
     display: block !important;
     opacity: 1;
     pointer-events: auto;
 }

 body.menu-open {
     overflow: hidden;
 }

 .main-nav ul {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 30px;
 }

 .main-nav a {
     text-decoration: none;
     color: var(--primary-text);
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .main-nav a:hover {
     color: var(--accent-color);
 }

 .btn {
     padding: 10px 25px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 700;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: inline-block;
 }

 .btn-accent {
     background-color: var(--accent-color);
     color: #fff;
     position: relative;
     z-index: 1;
     cursor: pointer;
     -webkit-tap-highlight-color: transparent;
 }

 .btn-accent:hover {
     background-color: var(--accent-color-hover);
     transform: translateY(-3px);
     color: #fff;
     box-shadow: 0 4px 15px rgba(254, 102, 0, 0.4);
 }

 .btn-accent:active {
     transform: translateY(-1px);
     color: #fff;
     background-color: var(--accent-color-hover);
 }

 .btn-accent:focus {
     outline: 2px solid var(--accent-color);
     outline-offset: 2px;
 }

 /* --- Sección Principal (Hero) --- */
 .hero {
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 60px;
     padding: 60px 0 80px;
     min-height: 500px;
     width: 100%;
     box-sizing: border-box;
     position: relative;
     z-index: 1;
 }

 .hero-content {
     display: flex;
     flex-direction: column;
     gap: 25px;
     position: relative;
     z-index: 1;
     pointer-events: auto;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     line-height: 1.15;
     margin-bottom: 0;
     font-weight: 700;
 }

 .hero-content h1 .highlight {
     color: var(--accent-color);
 }

 .hero-content p {
     font-size: 1.2rem;
     line-height: 1.7;
     margin-bottom: 0;
     color: var(--secondary-text);
 }

 .hero-content .btn {
     width: fit-content;
     padding: 15px 35px;
     font-size: 1.1rem;
     position: relative;
     z-index: 10;
     pointer-events: auto;
     -webkit-tap-highlight-color: transparent;
 }

 /* --- Calculadora de Préstamos --- */
 .calculator-widget {
     background: linear-gradient(135deg, white 0%, #f9fafb 100%);
     padding: 35px;
     border-radius: 20px;
     border: 2px solid var(--accent-color);
     box-shadow: 0 10px 40px rgba(254, 102, 0, 0.15);
     height: fit-content;
     position: relative;
     z-index: 1;
 }

 .calculator-widget h2 {
     text-align: center;
     margin-bottom: 30px;
     font-size: 1.8rem;
     color: var(--brand-primary);
 }

 .amount-display {
     text-align: center;
     margin-bottom: 15px;
 }

 #loan-amount-value {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--accent-color);
     transition: transform 0.2s ease;
     display: inline-block;
 }

 .slider {
     -webkit-appearance: none;
     appearance: none;
     width: 100%;
     height: 10px;
     background: #eaf0f6;
     outline: none;
     border-radius: 5px;
     cursor: pointer;
     touch-action: none;
     -webkit-tap-highlight-color: transparent;
     position: relative;
     z-index: 10;
     pointer-events: auto;
 }

 .slider::-webkit-slider-thumb {
     -webkit-appearance: none;
     appearance: none;
     width: 25px;
     height: 25px;
     background: var(--accent-color);
     cursor: pointer;
     border-radius: 50%;
     transition: all 0.2s ease;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .slider::-webkit-slider-thumb:hover {
     transform: scale(1.2);
     box-shadow: 0 3px 6px rgba(254, 102, 0, 0.4);
 }

 .slider::-webkit-slider-thumb:active {
     transform: scale(1.3);
 }

 .slider::-moz-range-thumb {
     width: 25px;
     height: 25px;
     background: var(--accent-color);
     cursor: pointer;
     border-radius: 50%;
     border: none;
     transition: all 0.2s ease;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 .slider::-moz-range-thumb:hover {
     transform: scale(1.2);
     box-shadow: 0 3px 6px rgba(254, 102, 0, 0.4);
 }

 .slider::-moz-range-thumb:active {
     transform: scale(1.3);
 }

 /* Mejoras para móvil - slider más grande y fácil de tocar */
 @media (max-width: 768px) {
     .slider {
         height: 12px;
         -webkit-tap-highlight-color: transparent;
         touch-action: none;
         pointer-events: auto;
         z-index: 10;
         position: relative;
     }

     .slider::-webkit-slider-thumb {
         width: 32px;
         height: 32px;
         box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
         pointer-events: auto;
     }

     .slider::-moz-range-thumb {
         width: 32px;
         height: 32px;
         box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
         pointer-events: auto;
     }

     .form-group {
         padding: 10px 0;
         margin-bottom: 20px;
         position: relative;
         z-index: 1;
         pointer-events: auto;
     }

     .amount-display {
         margin-bottom: 20px;
         padding: 10px;
         pointer-events: none;
     }

     .calculator-widget {
         pointer-events: auto;
         position: relative;
         z-index: 1;
     }

     .btn-accent {
         pointer-events: auto;
         position: relative;
         z-index: 10;
         min-height: 44px;
         display: flex;
         align-items: center;
         justify-content: center;
     }
 }

 .loan-details {
     padding-top: 20px;
 }

 .detail-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     font-size: 0.95rem;
 }

 .detail-item .label {
     display: flex;
     align-items: center;
     gap: 8px;
     color: var(--secondary-text);
 }

 .detail-item .value {
     font-weight: 700;
 }

 .detail-item i {
     font-size: 1.3rem;
     color: var(--accent-color);
 }

 .btn-full {
     width: 100%;
     text-align: center;
     font-size: 1.2rem;
     margin-top: 15px;
     padding: 15px;
     position: relative;
     z-index: 10;
     pointer-events: auto;
     -webkit-tap-highlight-color: transparent;
     min-height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* --- Cómo Funciona --- */
 .how-it-works {
     padding: 80px 0;
     background: linear-gradient(180deg, white 0%, var(--decorative-bg) 100%);
     text-align: center;
 }

 .how-it-works h2 {
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: var(--brand-primary);
     font-weight: 700;
 }

 .steps-container {
     display: flex;
     justify-content: space-around;
     gap: 40px;
 }

 .step {
     flex: 1;
     background: white;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .step:hover {
     transform: translateY(-10px);
     box-shadow: 0 10px 30px rgba(254, 102, 0, 0.2);
 }

 .step i {
     font-size: 3.5rem;
     color: var(--accent-color);
     margin-bottom: 20px;
 }

 .step h3 {
     margin-bottom: 15px;
     color: var(--brand-primary);
     font-size: 1.4rem;
 }

 .step p {
     color: var(--secondary-text);
     font-size: 1rem;
     line-height: 1.6;
 }

 /* --- Testimonios --- */
 .testimonials {
     padding: 80px 0;
     text-align: center;
     background-color: white;
 }

 .testimonials h2 {
     margin-bottom: 50px;
     font-size: 2.5rem;
     color: var(--brand-primary);
     font-weight: 700;
 }

 .testimonials-container {
     display: flex;
     justify-content: space-around;
     gap: 30px;
 }

 .testimonial-card {
     flex: 1;
     background: linear-gradient(135deg, #f9fafb 0%, white 100%);
     padding: 30px;
     border-radius: 15px;
     border-left: 5px solid var(--accent-color);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(254, 102, 0, 0.15);
 }

 .testimonial-card p {
     font-style: italic;
     color: var(--secondary-text);
     font-size: 1rem;
     line-height: 1.7;
 }

 .testimonial-card .author {
     margin-top: 20px;
     font-weight: 700;
     color: var(--brand-primary);
     font-size: 1.1rem;
 }

 .testimonial-card .location {
     font-size: 0.875rem;
     color: var(--accent-color);
     font-weight: 500;
 }

/* --- Nuestra Empresa --- */
.about-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, white 100%);
}

.about-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--brand-primary);
    font-weight: 700;
}

.about-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 102, 0, 0.15);
}

.about-card h3 {
    color: var(--brand-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Footer --- */
.main-footer {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #1a3a52 100%);
    color: #fff;
    padding: 50px 0 30px;
    text-align: center;
    font-size: 0.9rem;
}

.main-footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.main-footer i {
    margin-right: 8px;
}

 /* --- Botón Flotante de Tema --- */
 .theme-toggle-floating {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
     background: var(--accent-color);
     color: white;
     border: none;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     font-size: 24px;
     cursor: pointer;
     box-shadow: 0 4px 15px rgba(254, 102, 0, 0.4);
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .theme-toggle-floating:hover {
     background: var(--accent-color-hover);
     transform: scale(1.1);
     box-shadow: 0 6px 20px rgba(254, 102, 0, 0.6);
 }

 /* --- Responsividad --- */

 /* Tablets y pantallas medianas */
 @media (max-width: 1024px) {
     .container {
         padding: 0 30px;
     }

     .hero {
         grid-template-columns: 1fr 1fr;
         padding: 40px 0 60px;
         gap: 40px;
         min-height: auto;
     }

     .hero-content h1 {
         font-size: 2.8rem;
     }

     .hero-content p {
         font-size: 1.1rem;
     }

     .calculator-widget {
         padding: 30px;
     }

     .how-it-works,
     .testimonials {
         padding: 60px 0;
     }
 }

 /* Tablets pequeñas */
 @media (max-width: 900px) {
     .hero {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 40px;
         padding: 30px 0 50px;
     }

     .hero-content {
         align-items: center;
     }

     .hero-content .btn {
         margin: 0 auto;
     }

     .calculator-widget {
         max-width: 500px;
         margin: 0 auto;
     }

     .steps-container,
     .testimonials-container {
         flex-direction: column;
         gap: 25px;
     }

     .step,
     .testimonial-card {
         max-width: 600px;
         margin: 0 auto;
     }

     .how-it-works h2,
     .testimonials h2 {
         font-size: 2rem;
     }
 }

 /* Móviles grandes */
 @media (max-width: 768px) {
     .container {
         padding: 0 20px;
     }

     .main-header {
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
         gap: 10px;
         padding: 12px 20px;
         position: relative;
         width: 100%;
         box-sizing: border-box;
     }

     .logo {
         flex: 0 0 auto;
         margin-right: auto;
     }

     .logo img {
         height: 50px;
         max-height: 50px;
         width: auto;
     }

     .mobile-menu-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
         background: none;
         border: none;
         font-size: 1.5rem;
         color: var(--primary-text);
         cursor: pointer;
         padding: 8px 12px;
         min-width: 44px;
         min-height: 44px;
         flex: 0 0 auto;
         z-index: 1002;
         border-radius: 4px;
         transition: all 0.2s ease;
     }

     .mobile-menu-toggle:active {
         background-color: rgba(254, 102, 0, 0.1);
         color: var(--accent-color);
     }

     .mobile-menu-overlay {
         display: none;
         pointer-events: none;
     }

     .mobile-menu-overlay.active {
         display: block;
         pointer-events: auto;
     }

     /* Asegurar que el contenido principal no esté bloqueado */
     .hero,
     .hero-content,
     .calculator-widget,
     .btn,
     .slider {
         position: relative;
         z-index: 1;
         pointer-events: auto;
     }

     .main-nav {
         position: fixed;
         top: 0;
         right: -100%;
         width: 85%;
         max-width: 300px;
         height: 100vh;
         background: white;
         box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
         transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 1001;
         padding-top: 70px;
         overflow-y: auto;
         -webkit-overflow-scrolling: touch;
     }

     .main-nav.active {
         right: 0;
     }

     .main-nav ul {
         flex-direction: column;
         align-items: stretch;
         gap: 0;
         padding: 0;
         margin: 0;
         list-style: none;
     }

     .main-nav li {
         width: 100%;
         border-bottom: 1px solid #f0f0f0;
     }

     .main-nav li:last-child {
         border-bottom: none;
         padding: 15px 20px;
     }

     .main-nav a {
         display: block;
         padding: 15px 20px;
         font-size: 1rem;
         width: 100%;
         color: var(--primary-text);
         text-decoration: none;
         transition: background-color 0.2s ease;
     }

     .main-nav a:active {
         background-color: rgba(254, 102, 0, 0.1);
     }

     .main-nav .btn {
         margin: 0;
         text-align: center;
         width: 100%;
         display: block;
     }

     .hero {
         padding: 20px 0 40px;
         gap: 30px;
     }

     .hero-content {
         order: 2;
         text-align: center;
     }

     .hero-content h1 {
         font-size: 2.2rem;
         line-height: 1.2;
     }

     .hero-content p {
         font-size: 1rem;
         line-height: 1.6;
     }

     .hero-content .btn {
         padding: 12px 28px;
         font-size: 1rem;
         width: 100%;
         max-width: 300px;
     }

     .calculator-widget {
         order: 1;
         width: 100%;
         max-width: 100%;
     }

     .trust-bar {
         flex-direction: column;
         gap: 8px;
         padding: 10px 0;
         font-size: 0.85rem;
     }

     .calculator-widget {
         padding: 25px 20px;
         max-width: 100%;
         margin: 0 auto;
         box-sizing: border-box;
     }

     .calculator-widget h2 {
         font-size: 1.5rem;
         margin-bottom: 20px;
     }

     #loan-amount-value {
         font-size: 2rem;
         word-break: break-word;
     }

     .loan-details {
         padding-top: 15px;
     }

     .detail-item {
         font-size: 0.9rem;
         margin-bottom: 10px;
         flex-wrap: wrap;
     }

     .detail-item .label {
         font-size: 0.85rem;
         flex: 1 1 auto;
         min-width: 60%;
     }

     .detail-item .value {
         font-size: 0.9rem;
         flex: 0 0 auto;
         text-align: right;
     }

     .btn-full {
         width: 100%;
         margin-top: 20px;
         padding: 14px;
         font-size: 1.1rem;
     }

     .how-it-works,
     .testimonials {
         padding: 40px 0;
     }

     .how-it-works h2,
     .testimonials h2 {
         font-size: 1.8rem;
         margin-bottom: 30px;
     }

     .step i {
         font-size: 2.5rem;
     }

     .step h3 {
         font-size: 1.2rem;
     }

     .testimonial-card {
         padding: 25px;
     }

     .theme-toggle-floating {
         width: 50px;
         height: 50px;
         font-size: 20px;
         bottom: 20px;
         right: 20px;
     }
 }

 /* Móviles medianos */
 @media (max-width: 480px) {
     .container {
         padding: 0 15px;
     }

     .hero {
         padding: 20px 0 30px;
         gap: 25px;
     }

     .hero-content {
         order: 2;
         text-align: center;
     }

     .hero-content h1 {
         font-size: 1.8rem;
         line-height: 1.2;
         margin-bottom: 15px;
     }

     .hero-content p {
         font-size: 0.95rem;
         line-height: 1.6;
         margin-bottom: 20px;
     }

     .hero-content .btn {
         width: 100%;
         max-width: 280px;
     }

     .calculator-widget {
         order: 1;
         width: 100%;
         max-width: 100%;
     }

     .btn {
         padding: 8px 20px;
         font-size: 0.9rem;
     }

     .calculator-widget {
         padding: 20px 15px;
         border-width: 2px;
     }

     .calculator-widget h2 {
         font-size: 1.3rem;
         margin-bottom: 18px;
     }

     #loan-amount-value {
         font-size: 1.8rem;
         word-break: break-word;
     }

     .form-group {
         margin-bottom: 18px;
     }

     .amount-display {
         margin-bottom: 18px;
         padding: 8px;
     }

     .loan-details {
         padding-top: 12px;
     }

     .detail-item {
         font-size: 0.8rem;
         margin-bottom: 8px;
         flex-wrap: wrap;
         gap: 5px;
     }

     .detail-item .label {
         font-size: 0.75rem;
         flex: 1 1 60%;
         min-width: 0;
     }

     .detail-item .label i {
         font-size: 1rem;
         margin-right: 4px;
     }

     .detail-item .value {
         font-size: 0.85rem;
         flex: 0 0 auto;
         text-align: right;
         word-break: break-word;
     }

     .detail-item[style*="font-size: 1.2rem"] {
         font-size: 1rem !important;
     }

     .detail-item[style*="font-size: 1.2rem"] .label,
     .detail-item[style*="font-size: 1.2rem"] .value {
         font-size: 1rem !important;
     }

     .btn-full {
         font-size: 1rem;
         padding: 14px;
         margin-top: 18px;
     }

     .how-it-works h2,
     .testimonials h2 {
         font-size: 1.5rem;
         margin-bottom: 25px;
     }

     .step,
     .testimonial-card {
         padding: 20px;
     }

     .step i {
         font-size: 2rem;
         margin-bottom: 15px;
     }

     .step h3 {
         font-size: 1.1rem;
         margin-bottom: 10px;
     }

     .step p,
     .testimonial-card p {
         font-size: 0.9rem;
     }

     .testimonial-card .author {
         font-size: 1rem;
         margin-top: 15px;
     }

     .main-footer {
         padding: 30px 0 20px;
         font-size: 0.85rem;
     }

     .theme-toggle-floating {
         width: 45px;
         height: 45px;
         font-size: 18px;
         bottom: 15px;
         right: 15px;
     }
 }

 /* Móviles pequeños */
 @media (max-width: 360px) {
     .hero-content h1 {
         font-size: 1.6rem;
     }

     #loan-amount-value {
         font-size: 1.6rem;
     }

     .main-nav ul {
         flex-direction: column;
         gap: 8px;
     }

     .trust-bar {
         font-size: 0.8rem;
     }
 }

 /* Mejoras adicionales de responsividad */
 @media (max-width: 768px) {
     .products-container {
         flex-direction: column;
         align-items: center;
     }

     .product-card {
         max-width: 100%;
         width: 100%;
     }

     .about-container {
         flex-direction: column;
         align-items: center;
     }

     .about-card {
         max-width: 100%;
         width: 100%;
     }

     .about-section h2,
     .products-section h2 {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 480px) {
     .products-section {
         margin: 30px 0;
     }

     .products-section h2 {
         font-size: 1.5rem;
         margin-bottom: 20px;
     }

     .product-card {
         padding: 20px;
     }

     .product-icon i {
         font-size: 2.5rem;
     }

     .product-card h3 {
         font-size: 1.2rem;
     }

     .about-section {
         padding: 40px 0;
     }

     .about-section h2 {
         font-size: 1.5rem;
         margin-bottom: 25px;
     }

     .about-card {
         padding: 25px 20px;
     }

     .about-card h3 {
         font-size: 1.2rem;
     }

     .about-card p {
         font-size: 0.9rem;
     }
 }