:root {
    --neon-green: #00ff41;
    --neon-green-dark: #008f1c;
    --neon-green-glow: rgba(0, 255, 65, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-section: #0d0d0d;
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--bg-dark) !important;
    box-shadow: 0 2px 20px rgba(0, 255, 65, 0.15);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding: 8px 0;
}

.navbar .nav-link {
    color: var(--text-white) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 60%;
}

.navbar .nav-link:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.navbar .navbar-brand img {
    height: 130px;
    transition: all 0.3s ease, filter 0.3s ease;
}

.navbar .navbar-brand img:hover {
    filter: brightness(0) saturate(100%) invert(59%) sepia(97%) saturate(1352%) hue-rotate(90deg) brightness(119%) contrast(119%);
}

.navbar.scrolled .navbar-brand img {
    height: 80px;
}

.btn-neon {
    text-decoration: none;
    background: transparent;
    color: var(--neon-green) !important;
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-neon:hover {
    background: var(--neon-green);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 25px var(--neon-green-glow), 0 0 50px var(--neon-green-glow);
    transform: translateY(-2px);
}

.btn-neon-outline {
    text-decoration: none;
    background: transparent;
    color: var(--neon-green) !important;
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-neon-outline:hover {
    background: var(--neon-green);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 25px var(--neon-green-glow), 0 0 50px var(--neon-green-glow);
    transform: translateY(-3px);
}

.btn-neon-solid {
    text-decoration: none;
    background: var(--neon-green);
    color: var(--bg-dark) !important;
    border: 2px solid var(--neon-green);
    border-radius: 6px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon-solid:hover {
    box-shadow: 0 0 25px var(--neon-green-glow), 0 0 50px var(--neon-green-glow);
    transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 75%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 255, 65, 0.15));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .highlight {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--neon-green);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ===== SECTION LAYOUT ===== */
.section-padding {
    padding: 100px 0;
}

.bg-section-alt {
    background: var(--bg-section);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.15), 0 0 20px rgba(0, 255, 65, 0.05);
}

.service-card .card-img-wrapper {
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

/*TODO(object-fit: cover)*/
.service-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.service-card .card-body {
    padding: 25px 20px;
}

.service-card .card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--neon-green);
}

.service-card .card-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card .btn-service {
    text-decoration: none;
    background: transparent;
    color: var(--neon-green);
    border: 1.5px solid var(--neon-green);
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.service-card .btn-service:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

/* ===== ABOUT SECTION ===== */
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-item:hover .about-icon {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--neon-green-glow);
}

.value-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== MAP SECTION ===== */
#map {
    height: 400px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
    z-index: 1;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.location-card {
    cursor: pointer;
}

.location-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.1);
}

.location-card .location-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.location-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.location-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== BRANDS SECTION ===== */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 80px;
}

.brand-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    transform: translateY(-3px);
}

.brand-item i {
    font-size: 2.5rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.brand-item:hover i {
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green-glow);
}

.brand-item span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-item:hover span {
    color: var(--neon-green);
}

.brand-logo-img {
    max-height: 40px;
    max-width: 100%;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo-img {
    filter: grayscale(0) brightness(1);
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(0, 255, 65, 0.15);
    padding: 60px 0 0;
}

.footer-logo {
    height: 90px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) saturate(100%) invert(59%) sepia(97%) saturate(1352%) hue-rotate(90deg) brightness(119%) contrast(119%);
}

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--neon-green);
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.footer p, .footer a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer a:hover {
    color: var(--neon-green);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(0, 255, 65, 0.2);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
    transform: translateY(-3px);
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer .contact-item i {
    color: var(--neon-green);
    width: 20px;
    text-align: center;
}

.footer .brand-tag {
    display: inline-block;
    background: rgba(0, 255, 65, 0.06);
    border: 1px solid rgba(0, 255, 65, 0.12);
    border-radius: 5px;
    padding: 4px 12px;
    margin: 3px;
    font-size: 0.8rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer .brand-tag:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: #555;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 70%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 70px 0;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .navbar .navbar-brand img {
        height: 80px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    #map {
        height: 300px;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer .contact-item {
        justify-content: center;
    }

    .footer .social-icons {
        text-align: center;
    }
}

/* ===== SUB-SERVICE PAGE ===== */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-section);
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.page-header .back-link:hover {
    color: var(--neon-green);
}

.subservice-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subservice-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

.subservice-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-green);
    transition: all 0.3s ease;
}

.subservice-card:hover .subservice-icon {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.subservice-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.subservice-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-subservice {
    text-decoration: none;
    background: transparent;
    color: var(--neon-green);
    border: 1.5px solid var(--neon-green);
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-subservice:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--text-white);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.modal-header .btn-close {
    filter: invert(1) brightness(200%);
    opacity: 0.8;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    font-size: 1.2rem;
}

.modal-body h6 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-green);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-body ul li::before {
    content: '\25B8';
    color: var(--neon-green);
    margin-right: 10px;
}

.service-media {
    margin: 25px 0;
    padding: 40px;
    border: 2px dashed rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-media i {
    font-size: 2rem;
    color: var(--neon-green);
    opacity: 0.4;
    margin-bottom: 10px;
}

.page-footer .footer-logo:hover {
    filter: brightness(0) saturate(100%) invert(59%) sepia(97%) saturate(1352%) hue-rotate(90deg) brightness(119%) contrast(119%);
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== REVIEWS CAROUSEL ===== */
.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.review-stars {
    color: var(--neon-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.review-author i {
    font-size: 2.2rem;
    color: var(--neon-green);
    opacity: 0.5;
}

.review-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.review-carousel {
    padding-bottom: 50px;
}

.review-carousel .carousel-indicators {
    bottom: 0;
}

.review-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    opacity: 0.3;
    border: none;
    margin: 0 5px;
}

.review-carousel .carousel-indicators button.active {
    opacity: 1;
}

.review-carousel .carousel-control-prev,
.review-carousel .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.review-carousel .carousel-control-prev:hover,
.review-carousel .carousel-control-next:hover {
    background: rgba(0, 255, 65, 0.15);
    opacity: 1;
}

.review-carousel .carousel-control-prev {
    left: -60px;
}

.review-carousel .carousel-control-next {
    right: -60px;
}

@media (max-width: 767px) {
    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        display: none;
    }
    
    .review-card {
        padding: 25px 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .service-card .card-img-wrapper {
        height: 160px;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        border: 1px solid rgba(0, 255, 65, 0.15);
    }
}

/* ===== SERVICIOS PAGE ===== */
#servicios-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: var(--bg-dark);
}

.servicios-page-header {
    text-align: center;
    padding: 20px 0 10px;
}

.servicios-page-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.servicios-page-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.servicios-categoria {
    margin-bottom: 50px;
}

.servicios-categoria h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.15);
    position: relative;
}

.servicios-categoria h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.servicio-mini-link {
    text-decoration: none;
    display: block;
}

.servicio-mini-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.servicio-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

.servicio-mini-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon-green);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.servicio-mini-card:hover .servicio-mini-icon {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.servicio-mini-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.servicio-mini-card:hover .servicio-mini-name {
    color: var(--neon-green);
}

@media (max-width: 767px) {
    #servicios-page {
        padding: 120px 0 60px;
    }

    .servicios-page-header h2 {
        font-size: 1.8rem;
    }

    .servicios-categoria h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .servicios-categoria h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .servicio-mini-card {
        padding: 20px 10px;
    }

    .servicio-mini-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .servicio-mini-name {
        font-size: 0.8rem;
    }
}
