@charset "utf-8";
/* CSS Document */

/*==================================================
FAQ MCTIRE
==================================================*/

.faq-mctire
{
    position:relative;

    padding:8px 0;

    background:
    linear-gradient(
        135deg,
        #111 0%,
        #181818 55%,
        #0d0d0d 100%
    );

    overflow:hidden;
}


/*==================================================
DECORACIÓN DE FONDO
==================================================*/

.faq-mctire::before
{
    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:500px;

    height:500px;

    border-radius:50%;

    border:
    70px solid rgba(215,25,32,.045);

    pointer-events:none;
}


.faq-mctire::after
{
    content:"";

    position:absolute;

    bottom:-100px;

    left:-100px;

    width:300px;

    height:300px;

    border-radius:50%;

    background:
    rgba(215,25,32,.035);

    pointer-events:none;
}


/*==================================================
CONTENEDOR
==================================================*/

.faq-mctire .container
{
    position:relative;

    z-index:2;
}


/*==================================================
ENCABEZADO
==================================================*/

.faq-heading
{
    max-width:720px;

    margin:0 auto 30px;

    text-align:center;
}


.faq-heading .section-label
{
    display:inline-block;

    margin-bottom:8px;

    color:var(--primary);

    font-size:.68rem;

    font-weight:800;

    letter-spacing:1.6px;

    text-transform:uppercase;
}


.faq-heading h2
{
    margin:0;

    color:#fff;

    font-size:
    clamp(1.8rem,3.5vw,2.7rem);

    line-height:1.08;

    font-weight:800;

    letter-spacing:-.8px;
}


.faq-heading h2 span
{
    color:var(--primary);
}


.faq-heading p
{
    max-width:650px;

    margin:11px auto 0;

    color:#a7a7a7;

    font-size:.84rem;

    line-height:1.55;
}


/*==================================================
LISTA
==================================================*/

.faq-list
{
    display:grid;

    grid-template-columns:
    repeat(2,minmax(0,1fr));

    gap:12px;

    max-width:1100px;

    margin:0 auto;
}


/*==================================================
ITEM
==================================================*/

.faq-item
{
    position:relative;

    margin:0;

    background:
    linear-gradient(
        145deg,
        #242424,
        #191919
    );

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:14px;

    overflow:hidden;

    transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}


.faq-item:hover
{
    border-color:
    rgba(215,25,32,.35);

    transform:
    translateY(-2px);
}


.faq-item[open]
{
    border-color:
    rgba(215,25,32,.55);

    background:
    linear-gradient(
        145deg,
        #282828,
        #1a1a1a
    );
}


/*==================================================
SUMMARY
==================================================*/

.faq-item summary
{
    display:grid;

    grid-template-columns:
    38px
    minmax(0,1fr)
    34px;

    align-items:center;

    gap:12px;

    min-height:64px;

    padding:
    0 16px;

    cursor:pointer;

    list-style:none;

    user-select:none;
}


.faq-item summary::-webkit-details-marker
{
    display:none;
}


/*==================================================
NUMERO
==================================================*/

.faq-number
{
    display:flex;

    align-items:center;

    justify-content:center;

    width:36px;

    height:36px;

    color:#aaa;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:9px;

    font-size:.64rem;

    font-weight:800;

    transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease;
}


.faq-item[open] .faq-number
{
    color:#fff;

    background:var(--primary);

    border-color:var(--primary);
}


/*==================================================
PREGUNTA
==================================================*/

.faq-question
{
    min-width:0;

    color:#fff;

    font-size:.81rem;

    line-height:1.35;

    font-weight:700;
}


/*==================================================
ICONO
==================================================*/

.faq-icon
{
    display:flex;

    align-items:center;

    justify-content:center;

    width:32px;

    height:32px;

    color:#aaa;

    background:
    rgba(255,255,255,.05);

    border-radius:50%;

    font-size:.7rem;

    transition:
    transform .3s ease,
    color .25s ease,
    background .25s ease;
}


.faq-item[open] .faq-icon
{
    color:#fff;

    background:var(--primary);

    transform:rotate(45deg);
}


/*==================================================
RESPUESTA
==================================================*/

.faq-answer
{
    padding:
    0 62px 18px;

    border-top:
    1px solid rgba(255,255,255,.06);
}


.faq-answer p
{
    margin:14px 0 0;

    color:#aaa;

    font-size:.74rem;

    line-height:1.65;
}


.faq-answer p + p
{
    margin-top:9px;
}


.faq-answer strong
{
    color:#ddd;

    font-weight:700;
}


/*==================================================
CTA
==================================================*/

.faq-cta
{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    max-width:1100px;

    margin:25px auto 0;

    padding:
    16px 20px;

    background:
    linear-gradient(
        90deg,
        rgba(215,25,32,.14),
        rgba(255,255,255,.035)
    );

    border:
    1px solid rgba(215,25,32,.20);

    border-radius:14px;
}


/*==================================================
CTA CONTENIDO
==================================================*/

