﻿

/* Botones grandes */
.flc-button {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #fcba03;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px;
    white-space: nowrap;
}

.flc-button:hover {
    background-color: #8c6700;
}

/* Botones medianos */
.flc-button-secondary {
    background-color: #4a4a4a; 
    color: #fcba03; 
    border: none;
    padding: 6px 28px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 14px;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

.flc-button-secondary:hover {
    background-color: #3a3a3a;
    color: #ffc933;
}


/* Festionamos la anchura del body */
.flc-section {
    /*max-width: 800px;*/
    max-width: 100%;
}


@media (min-width: 992px) {
    .flc-section {
        max-width: 850px;
    }
}
@media (min-width: 1200px) {
    .flc-section {
        max-width: 1000px;
    }
}

/* Sección - Título */
.flc-section-title {
    color: #fcba03;
    font-size: 2rem;
}

/*Sección - Subtítulo */
.flc-section-subtitle{
    font-size: 1.3rem;
    font-weight:bold;
}

/*Sección - Subtítulo con color principal */
.flc-section-subtitle-2 {
    color: #fcba03;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Sección - Texto del cuerpo */
.flc-section-body {
    /*color: #333;*/
    /*font-weight: 200;*/
    /*max-width: 700px;*/
    font-size: 1rem;
    line-height: 1.6;
}

/* Estilos listas*/
ul {
    list-style: none;
    padding-left: 0;
}

li::before {
    color: #fcba03 !important;
    font-weight: bold;
}

.li-icon {
    position: relative;
    padding-left: 28px;
    padding-bottom: 13px;
}

.li-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23fcba03' viewBox='0 0 16 16'%3E%3Cpath d='M13.485 1.929a.75.75 0 0 1 .086 1.05l-7.5 9a.75.75 0 0 1-1.122.042l-3.5-3.5a.75.75 0 1 1 1.06-1.06l2.94 2.939 6.97-8.364a.75.75 0 0 1 1.066-.107z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}



a {
    color: white;
    text-decoration: none;
}

/* Color cuando pasas el ratón por encima (hover) */
a:hover {
    color: white;
    text-decoration: underline;
}

/* Color de enlace ya visitado */
a:visited {
    color: white;
}


/* TODO */
strong {
    font-weight: bold;
}


