@import url('https://fonts.googleapis.com/css2?family=Kablammo&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@700&family=Anton&display=swap');

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

        body {
            font-family: 'Arial', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Logo Header */
.logo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
    z-index: 1000;
    display: flex;
    justify-content: flex-start; /* A la izquierda */
    align-items: center;
}

.logo-container {
    animation: sway 5s ease-in-out infinite;
}

.logo-image {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(0px);
    }
    75% {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 60px;
    }
}

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=1920&q=80');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

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

        .hero-scissors {
            width: 120px;
            height: 120px;
            margin-bottom: 30px;
            display: inline-block;
            animation: floatScissors 4s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
        }

        .hero-scissors svg {
            width: 100%;
            height: 100%;
        }

        @keyframes floatScissors {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-15px) rotate(-8deg);
            }
            50% {
                transform: translateY(-25px) rotate(0deg);
            }
            75% {
                transform: translateY(-15px) rotate(8deg);
            }
        }
h1 {
    font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0px #d4af37,
        6px 6px 0px rgba(0,0,0,0.3);
    -webkit-text-stroke: 2px #d4af37;
    paint-order: stroke fill;
}

h1 .highlight {
    color: #d4af37;
    -webkit-text-stroke: 2px #ffffff;
}

    .subtitle {
    font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 60px;
    opacity: 0.9;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.tagline .highlight {
    color: #d4af37;
}

.tagline-sub {
    font-family: 'Bebas Neue', 'Anton', 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 80px;
    letter-spacing: 3px;
    font-weight: 400;
}

        /* Section Headers */
        .section-header {
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            text-transform: uppercase;
            margin: 80px 0 60px;
            position: relative;
            letter-spacing: 2px;
        }

        .section-header .highlight {
            color: #d4af37;
        }

        .section-header::before,
        .section-header::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 150px;
            height: 2px;
            background: linear-gradient(to right, transparent, #d4af37, transparent);
        }

        .section-header::before {
            right: calc(50% + 200px);
        }

        .section-header::after {
            left: calc(50% + 200px);
        }

        /* Services Section */
        .services {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .service-card {
            position: relative;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            background: #1a1a1a;
            border: 2px solid #333;
            background-size: cover;
            background-position: center;
        }

        .service-card:nth-child(1) {
            background-image: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?w=800&q=80');
        }

        .service-card:nth-child(2) {
            background-image: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?w=800&q=80');
        }

        .service-card:nth-child(3) {
            background-image: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=800&q=80');
        }

        .service-card:nth-child(4) {
            background-image: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=800&q=80');
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #d4af37;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            z-index: 1;
        }

        .service-title {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 2;
            font-size: 1.8rem;
            font-weight: 700;
            font-style: italic;
        }

        /* Pricing Section */
        .pricing {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .pricing-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border: 2px solid #d4af37;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .pricing-type {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pricing-detail {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 20px;
        }

        .price {
            font-size: 4rem;
            font-weight: 900;
            color: #d4af37;
            margin: 20px 0;
        }

        .price sup {
            font-size: 2rem;
        }

        /* Before & After Section */
        .before-after {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .before-after-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        /* Before/After Comparison Slider */
        .compare {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            border: 2px solid #d4af37;
            cursor: ew-resize;
            user-select: none;
        }

        .compare img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .compare .before {
            z-index: 2;
            clip-path: inset(0 50% 0 0);
        }

        .compare .after {
            z-index: 1;
        }

        .compare .slider {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: #d4af37;
            z-index: 3;
            cursor: ew-resize;
        }

        
.compare .slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #d4af37;
    background-image: url('clipper.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px 26px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
    transform-origin: center center;
    animation: barberHand 1.8s cubic-bezier(.4,0,.2,1) infinite;
    animation: clipperHandMove 2.2s ease-in-out infinite;
}


@keyframes clipperHandMove {
    0% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-48%) rotate(-8deg) scale(1.03);
    }
    40% {
        transform: translateY(-52%) rotate(6deg) scale(0.98);
    }
    60% {
        transform: translateY(-49%) rotate(-6deg) scale(1.02);
    }
    80% {
        transform: translateY(-51%) rotate(5deg) scale(1);
    }
    100% {
        transform: translateY(-50%) rotate(0deg) scale(1);
    }
}
 
.compare .slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    width: 50px;
    height: 50px;
    background-color: #d4af37;
    background-image: url('clipper.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 38px 38px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212,175,55,0.6);

    transform-origin: center center;
    animation: barberHand 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes barberHand {
    0% { transform: translateY(-50%) rotate(0deg); }
    10% { transform: translateY(-49%) rotate(-12deg); }
    20% { transform: translateY(-52%) rotate(9deg); }
    30% { transform: translateY(-48%) rotate(-8deg); }
    40% { transform: translateY(-51%) rotate(7deg); }
    50% { transform: translateY(-50%) rotate(-6deg); }
    60% { transform: translateY(-52%) rotate(5deg); }
    70% { transform: translateY(-49%) rotate(-4deg); }
    80% { transform: translateY(-51%) rotate(3deg); }
    90% { transform: translateY(-50%) rotate(-2deg); }
    100% { transform: translateY(-50%) rotate(0deg); }
}


.compare .slider::after {
    content: '';
}

@keyframes spinnerPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(212,175,55,0.5);
        transform: translateY(-50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(212,175,55,0.9);
        transform: translateY(-50%) scale(1.1);
    }
}

        .compare-label {
            position: absolute;
            top: 20px;
            padding: 8px 16px;
            background: rgba(0,0,0,0.7);
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            z-index: 4;
            letter-spacing: 1px;
        }

        .compare-label.before-label {
            left: 20px;
            color: #d4af37;
            font-family: 'Kablammo', cursive;

        }

        .compare-label

        /* Contact Section */
        .contact {
            padding: 60px 20px 100px;
            text-align: center;
        }

.contact-form {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.contact {
    display: block;
}
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: #d4af37;
            color: #0a0a0a;
        }

        .btn-primary:hover {
            background: #f0c674;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-3px);
        }

        /* Contact Form */
        .contact-form {
            margin-top: 50px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        input, textarea {
            width: 100%;
            padding: 18px;
            background: #1a1a1a;
            border: 2px solid #333;
            border-radius: 5px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #d4af37;
        }

        input::placeholder, textarea::placeholder {
            color: #666;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 20px;
            background: #d4af37;
            color: #0a0a0a;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: #f0c674;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            text-align: center;
            padding: 40px 20px;
            border-top: 2px solid #d4af37;
        }

        footer p {
            opacity: 0.7;
            margin: 10px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-header::before,
            .section-header::after {
                display: none;
            }

            .before-after-container {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px; /* Arriba del botón de WhatsApp */
    right: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-instagram 2s infinite;
}

.instagram-float:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.6);
}

@keyframes pulse-instagram {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(225, 48, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
    }
}


/* Label transition */
.compare-label {
    transition: opacity 0.2s ease;
}

.trybe-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 190px; /* Arriba de Instagram */
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-trybe 2s infinite;
    text-decoration: none;
}

