* {
    cursor: none !important;
}

body {
    user-select: none;
}

/* cuursor */
#cursor,
#cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}

#cursor {
    width: 8px;
    height: 8px;
    background-color: #00ccff;
    mix-blend-mode: difference;
    transition: background-color 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid #00ccff;
    background-color: rgba(0, 204, 255, 0.08);
    animation: pulse 2s infinite ease-in-out;
    transition: all 0.15s ease;
    z-index: 9998;
}

.ripple {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(255, 0, 127, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    animation: rippleEffect 0.6s ease-out forwards;
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(8);
        opacity: 0;
    }
}

#cursor.active {
    transform: translate(-50%, -50%) scale(2);
    background-color: #00ccff;
}

#cursor-follower.active {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 204, 255, 0.2);
    border-color: #00ccff;
}

#cursor-follower.dragging {
    transform: translate(-50%, -50%) scale(1.7) rotate(20deg);
    border-color: orange;
}


.card-hover-effect {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.5s ease;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #ffffff;
}

.card-hover-effect:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, #7f5af0 0%, #2cb5e8 100%);
    box-shadow: 0 12px 28px rgba(127, 90, 240, 0.35);
    color: #ffffff !important;
}

.card-hover-effect:hover h4,
.card-hover-effect:hover p {
    color: #ffffff !important;
    transition: color 0.4s ease;
}

.icona {
    transition: transform 0.3s ease;
}

.card:hover .icona {
    transform: translateX(10px);
}

.card-3d {
    perspective: 1000px;
}

.card-hover-effect {
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.card-hover-effect:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.layer-1 {
    transform: translateZ(0px);
}

.layer-2 {
    transform: translateZ(10px);
}

.layer-3 {
    transform: translateZ(20px);
}

.layer-4 {
    transform: translateZ(30px);
}

.layer-5 {
    transform: translateZ(40px);
}

.icono {
    transition: transform 0.3s ease;
}

.card:hover .icono {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.ratings {
    animation: pulse 1.5s ease-in-out infinite;
}

.btn-zooms {
    position: relative;
    display: inline-block;
}

.btn-porto {
    margin-top: 20px;
    margin-right: 10px;
    background-color: #374151;
    color: white;
    padding: 12px 28px;
    font-size: 18px;
    border: solid 2px white;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
    font-weight: bold
}

.btn-porto:hover {
    transform: scale(1.05);
}

.btn-more {
    margin-top: 20px;
    margin-left: 25px;
    background-color: white;
    color: #374151;
    padding: 12px 28px;
    font-size: 18px;
    border: solid 2px #374151;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.2s, background-color 0.3s, color 0.2s;
    font-weight: bold
}

.btn-more:hover {
    transform: scale(1.05);
    color: white;
    background-color: #374151;
}

.btn-seeporto {
    background-color: white;
    color: #374151;
    padding: 12px 28px;
    font-size: 18px;
    border: solid 2px #374151;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.2s, background-color 0.3s, color 0.2s;
    font-weight: bold
}

.btn-seeporto:hover {
    transform: scale(1.05);
    color: white;
    background-color: #374151;
}

.btn-wrapper {
    justify-content: center;
    position: relative;
    display: inline-block;
}

.btn-upwork {
    font-weight: bold;
    margin-top: 20px;
    margin-left: 10px;
    background-color: #00BFFF;
    color: white;
    padding: 12px 28px;
    font-size: 18px;
    border: solid 2px white;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-upwork:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00bfff77;
}

.btn-zum {
    position: relative;
    display: inline-block;
}

.btn-portss {
    background-color: #374151;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border: solid 2px white;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
    font-weight: bold;
    white-space: nowrap;
}

.btn-portss:hover {
    transform: scale(1.05);
}

.btn-headss {
    transition: transform 0.25s ease-in-out 50ms;
}

.btn-headss:hover {
    transform: rotate(-2deg) scale(1.06) translateY(-2px);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0.8;
    border-radius: 50%;
    animation: floatUp 1s linear forwards;
}

.particle.shape-circle {
    border-radius: 50%;
    background: white;
}

.particle.shape-square {
    border-radius: 2px;
    background: yellow;
}

.particle.shape-triangle {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid pink;
    background: none;
}

.particle.shape-star {
    background: gold;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%,
            79% 91%, 50% 70%, 21% 91%, 32% 57%,
            2% 35%, 39% 35%);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-60px) scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

.project figure {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.project figure img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.project figure:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.logo-wrapper {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.logo-img {
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {

    #cursor,
    #cursor-follower {
        width: 6px;
        height: 6px;
    }

    #cursor-follower {
        width: 30px;
        height: 30px;
    }

    .card-hover-effect {
        transform: scale(1);
    }

    .btn-porto,
    .btn-more,
    .btn-seeporto,
    .btn-upwork {
        font-size: 16px;
        padding: 10px 20px;
    }

    .card-3d {
        perspective: 800px;
    }

    .card-hover-effect:hover {
        transform: rotateY(5deg) rotateX(3deg);
    }

    .particles-container {
        display: none;
    }
}

@media (max-width: 480px) {

    #cursor,
    #cursor-follower {
        width: 5px;
        height: 5px;
    }

    .btn-porto,
    .btn-more,
    .btn-seeporto,
    .btn-upwork {
        font-size: 14px;
        padding: 8px 18px;
    }

    .project figure img {
        transform: scale(1.05);
    }
}

/* rawrrrrrrrrrrrrrrrrrrrr */

:root {
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 12px 45px rgba(59, 130, 246, 0.3);
    --radius-xl: 2rem;
    --transition-fast: 0.3s ease-in-out;
  }
  
  .pricing-wrapper {
    position: relative;
    padding-top: 2rem;
    z-index: 2;
  }
  
  .pricing.card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    overflow: hidden;
    position: relative;
  }
  
  .pricing.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
  }
  
  .pricing .card-body {
    padding: 2.75rem 2rem;
    position: relative;
    z-index: 1;
  }
  
  .pricing .card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, var(--blue), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pricing .prices {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
  }
  
  .icon-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #374151;
  }
  
  .icon-list i {
    color: var(--blue);
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }
  
  .btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue), #60a5fa);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    border-radius: 999px;
    transition: all 0.35s ease;
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    transform: scale(1);
  }
  
  .btn-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
  }
  
  .btn-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  }
  
  .btn-primary:active::after {
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: 0s;
  }

  .pricing-switcher-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .pricing-switcher-wrapper label {
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
  }
  
  .pricing-switchers {
    position: relative;
    width: 80px;
    height: 36px;
    background: #e5e7eb;
    border-radius: 50px;
    transition: background 0.3s;
    cursor: pointer;
  }
  
  .pricing-switchers::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 30px;
    height: 30px;
    background: var(--blue);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
  }
  
  .pricing-switchers.active::before {
    transform: translateX(44px);
  }
  
  .price-hide {
    opacity: 0;
    position: absolute;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  .price-show {
    opacity: 1;
    position: relative;
    transition: all 0.4s ease;
  }

  .pricing-featured {
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.35) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5) !important;
    transform: scale(1.05) !important;
    z-index: 3 !important;
  }
  
  .pricing-featured:hover {
    transform: scale(1.07) translateY(-12px) !important;
    box-shadow: 0 16px 50px rgba(59, 130, 246, 0.6) !important;
  }
  
  @media (max-width: 768px) {
    .pricing.card {
      margin-bottom: 2rem;
    }
  
    .pricing .card-body {
      padding: 2rem;
    }
  
    .pricing-switcher-wrapper {
      flex-direction: column;
    }
  }
  