/* Carga de la fuente Futura Condensed Medium */
@font-face {
    font-family: 'Futura Condensed Medium';
    src: url('https://fonts.cdnfonts.com/css/futura-condensed-pt') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* Aplicar fuente Futura a todo el documento */
body {
    font-family: 'Futura Condensed Medium', sans-serif;
    background-color: #FFFFFF;
    color: #1B3967;
}

/* Efecto glassmorphism base */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animaciones suaves */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Transiciones para hover */
.hover-scale {
    transition: all 0.2s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Degradados para botones */
.btn-primary {
    background: linear-gradient(135deg, #064F96 0%, #2A8CBD 100%);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(6, 79, 150, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #07486C 0%, #064F96 100%);
}

.btn-accent {
    background: linear-gradient(135deg, #FCD500 0%, #FAC966 100%);
    color: #1B3967;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(252, 213, 0, 0.2);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FAC966 0%, #F6A540 100%);
}

/* Efecto de brillo en botones */
.btn-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.7s;
    z-index: -1;
}

.btn-shine:hover::before {
    transform: rotate(30deg) translate(100%, -100%);
}

/* Efecto de resplandor interno */
.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 15px rgba(6, 79, 150, 0.5), 0 0 5px rgba(6, 79, 150, 0.3) inset;
}

.btn-glow-accent:hover {
    box-shadow: 0 0 15px rgba(252, 213, 0, 0.5), 0 0 5px rgba(252, 213, 0, 0.3) inset;
}

/* Botones secundarios con borde degradado */
.btn-secondary {
    background: transparent;
    position: relative;
    z-index: 1;
    color: white;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px; right: -2px; bottom: -2px; left: -2px;
    background: linear-gradient(135deg, #064F96 0%, #2A8CBD 100%);
    z-index: -1;
    border-radius: 9999px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos específicos para la página principal */
.hero-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A8CBD' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Estilos para las tarjetas de herramientas */
.tool-card {
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos para breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #2A8CBD;
}

.breadcrumb-item a {
    color: #064F96;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #2A8CBD;
}

/* Estilos para los espacios de publicidad */
.ad-space {
    background: rgba(145, 216, 247, 0.1);
    border: 1px dashed #91D8F7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: #2A8CBD;
}

/* Estilos para formularios */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(42, 140, 189, 0.3);
    border-radius: 0.5rem;
    background-color: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #064F96;
    box-shadow: 0 0 0 3px rgba(6, 79, 150, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1B3967;
}

/* Estilos para el footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #FCD500;
}