/* =============================================
   SERIGRAFÍA UTOPIA - PREMIUM DESIGN OVERRIDES
   Green accent (#10b981) + Dark elegance
   ============================================= */

/* ---- Smooth global rendering ---- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #fafafa;
}

/* ---- PREMIUM HEADER ---- */
.header {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.nav {
    height: 76px;
}

.logo-img {
    height: 46px;
    transition: all 0.35s ease;
}

.logo-text {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu a {
    font-size: 0.8125rem !important;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399) !important;
    border-radius: 1px;
}

/* Personaliza - Disabled State */
.nav-menu a.nav-personaliza.nav-personaliza-disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280) !important;
    color: #d1d5db !important;
    -webkit-text-fill-color: #d1d5db !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    opacity: 0.6;
    pointer-events: auto;
}

.nav-menu a.nav-personaliza.nav-personaliza-disabled:hover {
    background: linear-gradient(135deg, #9ca3af, #6b7280) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Personaliza - Enabled State */
.nav-menu a.nav-personaliza.nav-personaliza-enabled {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}

.nav-menu a.nav-personaliza.nav-personaliza-enabled:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
}

/* ---- PREMIUM HERO SECTION ---- */
.hero-section {
    height: 62vh;
    min-height: 500px;
    max-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(16,185,129,0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-section .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.75) 0%,
        rgba(10,10,10,0.50) 40%,
        rgba(10,10,10,0.65) 100%
    ) !important;
}

.hero-section .hero-content {
    padding-top: 50px;
    max-width: 850px;
}

.hero-section .hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.05 !important;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-section .hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem) !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px;
    line-height: 1.8 !important;
    opacity: 0.85;
    max-width: 650px;
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.btn-outline-white {
    background: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    padding: 14px 44px !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    font-weight: 600;
    border-radius: 0 !important;
    transition: all 0.4s ease;
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-outline-white:hover {
    color: #0a0a0a !important;
    border-color: #fff !important;
}

.btn-outline-white:hover::before {
    transform: translateY(0);
}

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

/* Hero floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(16, 185, 129, 0.35);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ---- PREMIUM TECHNIQUE CARDS (HOME) ---- */
.tecnicas-home-section {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%) !important;
    padding: 30px 0 50px !important;
    position: relative;
}

.tecnicas-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.3), transparent);
}

.tecnica-home-card {
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden !important;
    position: relative;
}

.tecnica-home-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.tecnica-home-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
    border-color: transparent !important;
}

.tecnica-home-card:hover::after {
    transform: scaleX(1);
}

.tecnica-home-card .tecnica-title-top,
.tecnica-home-card .tecnica-title-bottom {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #0a0a0a !important;
    padding: 16px 8px !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tecnica-home-image img {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.tecnica-home-card:hover .tecnica-home-image img {
    transform: scale(1.08);
}

/* ---- PREMIUM TECNICAS PAGE ---- */
.tecnicas-page-section {
    padding: 120px 0 80px !important;
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 50%, #f7f8fa 100%);
}

.tecnica-full-card {
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 28px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden;
}

.tecnica-full-card:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.12) !important;
    transform: translateY(-6px) !important;
}

.tecnica-full-image img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tecnica-full-card:hover .tecnica-full-image img {
    transform: scale(1.05);
}

.tecnica-full-content h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
}

.tecnica-full-icon {
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.05)) !important;
    border: 1px solid rgba(16,185,129,0.2) !important;
}

.tecnica-full-icon i {
    color: #059669 !important;
}

/* ---- PREMIUM CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 90px 0 !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(16,185,129,0.04) 0%, transparent 60%);
    animation: subtleRotate 30s linear infinite;
}

@keyframes subtleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-content p {
    font-weight: 300 !important;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
}

.cta-buttons .btn-primary:hover {
    background: #34d399 !important;
    border-color: #34d399 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.3);
}

/* ---- PREMIUM PAGE HEADERS ---- */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111 100%) !important;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(16,185,129,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(16,185,129,0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-header-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111 100%) !important;
}

