/* Variables CSS */
:root {
    --primary-color: #f68c35;
    --primary-dark: #e55a2b;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --border-radius: 0.375rem;
    --transition: all 0.3s ease;
}


/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Header y Navegación */
.header {
    padding-top: 100px; /* Aumentado para el header más alto */
}

.navbar {
    transition: var(--transition);
    padding: 1.5rem 0; /* Aumentado el padding */
    min-height: 80px; /* Altura mínima del header */
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

/* Logo y Tagline */
.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.logo-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.75rem;
    line-height: 1;
}

.flame-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.25rem;
}

.flame-icon-container i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Navegación centrada */
.navbar-nav {
    margin: 0 auto;
}

.navbar-nav .nav-item {
    margin: 0 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

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

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Botón CTA con gradiente */
.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--white);
    text-decoration: none;
}

.btn-gradient-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    color: var(--white);
}

/* Responsive del header */
@media (max-width: 992px) {
    .navbar-nav {
        margin: 1rem 0;
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding-top: 90px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    .btn-gradient-primary {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0 , 0.4), rgba(0, 0, 0, 0.4)), url('../images/MKT-CLEVER.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(270deg, var(--primary-color), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Secciones generales */
section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

/* Quiénes Somos */
.about-image-container img {
    transition: var(--transition);
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.features-grid {
    margin: 2rem 0;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.bg-image-container {
    background-image: url('../images/CHALECO.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%; 
    min-height: 500px; 
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.bg-image-container-mobile {
    background-image: url('../images/CHALECO.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px; 
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Valores */
.bg-card-blur {
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 1rem; 
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075); 
    border: 1px solid rgba(0, 0, 0, 0.125);
    transition: all 0.3s ease;
    display: flex;
    align-items: start;
    gap: 1rem;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 48px;
    background-color: #f97015;
    color: #fff;
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    line-height: 1;
}

.value-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.btn-outline-light-black {
    border: 1px solid rgba(0, 0, 0, 0.2); 
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light-black:hover {
    background-color: rgba(0, 0, 0, 0.05); 
}

.bg-card-blur {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.text-muted-foreground {
    color: #6c757d;
}

.icon-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    background-color: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border: 2px solid #ffffff;
}

.bg-orange-1 {
    background-color: #ec4022;
}

.bg-orange-2 {
    background-color: #f68c35;
}


.btn-orange {
    background-color: #f97015;
    color: white;
    border: none;
}

.btn-orange:hover {
    opacity: 0.9;
}

.btn-outline-light {
    background-color: #ffffff;
    color: white;
    border: 1px solid #dee2e6;
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    color: #000;
}

.btn-gradient-primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
    background-size: 200% 100%;
    background-position: left center;
    border-radius: var(--border-radius);
}

.btn-gradient-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

@media (max-width: 762px) {
    .d-flex.flex-wrap.gap-2 {
        flex-direction: column;
    }
    
    .d-flex.flex-wrap.gap-2 .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
}

.fw-semibold {
    font-weight: 600;
}

.text-primary {
    color: #f97015;
}

.text-muted {
    color: #6c757d;
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.value-card:hover .value-title {
    color: #f97015;
}

/* Color personalizado para el título */
.text-orange {
    color: #f97015;
}


/* Nuestro Compromiso */
.commitment-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 500px;
    z-index: 1;
}

.commitment-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/MKT-CLEVER.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 0.5s ease;
    z-index: 1;
}

.commitment-image-container .bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 153, 51, 0.2), transparent);
    border-radius: 1.5rem;
}


.commitment-image-container:hover::before {
    transform: scale(1.05);
}


/* Fondo glow detrás de la imagen */
.bg-glow {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(255, 87, 34, 0.15));
    filter: blur(40px);
    z-index: 0;
}

/* Card con degradado naranja (de izquierda a derecha) */
.commitment-card {
    background: linear-gradient(to right, rgba(249, 112, 21, 0.1), #ffffff);
    border: 1px solid #f4f4f4;
}

/* Bullet externo */
.commitment-bullet {
    width: 24px;
    height: 24px;
    background-color: rgba(249, 112, 21, 0.1);
    /* suave */
    border-radius: 50%;
}

/* Punto interno */
.inner-dot {
    width: 10px;
    height: 10px;
    background-color: #f97015;
    border-radius: 50%;
}

/* Mejora tipografía */
.commitment-item span {
    font-size: 1rem;
    line-height: 1.6;
}


/* Cartel superior derecho */
.badge-top-end {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f97015;
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    z-index: 3;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Cartel inferior izquierdo */
.badge-bottom-start {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    z-index: 3;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



/* Productos */
.product-card {
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image-container {
    height: 200px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.text-orange {
    color: var(--primary-color);
}

.btn-orange {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(246, 140, 53, 0.4);
    border-radius: var(--border-radius);
}

.btn-orange:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 4px 10px rgba(229, 90, 43, 0.6);
    color: var(--white);
}


/* Servicios */
.service-card {
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    min-height: 100px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border: 2px solid #ffffff;
}

.bg-orange-1 {
    background-color: #ec4022;
}

.bg-orange-2 {
    background-color: #f68c35;
}

.service-card ul {
    text-align: left;
}

.service-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Proyectos */
.project-card {
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.1));
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-image-container {
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image-container img {
    transform: scale(1.1);
}

/* Nueva capa oscura al pasar el mouse */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Texto animado desde abajo */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/*contactanos */
.contact-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(249, 112, 21, 0.15);
    /* Fondo naranja suave */
    border: 2px solid #f97015;
    /* Borde naranja más fuerte */
    color: #f97015;
    /* Icono naranja */
    font-size: 18px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 100%;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
}

.contact-form .btn-primary {
    background-color: #f97015;
    border-color: #f97015;
    color: white;
    width: 100%;
    font-weight: 500;
}

.contact-form .btn-primary:hover {
    background-color: #e66000;
    border-color: #e66000;
    color: white;
}

@media (min-width: 992px) {
    .contact-form {
        width: 100%;
    }
}

/* Iconos de contacto: fondo naranja suave, contorno más intenso */
.contact-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(249, 112, 21, 0.15);
    border: 2px solid #f97015;
    color: #f97015;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Botón de WhatsApp: verde, ancho completo en contenedor, letras blancas */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
    width: 100%;
    font-weight: 500;
    border: none;
    align-self: flex-start;
    margin-top: 40px
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
}

/* Botón de envío del formulario: naranja, ancho completo, letras blancas */
.btn-submit {
    background-color: #f97015;
    color: white;
    width: 100%;
    font-weight: 500;
    border: none;
}

.btn-submit:hover {
    background-color: #e66000;
    color: white;
}

/* Para asegurar que ambos bloques (info y formulario) tengan igual ancho en desktop */
.equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info {
    margin-bottom: auto;
}

.contact-item {
    margin-bottom: 20px;
    /* Aumentamos la separación entre ítems */
}

.contact-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-col {
    flex: 1 1 0;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.text-orange {
    color: #f68c35 !important;
}

/* Footer */
.footer {
    background-color: var(--dark-gray, #1e1e1e);
    color: #ffffff;
}

.footer h6 {
    color: #ffffff;
}

.footer p,
.footer a,
.footer span {
    color: rgba(255, 255, 255, 0.75);
}

.footer a:hover {
    color: var(--primary-color, #f68c35) !important;
}

.footer .social-links a:hover {
    color: var(--primary-color, #f68c35) !important;
}

.footer i {
    font-size: 1.2rem;
}


/* Botones */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

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

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--text-dark);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Utilidades */
.shadow-sm {
    box-shadow: var(--shadow) !important;
}

.shadow {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-3 {
    border-radius: var(--border-radius) !important;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Estados de carga y mensajes */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Mejoras de accesibilidad */
.btn:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Optimizaciones para móviles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .product-card,
    .service-card,
    .value-card,
    .project-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

/* Efectos hover mejorados */
.card,
.product-card,
.service-card,
.value-card,
.project-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover,
.product-card:hover,
.service-card:hover,
.value-card:hover,
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradientes y efectos visuales */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mejoras para formularios */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* Badges y etiquetas */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Mejoras para imágenes */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-3 {
    border-radius: 0.5rem !important;
}

/* Espaciado consistente */
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }

.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }

/* Padding consistente */
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }