/* =======================================
   Variables y Estilos Base
   ======================================= */
:root {
    --crowdstrike-red: #f83a00;
    --crowdstrike-blue: #1F60A2;
    --crowdstrike-dark: #000000;
    --crowdstrike-light: #F4F6FA;
    --text-color-dark: #333;
    --text-color-light: #fff;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-top: 80px;
    background-color: var(--crowdstrike-light);
    color: var(--text-color-dark);
}

.content-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Estilos generales para las secciones */
.content-section {
    background-color: var(--text-color-light);
    border-radius: 8px;
    padding: 60px 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.section-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espacio entre la imagen y el texto */
    margin-top: 40px;
}

.section-text-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.section-media-content {
    flex: 1;
    max-width: 500px;
}

/* ---------------------------------------------------- */
/* Estilos de la imagen y la animación */
/* ---------------------------------------------------- */

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    
    /* Estado inicial: invisible y fuera de la pantalla */
    opacity: 0;
    transform: translateX(-100px); /* Un valor más moderado */
    
    /* Transición suave para la animación */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Clase que activa la animación al ser añadida por JavaScript */
.responsive-image.animate {
    opacity: 1;
    transform: translateX(0); /* Vuelve a su posición original */
}

/* Estilo para la imagen que viene de la derecha */
.responsive-image.from-right {
    transform: translateX(100px); /* Inicia desde la derecha */
}

/* ---------------------------------------------------- */
/* Estilo para invertir el orden de la imagen y el texto */
/* ---------------------------------------------------- */

.section-flex-container.reverse-layout {
    flex-direction: row-reverse;
}

/* ---------------------------------------------------- */
/* Media Queries para dispositivos móviles */
/* ---------------------------------------------------- */

@media (max-width: 768px) {
    .section-flex-container,
    .section-flex-container.reverse-layout {
        flex-direction: column;
    }

    .section-text-content,
    .section-media-content {
        max-width: 100%;
    }
    
    /* Las imágenes deben ser visibles por defecto en móviles */
    .responsive-image,
    .responsive-image.from-right {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--crowdstrike-red);
    border-bottom: 2px solid var(--crowdstrike-red);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.bg-light-gray {
    background-color: #f4f4f4;
}

.bg-dark-gray {
    background-color: #333;
}

.text-light {
    color: white;
}

/* =======================================
   Encabezado y Navegación
   ======================================= */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 10px 20px;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#main-header.scrolled {
    background-color: var(--text-color-light);
    box-shadow: var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-container .logo {
    height: 40px;
}

.logo-container h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--crowdstrike-dark);
    margin: 0;
}

.desktop-nav {
    display: block;
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.desktop-nav ul a {
    text-decoration: none;
    color: var(--text-color-dark);
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap;
}

.desktop-nav ul a:hover {
    color: var(--crowdstrike-red);
}

.desktop-nav .has-submenu {
    position: relative;
}

.desktop-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-color-light);
    box-shadow: var(--shadow-light);
    padding: 10px 0;
    border-radius: 4px;
    min-width: 200px;
    z-index: 1000;
}

.desktop-nav .submenu li {
    padding: 0 15px;
}

.desktop-nav .submenu a {
    display: block;
    padding: 8px 0;
}

.desktop-nav .has-submenu:hover > .submenu {
    display: block;
}

.desktop-nav .has-submenu .submenu .has-submenu:hover > .submenu {
    left: 100%;
    top: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* =======================================
   Estilos de Botones Estandarizados
   ======================================= */
/* Estilo base para todos los botones rectangulares con efecto 3D "sinking" */
.small-button,
.contact-button,
.denuncia-button {
    padding: 10px 20px;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0.5px solid var(--crowdstrike-red);
    border-radius: 5px;
    background-color: var(--crowdstrike-red);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.3s ease;
    box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.7);
}

/* Efecto hover/activo para los botones estandarizados */
.small-button:hover,
.contact-button:hover,
.denuncia-button:hover {
    background-color: transparent;  /* Tono más oscuro */
    transform: translate(2px, 2px); /* Simula el "hundimiento" */
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.7); /* Elimina la sombra */
    color: var(--crowdstrike-red);
}


.admin-login i {
    font-size: 24px;
    color: var(--crowdstrike-dark);
}

/* Borde 3D para el icono de usuario */
.admin-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-color-light);
    box-shadow:
        inset 0 2px 2px rgba(0, 0, 0, 0.2),
        -2px -2px 0 0 var(--crowdstrike-red),
        2px 2px 0 0 rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