.trybe-float:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.6);
}

@keyframes pulse-trybe {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px 8px rgba(102, 126, 234, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }
}

/* ===== PREMIUM CLEAN SPACING ===== */

.before-after {
    padding-top: 120px;
    padding-bottom: 120px;
}

.before-after-container {
    gap: 50px;
}

/* ===== PREMIUM CARD LOOK ===== */

.compare {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: all 0.35s ease;
}

.compare:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(212,175,55,0.25);
    border-color: gold;
}



/* ===== AFTER LABEL FIRE ===== */
.compare-label.after-label {
    font-family: 'Kablammo', sans-serif;
    background: rgba(0,0,0,0.7);
    color: transparent;
    -webkit-text-fill-color: transparent;
    border: none !important;
    text-shadow: none !important;
    animation: none !important;
    right: 20px;
    left: auto;
}

.compare-label.after-label span {
    background: linear-gradient(180deg, #fff700 0%, #ff8c00 50%, #ff2200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: softFlame 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes softFlame {
    0%   { 
        filter: drop-shadow(0 0 3px #ff4400) drop-shadow(0 0 8px #ff6600);
        transform: scaleY(1) translateY(0px);
        opacity: 1;
    }
    25%  { 
        filter: drop-shadow(0 0 6px #ff8800) drop-shadow(0 0 14px #ffaa00);
        transform: scaleY(1.02) translateY(-1px);
        opacity: 0.85;
    }
    50%  { 
        filter: drop-shadow(0 0 10px #ffcc00) drop-shadow(0 0 20px #ff8800);
        transform: scaleY(0.98) translateY(1px);
        opacity: 1;
    }
    75%  { 
        filter: drop-shadow(0 0 5px #ff5500) drop-shadow(0 0 12px #ff7700);
        transform: scaleY(1.01) translateY(-0.5px);
        opacity: 0.9;
    }
    100% { 
        filter: drop-shadow(0 0 3px #ff4400) drop-shadow(0 0 8px #ff6600);
        transform: scaleY(1) translateY(0px);
        opacity: 1;
    }
}
/* Fix trybe button so fire filter doesn't affect it */
.trybe-float {
    isolation: isolate;
}
