/* ===== VARIABLES CSS OPTIMIZADAS ===== */
:root {
    --clr-primary: #e02b20;
    --clr-primary-hover: #c71e15;
    --clr-secondary: #00204A;
    --clr-accent: #ffd700;
    --clr-success: #28a745;
    --text-dark: #333;
    --text-light: #fff;
    --text-muted: #666;
    --background-light: #fff;
    --background-gray: #f8f9fa;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max-width: 1400px;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --border-radius-md: 10px;
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET BÁSICO ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== NAVEGACIÓN ===== */
.navbar-pc {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    min-height: 80px;
    transition: all 0.3s ease;
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar > li {
    position: relative;
}

.navbar > li > a {
    color: #00204A;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1.5rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar > li > a:hover,
.navbar > li > a:focus {
    color: #e02b20;
}

.navbar > li > a[aria-current="page"] {
    color: #e02b20;
    font-weight: 600;
}

/* Submenús */
.navbar ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar li:hover > ul,
.navbar li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar ul li:last-child {
    border-bottom: none;
}

.navbar ul li a {
    color: #00204A;
    padding: 0.75rem 1rem;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a:focus {
    color: #e02b20;
    background: rgba(224, 43, 32, 0.05);
}

/* Botón hamburguesa */
.menu-hamburguesa {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.menu-hamburguesa span {
    display: block;
    width: 25px;
    height: 3px;
    background: #00204A;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-hamburguesa[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-hamburguesa[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-hamburguesa[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menú móvil */
.navbar-movil {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important; /* Forzar display block */
}

.navbar-movil[hidden] {
    display: block !important; /* Override del atributo hidden */
}

.navbar-movil.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.navbar-movil ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
    width: 100%;
}

.navbar-movil li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.navbar-movil li:last-child {
    border-bottom: none;
}

.navbar-movil a {
    display: block;
    padding: 1rem;
    color: #00204A;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.navbar-movil a:hover,
.navbar-movil a:focus {
    color: #e02b20;
    background: rgba(224, 43, 32, 0.05);
}

.navbar-movil a[aria-current="page"] {
    color: #e02b20;
    font-weight: 600;
    background: rgba(224, 43, 32, 0.1);
}

/* Evitar scroll del body cuando el menú está abierto */
body.menu-open {
    overflow: hidden !important;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #005082 100%);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    color: white;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* ===== LAYOUT CONTAINERS ===== */
.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #005082 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.highlight {
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===== SECCIONES ===== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.products-section,
.financing-section,
.contact-section {
    padding: var(--spacing-xl) 0;
}

.products-section {
    background: var(--background-gray);
}

/* ===== PRODUCTOS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: var(--spacing-sm);
    font-size: 1.2rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    padding: 0 var(--spacing-sm);
}

.financing {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 var(--spacing-sm) var(--spacing-sm);
}

/* ===== FINANCIACIÓN ===== */
.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.financing-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.financing-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--clr-secondary);
}

.financing-card ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.financing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.financing-card li:last-child {
    border-bottom: none;
}

/* ===== CONTACTO ===== */
.contact-section {
    background: var(--clr-secondary);
    color: white;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand img {
    margin-bottom: var(--spacing-sm);
}

.footer-links h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--clr-accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ===== UTILIDADES ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    background: var(--clr-primary);
    color: white;
    padding: 1rem;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.loading-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== SECCIONES ESPECÍFICAS PROFESIONALES ===== */

/* Opciones de Financiación */
.financing-options {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.financing-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(224, 43, 32, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 32, 74, 0.03) 0%, transparent 40%);
    z-index: 0;
}

.financing-options .section-container {
    position: relative;
    z-index: 1;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.financing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.financing-card:hover::before {
    left: 100%;
}

.financing-card:hover {
    border-color: #e02b20;
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(224, 43, 32, 0.15);
}

.financing-card.featured {
    border-color: #e02b20;
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 12px 40px rgba(224, 43, 32, 0.12);
    transform: scale(1.02);
}

.financing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
}

.financing-card.special {
    border-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f8fff8 100%);
}

.financing-card.special:hover {
    border-color: #28a745;
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.15);
}

.financing-card .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(224, 43, 32, 0.3);
}

.financing-card .special-badge {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3) !important;
}

.financing-card .card-icon {
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(224, 43, 32, 0.3);
    position: relative;
}

.financing-card .card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.financing-card .card-icon svg {
    width: 28px;
    height: 28px;
    z-index: 1;
    position: relative;
}

.financing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #00204A;
    font-weight: 700;
    line-height: 1.3;
}

.financing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.financing-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.financing-card li svg {
    color: #28a745;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.financing-card .btn-primary {
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financing-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c71e15 0%, #e02b20 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.financing-card .btn-primary:hover::before {
    left: 0;
}

.financing-card .btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 43, 32, 0.4);
}

/* CTA Partners Section */
.partners-cta {
    text-align: center;
    margin: 4rem auto 0;
    background: linear-gradient(135deg, #00204A 0%, #003366 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 32, 74, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.partners-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(224, 43, 32, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.partners-cta > * {
    position: relative;
    z-index: 1;
}

.partners-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.partners-cta .btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #00204A;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.partners-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6c200 0%, #ffd700 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.partners-cta .btn-primary:hover::before {
    left: 0;
}

.partners-cta .btn-primary:hover {
    color: #00204A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* FAQ Section Professional */
.faq-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: #e02b20;
    box-shadow: 0 12px 35px rgba(224, 43, 32, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-question-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00204A;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.faq-icon {
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    color: white;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-answer p {
    margin: 0 0 1.5rem;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e02b20 0%, #ff4444 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c71e15 0%, #e02b20 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.faq-action-btn:hover::before {
    left: 0;
}

.faq-action-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 43, 32, 0.4);
}

/* Price Disclaimer Tooltip */
.price-disclaimer {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.price-disclaimer-btn {
    background: rgba(224, 43, 32, 0.1);
    border: 1px solid #e02b20;
    color: #e02b20;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-disclaimer-btn:hover {
    background: #e02b20;
    color: white;
}

.price-disclaimer-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #00204A;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.price-disclaimer-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #00204A;
}

.price-disclaimer-text {
    margin-bottom: 0.5rem;
}

.price-disclaimer-conditions {
    font-size: 0.7rem;
    opacity: 0.8;
    font-style: italic;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar-inner {
        padding: 0 1.5rem;
    }
    
    .navbar {
        gap: 1.5rem;
    }
}

@media (max-width: 980px) {
    .navbar {
        display: none !important;
    }

    .menu-hamburguesa {
        display: flex !important;
        visibility: visible !important;
    }

    .navbar-inner {
        padding: 0 1rem;
        min-height: 70px;
    }

    .logo-img {
        height: 40px;
    }
    
    /* Asegurar que el menú móvil funcione correctamente */
    .navbar-movil {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .navbar-inner {
        padding: 0 0.5rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Responsive para secciones específicas */
    .financing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .financing-card {
        min-height: 420px;
        padding: 2rem;
    }
    
    .financing-card .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .financing-card .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .financing-card h3 {
        font-size: 1.4rem;
    }
    
    .financing-card .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .partners-cta {
        padding: 2rem 1.5rem;
        margin: 3rem 1rem 0;
    }
    
    .partners-cta p {
        font-size: 1.1rem;
    }
    
    .partners-cta .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
    }
    
    .faq-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-action-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .price-disclaimer-tooltip {
        width: 200px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .financing-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== OPTIMIZACIONES DE RENDIMIENTO ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimización para elementos que no están en viewport */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para navegación por teclado */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
} 