.admin-login:hover {
    transform: translate(2px, 2px);
    box-shadow:
        inset 0 2px 2px rgba(0, 0, 0, 0.2),
        -1px -1px 0 0 var(--crowdstrike-red),
        1px 1px 0 0 rgba(0, 0, 0, 0.2);
}

/* =======================================
   Pie de página
   ======================================= */
.site-footer {
    text-align: center;
    padding: 20px;
    background-color: var(--crowdstrike-dark);
    color: var(--text-color-light);
    font-size: 14px;
}

/* =======================================
   Elementos de Contacto Flotantes
   ======================================= */
.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--crowdstrike-red);
    color: var(--text-color-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 999;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.floating-contact-btn:hover {
    background-color: #c72e00;
    transform: scale(1.05);
}

.contact-links-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--text-color-light);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.contact-links-container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color-dark);
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.contact-link:hover {
    background-color: var(--crowdstrike-light);
}

.contact-link i {
    font-size: 18px;
    color: var(--crowdstrike-red);
}

.contact-link span {
    font-size: 14px;
    font-weight: 600;
}

/* =======================================
   Estilos de Componentes Varios
   ======================================= */
.section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-content p, .section-content ul {
    font-size: 16px;
    margin: 0;
}

.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: var(--crowdstrike-light);
    border: 1px solid #ddd;
    border-radius: 8px;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: var(--crowdstrike-red);
    color: var(--text-color-light);
    border: 0.5px solid var(--crowdstrike-red);
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--crowdstrike-light);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    color: var(--crowdstrike-red);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: background-color 0.3s, border-bottom 0.3s;
}

.faq-question:hover {
    background-color: var(--crowdstrike-light);
}

.faq-item.active .faq-question {
    border-bottom-color: var(--crowdstrike-red);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajusta este valor si el contenido es más largo */
    padding: 20px 30px;
}

.faq-answer p {
    margin-bottom: 0;
}

.testimonial {
    background-color: var(--crowdstrike-light);
    padding: 20px;
    border-left: 4px solid var(--crowdstrike-blue);
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.test-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--crowdstrike-blue);
    color: var(--text-color-light);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.test-button:hover {
    background-color: #1a4d80;
    transform: translateY(-2px);
}

.test-button:active {
    transform: translateY(0);
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: var(--crowdstrike-red);
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #c72e00;
}

.doc-link {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.denuncia-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Estilo para la cuadrícula de compromisos */
.compromisos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.compromiso-item {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.compromiso-item h3 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: var(--crowdstrike-red);
}

.compromiso-item h3 i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--crowdstrike-red);
}

/* =======================================
   Páginas Específicas
   ======================================= */
/* -- Soluciones -- */
.solution-section {
    padding: 60px 0;
}

.solution-info-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-info-card.reverse-layout {
    flex-direction: row-reverse;
}

.solution-text-content {
    flex: 1;
}

.solution-text-content h2 {
    margin-bottom: 20px;
}

.solution-text-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 25px;
}

.feature-list h4 {
    font-size: 1.2em;
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1em;
}

.feature-list li i {
    margin-right: 15px;
    color: var(--crowdstrike-red);
    font-size: 1.2em;
    margin-top: 3px;
}

.platform-list {
    margin-top: 30px;
}

.platform-list h4 {
    font-size: 1.2em;
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
}

.platform-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    font-size: 1.1em;
    color: #555;
}

.platform-item i {
    font-size: 1.5em;
    color: #4a4a4a;
}

.download-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.solution-media-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.media-placeholder img,
.media-placeholder iframe,
.media-placeholder video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* -- Identidad -- */
.hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--crowdstrike-red);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2em;
    font-weight: 300;
}

.identidad-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.identidad-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Carrusel de Valores */
.valores-carrusel-container {
    padding: 20px 0;
    overflow: hidden; /* Esto oculta la barra de desplazamiento y el contenido extra */
    position: relative; /* Necesario para la animación */
    max-width: 900px; /* Limita el ancho del contenedor para un mejor control */
    margin: 0 auto;
}

.valores-carrusel {
    display: flex;
    
    animation: carrusel-scroll 30s linear infinite; /* Animación de desplazamiento automático */
    padding: 10px 0; /* Añadido un poco de padding vertical para mejor visualización */
}

.valores-carrusel::-webkit-scrollbar {
    display: none;
}

.valor-card {
    max-width: 300px; /* Establece un ancho máximo para las tarjetas */
    min-width: 280px; /* Asegura un ancho mínimo */
    min-height: 250px; /* Aumento la altura mínima para que el texto se vea completo */
    flex-shrink: 0; /* Evita que las tarjetas se encojan demasiado */
    margin: 0 15px; /* Aumenta un poco el margen entre tarjetas */
    background-color: white;
    color: #333;
    padding: 20px; /* Reduzco un poco el padding interior para hacerlas más compactas */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animación del carrusel */
@keyframes carrusel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 30px)); }
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.valor-icon {
    font-size: 50px;
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
}

