.card {
        background: #222;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        text-align: center;
        max-width: 400px;
        width: 100%;
        animation: fadeIn 1s ease-in-out;
}

.introcard {
        margin: 20px 0;
padding: 20px;
background-color: #2e2e2e;
border-radius: 8px;
animation: fadeIn 1s ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
        background-color: #121212;
        color: #ffffff;
        font-family: 'MONTSERRAT', sans-serif;
        margin: 0;
        padding: 0;
        transition: background-color 0.3s, color 0.3s;
}

header { display: flex; justify-content: space-between; align-items: center; padding: 20px; background-color: #1e1e1e; flex-wrap: wrap; }

.logo { height: 50px; }

nav { width: 100%; display: flex; justify-content: center; }

nav ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }

nav ul li { margin: 10px 15px; }

nav ul li a { color: #ffffff; text-decoration: none; font-weight: bold; transition: color 0.3s; }

nav ul li a:hover { color: #8ecae6; }

button {
        color: #ffcc00;
        margin: 20px 0;
        padding: 20px;
        background-color: transparent;
        border: 2px solid #ffcc00;
        border-radius: 8px;
        animation: fadeIn 1s ease-in-out;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
}

button:active {
        box-shadow: 0 0 20px 5px #ffcc00, 0 0 40px 10px #ffcc00 inset;
        background-color: rgba(255, 204, 0, 0.1);
        color: #fff;
}

/*--Features Html--*/
        .services {
            text-align: left;
            padding: 0;
        }
        .service-item {
            background: #222;
            margin: 8px 0;
            padding: 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            font-size: 16px;
            transition: transform 0.2s ease-in-out;
        }
        .service-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }
        .service-item::before {
            content: "★";
            color: #ffb400;
            font-size: 18px;
            margin-right: 12px;
        }
        
        


.card {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #ffcc00;
    object-fit: cover;
}



h1, h2 {
    color: #ffcc00;
}

.bold-gold {  
    color: #ffcc00;  
}  

.texto{
        font-weight: bold;
        font-size: 200%;
        text-align: center;
}

.color span{
        color: darkorange;
}

.intro span {
    color: #ff6600;
    font-weight: bold;
}

.skills {
    list-style: none;
    padding: 0;
}

.skills li {
    display: inline-block;
    background: #333;
    padding: 8px 12px;
    margin: 5px;
    border-radius: 8px;
    font-size: 14px;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--Style Checkout--*/
