/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/** --------------------------------
BOTON PERSONALIZADO CON FLECHA
-------------------------------- **/

/* RESET BOTÓN */
.boton-con-icono .elementor-button {
    display: inline-flex;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none;
}

/* CONTENEDOR */
.boton-con-icono .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-height: 50px;
    padding: 0 0 0 24px;

    border: 1px solid #B8A894;
    border-radius: 999px;
    background: transparent;

    overflow: hidden;
    transition: all .25s ease;
}

/* TEXTO */
.boton-con-icono .elementor-button-text {
    font-size: clamp(1rem, 0.968rem + 0.131vw, 1.125rem);
    line-height: 1;
    white-space: nowrap;
}

/* CÍRCULO */
.boton-con-icono .elementor-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin: 0 !important;
    padding: 0;

    background: #B8A894;
    border-radius: 50%;
    flex-shrink: 0;

    transition: all .25s ease;
}

/* SVG */
.boton-con-icono .elementor-button-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all .25s ease;
}

/* HOVER */
.boton-con-icono .elementor-button:hover .elementor-button-content-wrapper {
    background: #BB986D;
    border-color: #BB986D;
}

.boton-con-icono .elementor-button:hover .elementor-button-icon {
    background: #BB986D;
}

.boton-con-icono .elementor-button:hover .elementor-button-icon svg {
    stroke: #fff;
}

/* MOBILE */
@media (max-width: 767px) {

    .boton-con-icono .elementor-button-content-wrapper {
        min-height: 44px;
        padding-left: 18px;
        gap: 12px;
    }

    .boton-con-icono .elementor-button-icon {
        width: 44px;
        height: 44px;
    }

    .boton-con-icono .elementor-button-icon svg {
        width: 18px;
        height: 18px;
    }
}


/** -----------------------------
 BOTÓN FLECHA BACKGROUND NEGRO
------------------------------ **/

/* RESET BOTÓN */
.boton-con-icono-negro .elementor-button {
    display: inline-flex;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none;
}

/* CONTENEDOR */
.boton-con-icono-negro .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-height: 50px;
    padding: 0 0 0 24px;

    border: 1px solid #1A1A1A;
    border-radius: 999px;
    background: #1A1A1A;

    overflow: hidden;
    transition: all .25s ease;
}

/* TEXTO */
.boton-con-icono-negro .elementor-button-text {
    font-size: clamp(1rem, 0.968rem + 0.131vw, 1.125rem);
    line-height: 1;
    white-space: nowrap;
}

/* CÍRCULO */
.boton-con-icono-negro .elementor-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin: 0 !important;
    padding: 0;

    background: #B8A894;
    border-radius: 50%;
    flex-shrink: 0;

    transition: all .25s ease;
}

/* SVG */
.boton-con-icono-negro .elementor-button-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all .25s ease;
}

/* HOVER */
.boton-con-icono-negro .elementor-button:hover .elementor-button-content-wrapper {
    background: #BB986D;
    border-color: #BB986D;
}

.boton-con-icono-negro .elementor-button:hover .elementor-button-icon {
    background: #BB986D;
}

.boton-con-icono-negro .elementor-button:hover .elementor-button-icon svg {
    stroke: #fff;
}

/* MOBILE */
@media (max-width: 767px) {

   .boton-con-icono-negro .elementor-button-content-wrapper {
        min-height: 44px;
        padding-left: 18px;
        gap: 12px;
    }

    .boton-con-icono-negro .elementor-button-icon {
        width: 44px;
        height: 44px;
    }

    .boton-con-icono-negro .elementor-button-icon svg {
        width: 18px;
        height: 18px;
    }
}

/** -----------------------------
 * ESTILO TEXTO DESTACADO CURSIVA COLOR
--------------------------------- **/

span.destacado-cursiva {
    font-style: italic;
    color: #B8A894;
}