.valor-card h3 {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.valor-card p {
    font-size: 0.9em; /* Reduzco un poco el tamaño del párrafo */
    line-height: 1.4; /* Ajusto la altura de línea para mejor lectura */
    text-align: left; /* Alineamos el texto a la izquierda para una mejor lectura */
    white-space: normal; /* Asegura que el texto se ajuste dentro del contenedor */
}

/* Selector de puntos */
.carrusel-puntos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.punto {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.punto.activo {
    background-color: var(--crowdstrike-red);
}

/* -- Blog -- */
.blog-hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--crowdstrike-red);
    background-image: url('URL_DE_IMAGEN_DE_BLOG');
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-header-media {
    margin-bottom: 40px;
}

.blog-main-image {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(34, 49, 74, 0.18);
    display: block;
    margin-bottom: 10px;
}

.image-credit, .video-credit {
    font-size: 0.85em;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.video-container {
    margin-top: 20px;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(34, 49, 74, 0.10);
}

.blog-article {
    margin-bottom: 30px;
}

.blog-article h3 {
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
}

.blog-article ul {
    margin-top: 10px;
    padding-left: 20px;
}

.blog-article li {
    margin-bottom: 8px;
}

.blog-media-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.blog-media-flex .blog-article {
    flex: 1 1 320px;
    min-width: 260px;
}

.recursos-adicionales {
    margin-top: 40px;
}

.recursos-adicionales h3 {
    color: var(--crowdstrike-red);
    text-align: center;
    margin-bottom: 30px;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.recurso-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recurso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.recurso-item i {
    font-size: 40px;
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
}

.recurso-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.recurso-item p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
}



.blog-references {
    font-size: 0.85em;
    color: #888;
    margin-top: 40px;
}

.blog-references ul {
    list-style-type: none;
    padding: 0;
}

.blog-references a {
    color: var(--crowdstrike-red);
    text-decoration: none;
}

.blog-references a:hover {
    text-decoration: underline;
}

/* -- Contacto -- */
.contact-hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--crowdstrike-red);
    background-image: url('URL_DE_IMAGEN_DE_CONTACTO');
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background-color: var(--text-color-light);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--crowdstrike-red);
}

/* -- Transparencia -- */
.transparencia-hero-section {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--crowdstrike-red);
    background-image: url('URL_DE_IMAGEN_DE_TRANSPARENCIA');
}

.transparencia-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.transparencia-hero-content {
    position: relative;
    z-index: 2;
}

.transparencia-hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.document-item:hover {
    background-color: var(--crowdstrike-light);
}

.document-info {
    flex: 1;
}

.document-info h4 {
    margin: 0;
    color: var(--crowdstrike-blue);
    font-size: 1.2em;
}

.document-info p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #777;
}

/* =======================================
   Responsive Design
   ======================================= */
@media (max-width: 992px) {
    .solution-info-card,
    .solution-info-card.reverse-layout {
        flex-direction: column;
        text-align: center;
    }

    .solution-text-content {
        order: 2;
    }

    .solution-info-card.reverse-layout .solution-text-content {
        order: 2;
    }

    .solution-media-content {
        order: 1;
    }

    .solution-text-content h2,
    .solution-text-content p {
        text-align: left;
    }

    .platform-list,
    .download-links {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .compromisos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 250px;
    }

    .blog-media-flex {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .compromisos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .desktop-nav {
        display: none;
    }

    .header-content {
        justify-content: space-between;
        gap: 10px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-button {
        display: none;
    }

    .admin-login {
        display: flex;
    }
}

/* Asegura que los íconos de Font Awesome se muestren */
.valor-icon {
   font-family: 'Font Awesome 5 Free'; /* Asegura que se use la fuente de Font Awesome */
    font-weight: 900; /* Requerido para el estilo "solid" */
    font-style: normal;
    font-size: 50px;
    color: var(--crowdstrike-red);
    margin-bottom: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Estado inicial: oculto y ligeramente desplazado hacia abajo */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Estado final: visible y en su posición original */
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.analyzer-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .analyzer-container textarea {
            width: 100%;
            min-height: 250px;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            resize: vertical;
        }
        .result-box {
            background-color: #f0f4f8;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #ccc;
            white-space: pre-wrap;
        }
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 20px;
        }
        .loading-spinner .fas {
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }