@charset "utf-8";
/* 
		THIS STYLE SHEET ARE CREATED,
	DESIGNED AND DEVOLOPED BY ALFREDO DIPACCE.
				COPYRIGHT
  ©2024 BY Edfx4 Software. ALL RIGHTS RESERVED
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
	font-family: "Sp light";
	src: url("../fonts/sp_light.ttf");
}

@font-face {
	font-family: "Sp rBold";
	src: url("../fonts/sp_rBold.ttf");
}

html, body {
    width: 100%;
    background-color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px; /* Tamaño base fijo */
    overflow-x: hidden;
}

/* CONTENEDOR PRINCIPAL */
.dvContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* SECCIÓN AZUL (HEADER) */
.dvC_Press {
    width: 100%;
    min-height: 250px;
    background-color: #284CBF;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 10%;
    overflow: visible;
}

.dvC_Press_Izquierda {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dvC_Press_Derecha {
    flex: 1;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.dvC_Press_Derecha img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: -100px;
    position: relative;
    z-index: 100;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* TEXTOS PRINCIPALES */
#edfx4_txtStyle h1 {
    font-family: "Sp rBold";
    font-size: 48px; /* Tamaño fijo */
    color: white;
    margin-bottom: 10px;
}

#edfx4_txtStyle h2 {
    font-size: 20px;
    font-weight: normal;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

#edfx4_txtStyle2 p {
    margin-bottom: 1.2rem !important; /* Separa los párrafos */
    display: block;
}

#edfx4_txtStyle2 b {
    color: #284CBF; /* Resalta las negritas con el azul de tu marca */
}

/* BOTÓN DE DESCARGA*/
.btnStyle_1 {
    display: inline-block;
    background-color: #950D98;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 25px;
    position: relative; /* Necesario para el brillo */
    overflow: hidden;   /* Corta el brillo fuera del botón */
    transition: all 0.3s ease; /* Transición suave de color y tamaño */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

/* El efecto de brillo (luz blanca que cruza) */
.btnStyle_1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: 0.5s;
}

.btnStyle_1:hover {
    background-color: #74119A;
    transform: scale(1.05); /* Se agranda un poquito */
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Dispara el brillo al pasar el mouse */
.btnStyle_1:hover::after {
    left: 100%;
}

/* Efecto al hacer clic */
.btnStyle_1:active {
    transform: scale(0.98);
}

/* SECCIÓN DESCRIPCIÓN (BLANCO) */
.dvC_Description {
    width: 100%;
    background-color: #FFFFFF;
    padding-top: 130px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el contenido */
    color: #333;
}

.dvC_Description hr {
    width: 100%;
    border: 1;
    border-top: 1px solid #eee; /* Línea sutil gris */
    margin-top: 40px;    /* Espacio arriba de la línea */
    margin-bottom: 40px; /* Espacio debajo de la línea */
}

/* Espaciado para el título de Plataformas */
.dvC_Description h3 {
    margin-bottom: 20px !important; /* Separa el título del texto de abajo */
}

/* Espaciado para los párrafos de compatibilidad */
.dvC_Description p {
    margin-bottom: 15px !important; /* Separa cada línea de texto */
    line-height: 1.6;
}

/* El enlace de la política de privacidad también necesita aire */
.dvC_Description a[href$=".pdf"] {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 0;
}

#edfx4_txtStyle2 h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

#edfx4_txtStyle2 h5 {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
}

/* FOOTER */
.dvC_Copy {
    padding: 30px 20px;
    text-align: right;
    border-top: 1px solid #eee;
}

.dvC_Copy a {
    color: #284CBF;
    text-decoration: none;
    font-weight: bold;
}

/* DISEÑO PARA MÓVILES (PANTALLAS PEQUEÑAS) */
@media screen and (max-width: 768px) {
    .dvC_Press {
        flex-direction: column;
        text-align: center;
    }
    
    .dvC_Press_Derecha {
        order: -1; /* Pone la imagen arriba en el celular */
        margin-bottom: 30px;
    }

    #edfx4_txtStyle h1 { font-size: 32px; }
    
    .btnStyle_1 {
        width: 100%;
        max-width: 280px;
    }
    .dvC_Description img {
        width: 100px !important; /* Reduce el tamaño de los iconos en móvil */
        height: auto !important;
        padding-top: 40px !important;
    }
}

/* Ocultar la imagen principal solo en dispositivos móviles */
@media screen and (max-width: 768px) {
    .ocultar-imagen {
        display: none !important;
        visibility: hidden;
    }
    
    .dvC_Press_Derecha {
        display: none; /* Esto elimina el espacio vacío que dejaría la imagen */
    }
}