/* CSS Minified Update - Manual override for menu consistency */
:root {
    --primary-color: #84cc16;
    --primary-hover: #65a30d;
    --secondary-color: #ffffff;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --bg-card: #1f2937;
    --bg-glass: rgba(31, 41, 55, 0.7);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-bright: rgba(132, 204, 22, 0.3);
    --font-header: 'Outfit', sans-serif;
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(132, 204, 22, 0.15)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease
}

.seo-link {
    color: #FF5F1F !important;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.seo-link:hover {
    color: #39FF14 !important;
    background-color: rgba(17, 24, 39, 0.8);
    border-radius: 4px;
    padding: 0 4px;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem
}

.mt-2 {
    margin-top: 0.5rem
}

.mt-3 {
    margin-top: 1rem
}

.mt-4 {
    margin-top: 2rem
}

.mt-5 {
    margin-top: 3rem
}

.mb-2 {
    margin-bottom: 0.5rem
}

.mb-3 {
    margin-bottom: 1rem
}

.mb-4 {
    margin-bottom: 2rem
}

.mb-5 {
    margin-bottom: 3rem
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2
}

.p-1 {
    padding: 0.5rem
}

.p-2 {
    padding: 1rem
}

.p-3 {
    padding: 1.5rem
}

.p-4 {
    padding: 2rem
}

.p-5 {
    padding: 3rem
}

.px-1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-4 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-5 {
    padding-left: 3rem;
    padding-right: 3rem
}

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

h1 {
    font-size: clamp(2.2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800
}

h2 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem);
    font-weight: 700
}

h3 {
    font-size: clamp(1.5rem, 3vw + 1rem, 2.2rem);
    font-weight: 600;
    color: var(--primary-color)
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft)
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-header);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #000;
    box-shadow: var(--shadow-neon)
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(132, 204, 22, 0.25)
}

@media (max-width: 768px) {

    .btn,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation
    }

    .btn {
        padding: 0.8rem 1.5rem
    }
}

.btn-outline {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent
}

.top-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.9rem
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.contact-info a {
    margin-right: 1.5rem;
    color: var(--text-muted)
}

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

.panic-card {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease
}

.panic-card i {
    color: #dc2626
}

.panic-card:hover {
    transform: translateY(-5px);
    background: rgba(220, 38, 38, 0.15)
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem
}

.highlight-link {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-weight: bold
}

.main-header {
    background-color: var(--bg-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1)
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1
}

.logo-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.5px
}

.logo-brand {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.main-nav ul {
    display: flex;
    gap: 0.8rem;
    align-items: center
}

.main-nav a {
    font-weight: 600;
    font-size: 0.72rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color)
}

.main-nav .btn-nav {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease
}

.main-nav .btn-nav:hover {
    background-color: #a3e635;
    color: #000000
}

.main-nav .btn-nav.active {
    color: var(--bg-darker) !important;
    background-color: var(--primary-color)
}

.has-dropdown {
    position: relative
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    min-width: 200px;
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color)
}

.has-dropdown:hover .dropdown {
    display: flex
}

.dropdown li {
    margin-bottom: 0.5rem
}

.dropdown a {
    text-transform: none;
    font-size: 0.9rem
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer
}

.breadcrumb-section {
    background-color: var(--bg-darker);
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-muted)
}

.breadcrumb-section span {
    color: var(--primary-color)
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.7) 50%, rgba(17, 24, 39, 1) 100%);
    z-index: 2
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 4rem;
    display: flex;
    justify-content: center
}

.hero-text-box {
    text-align: center;
    max-width: 800px
}

.badge-hero {
    display: inline-block;
    background-color: rgba(132, 204, 22, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(132, 204, 22, 0.2);
    animation: pulse-green 2s infinite
}

.hero-text-box h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff
}

.text-gradient {
    background: linear-gradient(to right, #84cc16, #39FF14);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(132, 204, 22, 0.3)
}

.hero-text-box .lead {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    line-height: 1.6
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.4)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(132, 204, 22, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0)
    }
}

.hero-services-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s ease
}

.service-tag:hover {
    background: rgba(132, 204, 22, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px)
}

@media (max-width: 768px) {
    .hero-text-box h1 {
        font-size: 2.5rem
    }

    .hero-text-box .lead {
        font-size: 1.1rem
    }

    .min-height {
        min-height: 70vh
    }
}

.cta-banner {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    padding: 3.5rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    border-left: 6px solid var(--primary-color);
    margin: 4rem auto;
    box-shadow: var(--shadow-soft)
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.phone-big {
    font-family: var(--font-header);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    letter-spacing: -1px
}

.value-points-section {
    padding: var(--spacing-lg) 0
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem
}

.fancy-list li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start
}

.fancy-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem
}

.points-images {
    position: relative
}

.img-main {
    width: 90%;
    border-radius: 8px;
    border: 2px solid var(--primary-color)
}

.img-secondary {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 50%;
    border-radius: 8px;
    border: 4px solid var(--bg-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5)
}

.bg-darker {
    background-color: var(--bg-darker)
}

.services-detailed-section {
    padding: var(--spacing-lg) 0
}

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

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1)
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-soft), var(--shadow-neon)
}

.service-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem
}

.economic-section {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)), url('../assets/cerrajero-en-fuenlabrada.jpg');
    background-size: cover;
    background-attachment: fixed
}

.economic-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem
}

.summary-24h-section {
    padding: var(--spacing-lg) 0
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.3rem
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold
}

.summary-images {
    position: relative
}