section.buscador .contenedor {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    @media (width < 1050px) {
        height: 100%;
        min-height: 100vh;

        justify-content: start;
        padding-top: 100px;
    }
    div.consulta {
        div.nombre-dominio{
            display: flex;
            flex: 1;
            input {
                box-sizing: border-box;
                width: 100%;
                padding: 20px;
                font-size: 120%;
                font-family: "IBM Plex Sans Condensed", sans-serif;
                border-radius: 15px 0px 0px 15px;
                border-width: 1px;
            }
            button {
                color: white;
                font-weight: bold;
                font-size: 120%;
                width: 200px;
                border-radius: 0px 15px 15px 0px;
                border-width: 0px;
                background-color: #E23E05;
                &:active {
                    background-color: #AF2D00;
                }
                &:disabled {
                    background-color: #888;
                }
            }

            @media (width < 1050px) {
                input, button {
                    padding: 10px;
                    font-size: 110%;
                }
            }

        }
    }

    #resultado {
        display: none;
        margin-top: 20px;
        border-radius: 10px;
        padding: 20px;
        border: 1px solid;

        text-align: center;

        &.disponible {
            border-color:  green;
            color: green;
            a {
                color: green;
            }
            button {
                background-color: black;
            }
        }
        &.no-disponible {
            border-color: #444;
            color: #444;
            a {
                color: #444;
            }
            button {
                background-color: #888;
            }
        }

        .enunciado {
            font-size: 110%;
        }
        .detalles {
            font-size: 80%;
        }

        button {
            color: white;

            padding: 20px;
            border: 0px;
            margin: 10px;

            font-size: 110%
        }
    }

    a#más-tlds {
        color: black;
        display: block;
        font-size: 110%;
        margin: 20px 0px;
        text-align: center;
    }

    @media (width < 1050px) {
        font-size: 80%;
    }
}

.precios {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
    margin: 10px 0px;

    .precio {
        flex: 1 1 15%;
        border: 1px solid #aaa;
        padding: 5px;
        border-radius: 10px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        transition: color 0.25s, background-color 0.25s, transform 0.25s;

        &:hover {
            background-color: #E23E05;
            color: white;
            cursor: pointer;
            transform: scale(1.05);

            .monto {
                &.tachado {
                    color: #fca282;
                    font-size: 80%;
                }
                &.resaltado {
                    color: white;
                }
            }
        }
        .detalles {
            font-size: 60%;
        }

        .monto {
            &.tachado {
                text-decoration: line-through;
                color: #444;
                font-size: 80%;
            }
            &.resaltado {
                color: #E23E05;
            }
        }

        .tld {
            font-family: Montserrat, sans-serif;
            font-weight: bold;
            font-size: 110%;
        }
    }
}

section.más-precios {
    div.contenedor > h2:first-child {
        padding-top: 90px;
    }
}

h1, h2 {
    text-align: center;

    strong {
        color: #E23E05;
    }
}
