@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Unno';
    src: url('../assets/fonts/Unno.otf') format('opentype');
}

@font-face {
    font-family: 'Weaklings';
    src: url('../assets/fonts/Weaklings.otf') format('opentype');
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('../assets/img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;

}

/* HERO */
.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.moneda {
    width: 100%;
    max-width: 400px;
}

.logo-text h1 {
    font-family: 'Unno', serif;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 300;
    margin: 0;
}

.logo-text p {
    font-family: 'Weaklings', serif;
    margin: 0;
}

.metales {
    font-size: clamp(20px, 13vw, 85px) !important;
}

.preciosos {
    font-size: clamp(20px, 10vw, 66px);
}

.registro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.registro img {
    height: 50px;
}

/* BOTON */
.btn-contacto {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid white;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    margin-bottom: 12px;
}

/* CARD */
.card {
    padding: 1px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* INPUTS */
label {
    font-size: 13px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 5px;
    box-sizing: border-box;
}

.check.full {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
}

/* CONTENEDOR */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    position: relative;
    margin-left: calc(25px / 2);
}

/* CHECKBOX CENTRADO REAL */
.custom-checkbox .box {
    width: 22px;
    height: 22px;
    border: 2px solid white;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
}


/* CHECK ACTIVO */
.custom-checkbox input:checked+.box::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* BOTON */
.btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
    margin-bottom: 10px;
}

.captcha-container {
    display: flex;
    align-items: center;
}

.g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    max-width: 100%;
}


button {
    padding: 10px 40px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    min-width: 170px;
    font-size: 20px;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.77);
    }
}


@media (max-width: 768px) {

    .grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

}


@media (max-width: 1024px) {
    .top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .moneda {
        position: static;
        /* 👈 quita absolute */
        width: 180px;
        margin: 20px 0;
    }

    .btn-contacto {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}