/* Fuente Customizada */
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/***************************************************************/   

body {
    font-family: 'Roboto', serif;
    font-size: medium;
}

body {
    background-color: #F8E5CA14
}

.titulo-seccion-secondary {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #637346;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 2rem;
}

.titulo-seccion-secondary::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #F8E5CA;
    margin: 16px auto 0 auto;
    border-radius: 3px;
}

.titulo-seccion-blue {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1b3c58;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 2rem;
}

.titulo-seccion-blue::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #1b3c58;
    margin: 16px auto 0 auto;
    border-radius: 3px;
}

.titulo-seccion-primary {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F8E5CA;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 2rem;
}

.titulo-seccion-primary::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #637346;
    margin: 16px auto 0 auto;
    border-radius: 3px;
}

.color-primary {
    color: #637346 !important;
}

.color-secondary {
    color: #F8E5CA !important;
}

.custom-active {
    position: relative;
    color: #637346 !important;
    font-weight: bold;
}

.custom-active::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 5px;
    background: #637346;
    border-radius: 2px;
    margin-top: 4px;
}

.bg-primary {
    background-color: #F8E5CA !important;
}

.bg-secondary {
    background-color: #a4b585 !important;
    color: #fff !important;
}

.bg-white {
    background-color: #fff !important;
    color: #637346 !important;
}

.bg-footer {
    background-color: #1b3c58 !important;
    color: #fff !important;
}

.bg-menu {
    background-color: #f8efe3 !important;
}

.shadow-custom {
    box-shadow: 0 0.5rem 2rem rgba(99, 115, 70, 0.35);
}

.watermark-bg {
    position: relative;
    overflow: hidden;
}

.watermark-bg::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
    height: 300px;
    background: url('/images/inicio/psique.png') no-repeat left bottom;
    background-size: 100% 300px;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-8deg);
    transform-origin: left bottom;
}

.watermark-bg > * {
    position: relative;
    z-index: 1;
}

.bull-color-secondary {
    font-size: 2.5rem; 
    letter-spacing: 1rem; 
    color: #F8E5CA;
}

.bull-color-primary {
    font-size: 2.5rem; 
    letter-spacing: 1rem; 
    color: #637346;
}

.bull-color-blue {
    font-size: 2.5rem; 
    letter-spacing: 1rem; 
    color: #1b3c58;
}

.btn-instagram {
    background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    transition: filter 0.2s;
}
.btn-instagram:hover {
    filter: brightness(1.1);
    color: #fff !important;
}

.btn-linkedin {
    background: #0077b5;
    color: #fff !important;
    border: none;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    transition: filter 0.2s;
}

.btn-linkedin:hover {
    filter: brightness(1.1);
    color: #fff !important;
    background: #36a3e2;
}

.tarjeta-green {
    background: #637346;
    border-radius: 0.5rem 0.5rem 0 0;
}

.tarjeta-blue {
    background: #1b3c58;
    border-radius: 0.5rem 0.5rem 0 0;
}

.titulo-tarjeta {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 2rem;   /* Espacio arriba para el icono */
    margin-top: 0;         /* Elimina margen superior */
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 #637346;
    z-index: 1;
    position: relative;
}

.color-green {
    color: #637346;
}

.color-green {
    color: #637346;
}

.color-blue {
    color: #1b3c58;
}

.icon-circle {
    border-radius: 50%;
    border: 3px solid #F8E5CA;
}

.icono-circulo {
    width:64px;
    height:64px;
    position:absolute;
    left:50%;
    bottom:-32px;
    transform:translateX(-50%);
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    z-index:2;
}

.btn-green {
    background: #637346;
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: filter 0.2s;
}

.btn-green:hover {
    background: #637346;
    filter: brightness(1.1);
    color: #fff !important;
}

.btn-blue {
    background: #1b3c58;
    color: #fff !important;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: filter 0.2s;
}

.btn-blue:hover {
    background: #3a5a7a;
    color: #fff !important;
}

.btn-arena {
    background: #F8E5CA;
    color: #1b3c58 !important;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: filter 0.2s;
}

.btn-arena:hover {
    background: #e6d3b8;
    color: #1b3c58 !important;
}

@media (min-width: 992px) {
    .introduccion-escritorio-height {
        min-height: 350px;
    }

    .corte-arena {
        position: relative;
        overflow: hidden;
    }
    
    .corte-arena::before {
        content: '';
        position: absolute;
        top: 0;
        left: -60px;
        width: 80px;
        height: 100%;
        background: #F8E5CA;
        transform: skew(5deg);
        z-index: 2;
    }

    .px-escritorio-5p {
        padding-left: 7% !important;
        padding-right: 8% !important;
    }
}