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

        :root {
    --bg-color: #08086f;           
    --second-bg-color: #2825dc;    
    --main-color: #00abf0;         
    --text-color: #ededed;         
}

        body {
    
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, var(--bg-color) 0%, var(--second-bg-color) 100%);
            min-height: 100vh;
            color: var(--text-color);
            position: relative;
            overflow-x: hidden;
        }

        body::before {
        background-color: rgb(117, 117, 243);
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(7, 3, 76, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(24, 14, 213, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .home {
            
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
        }

        h1 {
            text-align: center;
            font-size: 4rem;
            color: var(--main-color);
            text-shadow: 0 0 20px rgba(16, 6, 153, 0.5);
            margin-bottom: 60px;
            letter-spacing: 3px;
            font-weight: 700;
            animation: glow 2s ease-in-out infinite alternate;
            position: relative;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--main-color), transparent);
            border-radius: 2px;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(53, 8, 166, 0.5);
            }
            to {
                text-shadow: 0 0 30px rgba(17, 52, 248, 0.8), 0 0 40px rgba(0, 171, 240, 0.3);
            }
        }

        .Tarjetas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .Tarjetas > div {
            background: rgba(24, 11, 162, 0.2);
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(5, 9, 85, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .Tarjetas > div::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(36, 9, 157, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .Tarjetas > div:hover::before {
            left: 100%;
        }

        .Tarjetas > div:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 30px 60px rgba(0, 171, 240, 0.2);
            border-color: var(--main-color);
            background: rgba(24, 11, 162, 0.3);
        }

        .Tarjetas h2 {
            font-size: 2.2rem;
            color: var(--main-color);
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            position: relative;
        }

        .Tarjetas img {
            width: 100%;
            max-width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 15px;
            margin: 20px auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 2px solid rgba(28, 8, 129, 0.3);
        }

        .Tarjetas > div:hover img {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(10, 16, 187, 0.4);
            border-color: var(--main-color);
        }

        .service-description {
            color: var(--text-color);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-top: 20px;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .Tarjetas > div:hover .service-description {
            opacity: 1;
        }

        .content-home {
            background: rgba(6, 16, 100, 0.4);
            border-radius: 25px;
            padding: 50px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(40, 11, 157, 0.2);
            position: relative;
            overflow: hidden;
        }

        .content-home::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(28, 3, 103, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

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

        .content-home h3 {
            font-size: 2.5rem;
            color: var(--main-color);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .content-home p {
            font-size: 1.3rem;
            color: var(--text-color);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            opacity: 0.95;
        }

        /* Specific service styling */
        .lavado {
            border-left: 5px solid var(--main-color);
        }

        .aceite {
            border-top: 5px solid var(--main-color);
        }

        .llantas {
            border-right: 5px solid var(--main-color);
        }

        /* Floating elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(7, 24, 155, 0.1);
            animation: float 8s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 90%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.8;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.8rem;
                margin-bottom: 40px;
            }
            
            .Tarjetas {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .Tarjetas > div {
                padding: 25px;
            }
            
            .content-home {
                padding: 35px 25px;
            }
            
            .content-home h3 {
                font-size: 2rem;
            }
            
            .content-home p {
                font-size: 1.1rem;
            }
        }

        /* Scroll animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .Tarjetas > div {
            animation: fadeInUp 0.8s ease-out;
        }

        .lavado {
            animation-delay: 0.1s;
        }

        .aceite {
            animation-delay: 0.3s;
        }

        .llantas {
            animation-delay: 0.5s;
        }

        .content-home {
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .mapa-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-volver {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2c3e50;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-volver:hover {
  background-color: #1abc9c;
}
