* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
}

:root {
    /* Primary Color Palette */
    --hot-fuchsia: #F8004D;
    --wheat: #F3D8AF;
    --cotton-rose: #EBBDBF;
    --sunflower-gold: #E9B849;
    --espresso: #4A2114;
    --crimson-violet: #681B3A;
    --almond-cream: #F4E3D4;
    --carmine: #BA143A;
    --space-indigo: #1B1C4B;
    --toffee-brown: #915D3C;
}

body {
    background-color: #fff; 
}

.projetos {
    padding: 80px 5%;
}

.projetos h2 {
    text-align: center;
    font-size: 40px;
    color: var(--espresso);
    margin-bottom: 50px;
    font-weight: 700;
}

.mySwiper {
    padding: 20px 10px 60px 10px !important;
}

.projeto-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--almond-cream); 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.projeto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(104, 27, 58, 0.1);
    border-color: var(--crimson-violet);
}

.card-image {
    position: relative;
    height: 220px;
    background: var(--almond-cream);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projeto-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 227, 212, 0.95); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projeto-card:hover .card-overlay {
    opacity: 1;
}

.projeto-links {
    display: flex;
    gap: 15px;
}

.projeto-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--hot-fuchsia), var(--carmine)); 
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(248, 0, 77, 0.3);
}

.projeto-links a:hover {
    background: linear-gradient(135deg, #ff1a66, #d41f4e);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(248, 0, 77, 0.5);
}

.card-content {
    padding: 25px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.numero {
    font-size: 14px;
    font-weight: bold;
    color: var(--sunflower-gold); 
}

.nome {
    font-size: 20px;
    color: var(--espresso); 
    font-weight: 600;
}

.projeto-techs {
    display: flex;
    gap: 12px;
}

.projeto-techs i {
    font-size: 18px;
    color: var(--toffee-brown); 
    transition: color 0.3s;
}

.projeto-card:hover .projeto-techs i {
    color: var(--crimson-violet);
}

.swiper-pagination-bullet {
    background: var(--almond-cream) !important;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--hot-fuchsia) !important; 
    width: 20px !important;
    border-radius: 4px !important;
}