.faq-cta-content
{
    display:flex;

    align-items:center;

    gap:12px;

    min-width:0;
}


.faq-cta-icon
{
    display:flex;

    align-items:center;

    justify-content:center;

    width:42px;

    height:42px;

    flex-shrink:0;

    color:#fff;

    background:var(--primary);

    border-radius:11px;

    font-size:.84rem;
}


.faq-cta-content strong
{
    display:block;

    color:#fff;

    font-size:.8rem;

    font-weight:800;
}


.faq-cta-content span
{
    display:block;

    margin-top:2px;

    color:#aaa;

    font-size:.68rem;

    line-height:1.4;
}


/*==================================================
BOTÓN
==================================================*/

.faq-button
{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    min-height:42px;

    padding:
    0 18px;

    flex-shrink:0;

    color:#fff;

    background:var(--primary);

    border-radius:50px;

    font-size:.7rem;

    font-weight:800;

    text-decoration:none;

    transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}


.faq-button:hover
{
    color:#fff;

    background:var(--primary-hover);

    transform:
    translateY(-2px);

    box-shadow:
    0 10px 25px rgba(215,25,32,.25);
}


.faq-button i
{
    font-size:.85rem;
}


/*==================================================
TABLET
==================================================*/

@media(max-width:900px)
{
    .faq-list
    {
        grid-template-columns:1fr;

        gap:10px;
    }


    .faq-cta
    {
        max-width:100%;
    }
}


/*==================================================
MOBILE
==================================================*/

@media(max-width:600px)
{
    .faq-heading
    {
        margin-bottom:22px;
    }



    .faq-heading .section-label
    {
        margin-bottom:6px;

        font-size:.61rem;

        letter-spacing:1.3px;
    }


    .faq-heading h2
    {
        font-size:
        clamp(1.6rem,7.5vw,2rem);

        letter-spacing:-.5px;
    }


    .faq-heading p
    {
        margin-top:8px;

        font-size:.72rem;

        line-height:1.45;
    }


    .faq-list
    {
        gap:8px;
    }


    .faq-item
    {
        border-radius:11px;
    }


    .faq-item summary
    {
        grid-template-columns:
        32px
        minmax(0,1fr)
        30px;

        gap:8px;

        min-height:58px;

        padding:
        0 10px;
    }


    .faq-number
    {
        width:30px;

        height:30px;

        border-radius:8px;

        font-size:.57rem;
    }


    .faq-question
    {
        font-size:.71rem;

        line-height:1.3;
    }


    .faq-icon
    {
        width:29px;

        height:29px;

        font-size:.62rem;
    }


    .faq-answer
    {
        padding:
        0 10px 15px 50px;
    }


    .faq-answer p
    {
        margin-top:11px;

        font-size:.68rem;

        line-height:1.55;
    }


    .faq-answer p + p
    {
        margin-top:8px;
    }


    /*==================================================
    CTA MOBILE
    ==================================================*/

    .faq-cta
    {
        flex-direction:column;

        align-items:stretch;

        gap:13px;

        margin-top:18px;

        padding:14px;

        border-radius:11px;
    }


    .faq-cta-content
    {
        align-items:flex-start;

        gap:10px;
    }


    .faq-cta-icon
    {
        width:37px;

        height:37px;

        border-radius:9px;

        font-size:.76rem;
    }


    .faq-cta-content strong
    {
        font-size:.72rem;
    }


    .faq-cta-content span
    {
        margin-top:2px;

        font-size:.61rem;

        line-height:1.4;
    }


    .faq-button
    {
        width:100%;

        min-height:40px;

        font-size:.67rem;
    }
}


/*==================================================
MOBILE PEQUEÑO
==================================================*/

@media(max-width:400px)
{
    .faq-heading
    {
        margin-bottom:18px;
    }


    .faq-heading h2
    {
        font-size:1.55rem;
    }


    .faq-heading p
    {
        font-size:.68rem;
    }


    .faq-item summary
    {
        grid-template-columns:
        29px
        minmax(0,1fr)
        28px;

        gap:7px;

        min-height:54px;

        padding:
        0 8px;
    }


    .faq-number
    {
        width:28px;

        height:28px;

        font-size:.54rem;
    }


    .faq-question
    {
        font-size:.68rem;
    }


    .faq-icon
    {
        width:27px;

        height:27px;

        font-size:.58rem;
    }


    .faq-answer
    {
        padding:
        0 9px 13px;
    }


    .faq-answer p
    {
        font-size:.65rem;

        line-height:1.5;
    }


    .faq-cta
    {
        margin-top:15px;

        padding:12px;
    }
}


/*==================================================
ACCESIBILIDAD
==================================================*/

.faq-item summary:focus-visible
{
    outline:
    2px solid var(--primary);

    outline-offset:
    3px;
}


/*==================================================
REDUCIR MOVIMIENTO
==================================================*/

@media(prefers-reduced-motion:reduce)
{
    .faq-item,
    .faq-icon,
    .faq-number,
    .faq-button
    {
        transition:none;
    }
}