/* Tema de degradados para Marité */
/* Degradado principal del cuerpo */
body {
    background: linear-gradient(135deg, #fd8ca7 0%, #ffffff 20%, #ffffff 80%, #03bfba 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
}

/* Degradados en secciones */
.section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    margin: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-alt {
    background: linear-gradient(45deg, rgba(253, 140, 167, 0.1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(3, 191, 186, 0.1) 100%);
}

/* Header con degradado mejorado */
.header {
    background: linear-gradient(135deg, #fd8ca7 0%, #e91e63 50%, #03bfba 100%) !important;
    box-shadow: 0 4px 20px rgba(253, 140, 167, 0.3) !important;
}

/* Hero section con overlay degradado */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 140, 167, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(3, 191, 186, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Botones con degradado */
.cta-button {
    background: linear-gradient(135deg, #fd8ca7 0%, #03bfba 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #03bfba 0%, #fd8ca7 100%);
    transition: left 0.3s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span,
.cta-button i {
    position: relative;
    z-index: 2;
}

/* Cards con degradado sutil */
.service-card,
.category-item,
.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(253, 140, 167, 0.05) 50%, rgba(3, 191, 186, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 140, 167, 0.2);
}

.service-card:hover,
.category-item:hover,
.product-card:hover {
    background: linear-gradient(135deg, rgba(253, 140, 167, 0.1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(3, 191, 186, 0.1) 100%);
    border-color: rgba(3, 191, 186, 0.3);
}

/* Footer con degradado */
.footer {
    background: linear-gradient(135deg, #fd8ca7 0%, #333333 50%, #03bfba 100%) !important;
    color: white !important;
}

/* Degradado en elementos de navegación */
.nav-menu a.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(3, 191, 186, 0.3) 100%);
    border-radius: 10px;
}

/* Efectos de hover con degradado */
.feature-tag {
    background: linear-gradient(135deg, #fd8ca7 0%, #03bfba 100%);
    color: white;
}

/* Loading indicator con degradado */
.loading-dots div {
    background: linear-gradient(135deg, #fd8ca7 0%, #03bfba 100%);
}

/* Partículas del hero con colores degradados */
.particle {
    background: radial-gradient(circle, #fd8ca7 0%, transparent 70%);
}

.particle:nth-child(even) {
    background: radial-gradient(circle, #03bfba 0%, transparent 70%);
}

/* Scrollbar personalizada con degradado */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fd8ca7 0%, #03bfba 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #03bfba 0%, #fd8ca7 100%);
}

/* Overlay degradado para imágenes */
.product-card img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 140, 167, 0.1) 0%, rgba(3, 191, 186, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover img::after {
    opacity: 1;
}

/* Efectos adicionales */
.decorative-divider {
    background: linear-gradient(90deg, transparent 0%, #fd8ca7 20%, #03bfba 80%, transparent 100%);
    height: 2px;
    margin: 40px 0;
    border-radius: 1px;
}

.decorative-divider span {
    background: linear-gradient(135deg, #fd8ca7 0%, #03bfba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}