* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 40%), #000;
    color: #fff;
}

/* CONTENEDOR GENERAL */
.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    gap: 60px;
}

.left {
    max-width: 500px;
}

.left h1 {
    font-size: 58px;
    line-height: 1.1;
}

.left span {
    color: #d4af37;
}

.left p {
    margin: 20px 0;
    color: #bbb;
}

.box {
    border: 1px solid #d4af37;
    padding: 14px 18px;
    color: #d4af37;
    border-radius: 8px;
    background: rgba(212,175,55,0.05);
}

/* IMAGEN PLACEHOLDER */
.img-placeholder {
    width: 420px;
    height: 300px;
    background: #111;
    border-radius: 10px;
}

/* SERVICIOS */
.services h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.services h2 span {
    color: #d4af37;
}

.cards {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    width: 250px;
    background: rgba(20,20,20,0.9);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: 0.3s;
}

.card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d4af37;

    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

.card h3 {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #bbb;
    font-weight: 300; /* CLAVE */
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid #d4af37;
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}


/* FEATURES */
.features {
    text-align: center;
    padding: 80px 0;
}

.features h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* LÍNEA DECORATIVA */
.features-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* CONTENEDOR ICONOS */
.icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ITEM */
.item {
    width: 150px;
    text-align: center;
}

.item i {
    width: 60px;
    height: 60px;
    border: 2px solid #d4af37;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 15px;

    font-size: 24px;
    color: #d4af37;

    transition: 0.3s;
}

.item i {
    box-shadow: 0 0 15px rgba(212,175,55,0.15);
}

.item:hover i {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

/* TEXTO */
.item p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.4;
}

/* CTA */
.cta {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(120deg, #111, #000);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-img {
    flex: 1;
    min-width: 320px; /* 🔥 ESTO ES LO QUE TE FALTABA */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img img {
    width: 100%;
     max-width: 550px;
    border-radius: 12px;

    /* efecto pro */
    filter: drop-shadow(0 0 25px rgba(212,175,55,0.25));
    transition: 0.3s;
}

.cta-img img:hover {
    transform: scale(1.03);
}

.cta-text span {
    color: #d4af37;
}

.cta button {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.cta button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.cta-text h2 {
    font-size: 34px;
    line-height: 1.2;
}

.cta-text p {
    margin: 20px 0;
    color: #bbb;
    font-size: 15px;
}

.btn-wsp {
    display: inline-block;
    padding: 14px 34px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-wsp:hover {
    transform: scale(1.07);
    box-shadow: 0 0 25px rgba(37,211,102,0.5);
}

/* 📱 TABLET */
@media (max-width: 992px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .left {
        max-width: 100%;
    }

    .right {
        margin-top: 40px;
    }

    .img-placeholder,
    .hero-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-img img {
        width: 80%;
    }

    .cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 45%;
    }

    .cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-img {
        width: 100%;
    }
}

/* 📱 CELULAR */
@media (max-width: 576px) {

    .hero {
        padding: 60px 0;
    }

    .left h1 {
        font-size: 34px;
    }

    .left p {
        font-size: 14px;
    }

    .card {
        width: 100%;
    }

    .icons {
        gap: 20px;
    }

    .item {
        width: 45%;
    }

    .cta-text h2 {
        font-size: 22px;
    }
}

h1, h2, h3 {
    letter-spacing: -0.5px;
}

img {
    max-width: 100%;
    height: auto;
}