.page-hero-tag {
    background: rgba(16,185,129,0.15) !important;
    color: #10b981 !important;
    border-color: rgba(16,185,129,0.3) !important;
}

/* ---- PREMIUM ABOUT PAGE ---- */
.about-section {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.about-intro-text h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(2rem, 4vw, 2.8rem) !important;
}

.text-olive {
    color: #059669 !important;
}

.section-tag {
    color: #059669 !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
}

.about-feature {
    border-left-color: #10b981 !important;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%) !important;
}

.about-values {
    background: linear-gradient(135deg, #f7f8fa 0%, #f0f1f3 100%) !important;
    border-radius: 28px !important;
}

.value-icon {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.value-icon i {
    color: #059669 !important;
}

.value-card:hover .value-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.2);
}

/* ---- PREMIUM GALLERY ---- */
.gallery-section {
    background: linear-gradient(180deg, #f3f4f6 0%, #f7f8fa 100%) !important;
}

.gallery-item {
    border-radius: 12px !important;
    transition: all 0.4s ease !important;
}

.gallery-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.gallery-tag {
    background: #10b981 !important;
    color: #ffffff !important;
    font-weight: 600;
}

.gallery-zoom:hover {
    background: #10b981 !important;
    color: #ffffff !important;
}

.gallery-modal-close:hover {
    color: #10b981 !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0a0a0a !important;
    border-color: #0a0a0a !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ---- PREMIUM CONTACT PAGE ---- */
.contact-section {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.contact-form-wrapper h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 2rem !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1) !important;
}

.contact-info-card {
    background: linear-gradient(135deg, #f7f8fa, #f0f1f3) !important;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-icon {
    background: linear-gradient(135deg, #0a0a0a, #2d2d2d) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ---- PREMIUM PRODUCTS ---- */
.productos-section {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 50%, #f7f8fa 100%);
}

.producto-card {
    border: 1px solid rgba(0,0,0,0.04) !important;
    border-radius: 20px !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.producto-card::before {
    background: linear-gradient(90deg, #10b981, #34d399) !important;
}

.producto-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

.producto-card-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* ---- PREMIUM FOOTER ---- */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%) !important;
    padding-top: 50px !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.4), transparent);
}

.footer-logo span,
.footer-logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.footer-section h4 {
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    margin-bottom: 25px !important;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #10b981;
}

.footer-links a:hover {
    color: #10b981 !important;
    padding-left: 8px;
}

.footer-contact-list i {
    color: #10b981 !important;
}

.footer-social a {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.footer-brands-title {
    color: #10b981 !important;
    font-weight: 600 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

/* ---- PREMIUM BUTTONS ---- */
.btn-primary {
    position: relative;
    overflow: hidden;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* ---- PREMIUM WHATSAPP FLOAT ---- */
.whatsapp-float {
    box-shadow: 0 4px 25px rgba(16, 185, 129, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px) !important;
    box-shadow: 0 8px 35px rgba(16, 185, 129, 0.5) !important;
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-element.reveal-left {
    transform: translateX(-40px) translateY(0);
}
.reveal-element.reveal-left.revealed {
    transform: translateX(0) translateY(0);
}

.reveal-element.reveal-right {
    transform: translateX(40px) translateY(0);
}
.reveal-element.reveal-right.revealed {
    transform: translateX(0) translateY(0);
}

.reveal-element.reveal-scale {
    transform: scale(0.92);
}
.reveal-element.reveal-scale.revealed {
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s !important; }
.reveal-delay-2 { transition-delay: 0.2s !important; }
.reveal-delay-3 { transition-delay: 0.3s !important; }
.reveal-delay-4 { transition-delay: 0.4s !important; }
.reveal-delay-5 { transition-delay: 0.5s !important; }

/* ---- PREMIUM SECTION HEADERS ---- */
.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

/* ---- PREMIUM COOKIE CONSENT ---- */
.cookie-consent {
    background: rgba(10,10,10,0.95) !important;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(16,185,129,0.2);
}

.btn-cookie-accept {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    font-weight: 700 !important;
}

.btn-cookie-accept:hover {
    background: #34d399 !important;
    border-color: #34d399 !important;
}

/* ---- SIDEBAR PREMIUM ---- */
.sidebar-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.sidebar-cta .btn-primary {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: #ffffff !important;
}

.sidebar-cta .btn-primary:hover {
    background: #34d399 !important;
    border-color: #34d399 !important;
}

.other-tecnicas-list a:hover {
    background: #0a0a0a !important;
    color: #fff !important;
}

.other-tecnicas-list a:hover i {
    color: #10b981 !important;
}

/* ---- TECNICA DETAIL PREMIUM ---- */
.tecnica-content-block {
    border: none !important;
    background: #ffffff;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    padding: 40px 45px !important;
    position: relative;
    overflow: hidden;
}

.tecnica-content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10b981, #34d399);
}

.tecnica-content-block h3 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.8rem;
    color: #0a0a0a;
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(16,185,129,0.2);
    padding-bottom: 10px;
    display: inline-block;
}

.tecnica-content-block h3:first-child {
    margin-top: 0;
}

.tecnica-content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.tecnica-content-block p strong {
    color: #0a0a0a;
}

.tecnica-seccion-card {
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 20px !important;
    transition: all 0.35s ease !important;
}

.tecnica-seccion-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.tecnica-seccion-card h3::before {
    background: #10b981 !important;
}

.tecnica-header-icon-small {
    background: rgba(16,185,129,0.15) !important;
    border-color: rgba(16,185,129,0.3) !important;
}

.tecnica-header-icon-small i {
    color: #10b981 !important;
}

.page-header-tecnica .tecnica-header-icon {
    border-color: rgba(16,185,129,0.4) !important;
    background: rgba(16,185,129,0.1) !important;
}

.tecnica-header-icon i {
    color: #10b981 !important;
}

/* ---- ERROR PAGE PREMIUM ---- */
.error-content h1 {
    color: #10b981 !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* ---- HOME HEADER OVERRIDE ---- */
.home-page .header {
    background: rgba(10, 10, 10, 0.55) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-page .header.scrolled {
    background: rgba(10, 10, 10, 0.92) !important;
}

.home-page .header .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ---- ACCENT LINE DIVIDER ---- */
.accent-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #34d399);
    margin: 15px auto 25px;
}

/* ---- ALERT STYLES PREMIUM ---- */
.alert-success {
    background: #ecfdf5 !important;
    color: #065f46 !important;
    border: 1px solid #a7f3d0 !important;
    border-radius: 12px !important;
}

.alert-error {
    background: #fef2f2 !important;
    color: #991b1b !important;
    border: 1px solid #fecaca !important;
    border-radius: 12px !important;
}

/* ---- INFO BOX PREMIUM ---- */
.info-box {
    border-left-color: #10b981 !important;
}

/* ---- BREADCRUMB ---- */
.breadcrumb a:hover {
    color: #059669 !important;
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-menu {
        background: #fff !important;
        box-shadow: -8px 0 40px rgba(0,0,0,0.15) !important;
    }

    .nav-menu a {
        -webkit-text-fill-color: initial !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        color: #0a0a0a !important;
    }

    .nav-menu a.nav-personaliza,
    .nav-menu a.nav-personaliza.nav-personaliza-disabled {
        -webkit-text-fill-color: #d1d5db !important;
    }

    .nav-menu a.nav-personaliza.nav-personaliza-enabled {
        -webkit-text-fill-color: white !important;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    }

    .hero-section {
        height: 55vh !important;
        min-height: 400px !important;
    }

    .tecnicas-home-section {
        padding: 20px 0 35px !important;
    }

    .home-page .header .nav-menu.active {
        background: #ffffff !important;
    }

    .home-page .header .nav-menu.active a {
        -webkit-text-fill-color: initial !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        color: #0a0a0a !important;
    }

    .cta-section {
        padding: 60px 0 !important;
    }

    .footer-section h4::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-section .hero-subtitle {
        font-size: 0.9rem !important;
    }
}
