* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ====================== INTRO ====================== */
.intro-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: theme 10s linear infinite; /*velocidad de cambio*/
}

/* Capas giratorias */
.intro-screen::before,
.intro-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.07);
    animation: background 90s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.intro-screen::after {
    left: 15%;
    animation-delay: -30s;
    animation-direction: reverse;
    background: rgba(255, 255, 255, 0.05);
}

/* colores*/
@keyframes theme {
    0%   { background: #fe4273; }
    16%  { background: #c00128; }
    33%  { background: #04294d; }
    50%  { background: #356b87; }
    66%  { background: #fe4273; }
    83%  { background: #c00128; }
    100% { background: #fe4273; }
}

/* Animación de rotación de las capas */
@keyframes background {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contenedor del video */
.intro-wrapper {
    position: relative;
    z-index: 2;
    max-width: 380px;
    width: 90%;
    padding: 20px;
}

.intro-video {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px;
    background: transparent;
}

.intro-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding: 0 20px;
    box-sizing: border-box;
}

.intro-video {
    width: 100% !important;
    height: auto !important;
    max-width: 580px;
    border-radius: 16px;
    display: block;
}

/* Animación de salida */
.intro-screen.fade-out {
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* === Responsive para telefonos=== */
@media (max-width: 576px) {
    .intro-wrapper {
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    .intro-wrapper {
        max-width: 280px;
    }
}

/* ====================== HEADER ====================== */
header {
    background-color: #3E3E3E;
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

#logo {
    height: 65%;
    width: auto;
}

/* ===Responsive para telefonos=== */
@media (max-width: 1024px) {
    header {
        height: 75px;
        padding: 0 30px;
    }
    
    #logo {
        height: 58%;
    }
}

@media (max-width: 576px) {
    header {
        height: 70px;         
        padding: 0 15px;
    }
    
    #logo {
        height: 52%;        
        max-height: 45px;
    }
}

@media (max-width: 380px) {
    header {
        height: 65px;
        padding: 0 12px;
    }
    
    #logo {
        height: 50%;
        max-height: 40px;
    }
}

/* ====================== SECCIÓN 1 - ANIMACIÓN ====================== */
#section1 {
    position: relative;
    width: 100%;
    height: 465px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    overflow: hidden;
    animation: theme 21s linear infinite;
}

/* Capas de fondo rotatorio */

#section1::before,
#section1::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.08);   /* Opacidad */
    animation: background 90s linear infinite;
    pointer-events: none;
}

#section1::after {
    left: 15%;
    animation-delay: -30s;
    animation-direction: reverse;
}

#section1::before {
    right: 15%;
}

/* ANIMACIÓN DE COLORES */
@keyframes theme {
    0%   { background: #fe4273; }
    16%  { background: #c00128; }
    33%  { background: #04294d; }
    50%  { background: #356b87; }
    66%  { background: #fe4273; }
    83%  { background: #c00128; }
    100% { background: #fe4273; }
}

/*  ANIMACIÓN DE ROTACIÓN DE CAPAS  */
@keyframes background {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contenido del section (título, texto y botón) */
#section1 .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 20px;
}

.content {
    text-align: center;
    max-width: 720px;
    padding: 0 20px;
}

#section1 h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.15;
    color: #ffffff;
}

#section1 p {
    font-size: 19px;
    line-height: 1.6;
    color: #ffffffcb;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Botón del CTA Principal */
.btn-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #c00128;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===Responsive para telefonos=== */
@media (max-width: 576px) {
    #section1 h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    #section1 p {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .btn-primary {
        font-size: 17px;
        padding: 14px 32px;
    }
}

@media (max-width: 380px) {
    #section1 h1 {
        font-size: 28px;
    }

    #section1 p {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 13px 28px;
    }
}

/* ====================== SECCIÓN CLIENTES ====================== */
#clientes {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.clientes-container {
    max-width: 1100px;
    margin: 0 auto;
}

.clientes-texto {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.3;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.logos img {
    height: 65px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===Responsive para telefonos=== */

@media (max-width: 576px) {
    #clientes {
        padding: 60px 15px;
    }

    .clientes-texto {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .logos {
        gap: 40px;
    }

    .logos img {
        height: 48px;
    }
}

@media (max-width: 380px) {
    #clientes {
        padding: 50px 12px;
    }

    .clientes-texto {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .logos {
        gap: 35px;
    }

    .logos img {
        height: 42px;
    }
}

/* ====================== SECCIÓN PROBLEMAS ====================== */
#problemas {
    background-color: #f8f9fa;
    padding: 100px 20px;
}

.problemas-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

#problemas h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.subtitulo {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.5;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background-color: white;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.card .numero {
    font-size: 52px;
    font-weight: 700;
    color: #cf0c57;
    line-height: 1;
    min-width: 60px;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* ===Responsive para telefonos=== */

@media (max-width: 576px) {
    #problemas {
        padding: 70px 15px;
    }

    #problemas h2 {
        font-size: 32px;
    }

    .subtitulo {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card {
        padding: 30px 25px;
    }

    .card .numero {
        font-size: 45px;
        min-width: 50px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    #problemas {
        padding: 60px 12px;
    }

    #problemas h2 {
        font-size: 28px;
    }

    .subtitulo {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .card {
        padding: 25px 20px;
    }

    .card .numero {
        font-size: 40px;
    }

    .card h3 {
        font-size: 19px;
    }
}

/* ====================== SECCIÓN 2 ====================== */
#seccion2 {
    background-color: #ffffff;
    padding: 10px 20px 100px;
}

.seccion2-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.columna-izquierda h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.btn-secundario {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    background-color: #333;
    transform: translateY(-3px);
}

/* Carrusel */
.columna-derecha {
    display: flex;
    justify-content: center;
}

.visor-recortado {
    width: 100%;
    max-width: 620px;
    height: 570px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%
    );
}

.rueda-wrapper-horizontal {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 25px 0;
    will-change: transform;
}

.rueda-item {
    width: 300px;
    height: 400px;
    object-fit: cover;
    opacity: 0.25; 
    transform: scale(0.88);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    border-radius: 16px;
    transition: all 0.6s ease;
}

.rueda-item.active {
    opacity: 1; 
    transform: scale(1.08); 
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    z-index: 10;
}



/* ====================== SECCIÓN 3 - INTRO CATÁLOGO ====================== */

#catalogo-intro {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 400px; /* Para que se vea bien el efecto */
}

/* Fondo oscuro base */
#catalogo-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* Oscurece un poco para que el texto se lea bien */
    z-index: 1;
}

/* El canvas que genera Geometryangle */
#catalogo-intro canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Contenido del texto (quedará encima del efecto) */
.catalogo-intro-container {
    position: relative;
    z-index: 2;
}

.catalogo-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

#catalogo-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

#catalogo-intro p {
    font-size: 20px;
    color: #f5f5f5;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-catalogo {
    background-color: #cf0c57;
    color: white;
    font-size: 19px;
    font-weight: 600;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-catalogo:hover {
    background-color: #b00a4a;
    transform: translateY(-4px);
}

/* ====================== CATÁLOGO - IMAGEN ULTRA GRANDE ====================== */
.catalogo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalogo-modal.show {
    opacity: 1;
}

.catalogo-book {
    width: 92%;
    max-width: 1050px;
    height: 660px;           /* Un poco más alto */
    position: relative;
}

.book-container {
    width: 100%;
    height: 100%;
    display: flex;
    box-shadow: 0 60px 140px rgba(0,0,0,0.8);
    border-radius: 16px;
    overflow: hidden;
    background: #f8f3e8;
}

.book-page {
    width: 50%;
    height: 100%;
    background: #fffef7;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.left-page  { 
    border-radius: 16px 0 0 16px; 
    border-right: 10px solid #d9c9a8;
}

.right-page { 
    border-radius: 0 16px 16px 0; 
}

/* Contenido */
.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 16px 18px;   /* Márgenes muy reducidos */
    height: 100%;
}

.page-content h3 {
    font-size: 21px;
    margin: 4px 0 10px 0;
    color: #1f1f1f;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255,255,255,0.7);
    z-index: 5;
}

/* IMAGEN ULTRA GRANDE */
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    flex: 1;
    margin: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Texto (opcional y discreto) */
.page-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    margin: 10px 0 0 0;
    text-align: center;
    max-height: 48px;
    overflow-y: auto;
    z-index: 5;
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Botón Cerrar */
.btn-cerrar {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    font-size: 29px;
    color: #222;
    cursor: pointer;
    z-index: 50;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
}

.btn-cerrar:hover {
    background: #cf0c57;
    color: white;
    transform: rotate(90deg) scale(1.1);
}

/* Botones laterales */
.nav-btn.lateral {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.78);
    color: white;
    border: none;
    width: 60px;
    height: 100px;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    transition: all 0.3s ease;
}

.nav-btn.lateral:hover {
    background: #cf0c57;
    transform: translateY(-50%) scale(1.15);
}

.nav-btn.lateral.left  { left: -32px; border-radius: 12px 0 0 12px; }
.nav-btn.lateral.right { right: -32px; border-radius: 0 12px 12px 0; }

.nav-btn.lateral:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Contador */
.book-counter {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
}

/* ====================== EFECTO DE PASAR HOJA SUAVE Y SIN PARPADEO ====================== */
.book-container .right-page {
    transition: transform 1.4s cubic-bezier(0.60, 0.05, 0.30, 1);
    transform-origin: left center;
}

.book-container.flipping .right-page {
    transform: rotateY(-175deg) !important;
    box-shadow: -30px 15px 50px rgba(0,0,0,0.35);
}

/* ====================== SECCIÓN FILOSOFÍA ====================== */
#filosofia {
    background-color: #ffffff;
    padding: 120px 20px;
}

.filosofia-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.filosofia-imagen img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.filosofia-texto h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.filosofia-texto p {
    font-size: 19px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.filosofia-texto p:last-child {
    margin-bottom: 0;
}

/* ====================== CTA ESCALAR RESULTADOS ====================== */
.cta-escalar {
    max-width: 900px;
    margin: 100px auto 0;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.cta-escalar h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.cta-escalar p {
    font-size: 21px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 680px;
    margin: 0 auto 40px;
}

.btn-escalar {
    display: inline-block;
    background-color: #cf0c57;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 52px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(207, 12, 87, 0.3);
}

.btn-escalar:hover {
    background-color: #b00a4a;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(207, 12, 87, 0.45);
}

/* ====================== FOOTER ====================== */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

/* Redes sociales */
.footer-redes {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.red-social img {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Hace los iconos blancos */
}

.red-social:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1) sepia(1) hue-rotate(-10deg) saturate(4); /* Color rosa al hover */
}

/* Copyright */
.footer-copyright {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-copyright a {
    color: #cf0c57;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #ff4d8a;
}

/* ====================== MODAL FORMULARIO ====================== */
.modal-formulario {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-formulario.show {
    display: flex;
    opacity: 1;
}

.modal-contenido {
    background: #ffffff;
    max-width: 560px;
    width: 100%;
    border-radius: 20px;
    padding: 35px 40px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-formulario.show .modal-contenido {
    opacity: 1;
    transform: translateY(0);
}

/* Botón cerrar */
.btn-cerrar-modal {
    position: absolute;
    top: 16px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.btn-cerrar-modal:hover {
    color: #cf0c57;
}

/* Título */
.modal-contenido h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* Campos */
.form-grupo {
    margin-bottom: 18px;
}

.form-grupo label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-grupo input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-grupo input:focus {
    border-color: #cf0c57;
    box-shadow: 0 0 0 4px rgba(207, 12, 87, 0.1);
    outline: none;
}

/* Botón Enviar */
.btn-enviar-form {
    width: 100%;
    background-color: #cf0c57;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-enviar-form:hover {
    background-color: #b00a4a;
    transform: translateY(-3px);
}

.btn-enviar-form.success {
    background-color: #10b981 !important;
}

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#btn-enviar.loading #btn-texto { 
    display: none; 
}
#btn-enviar.loading #btn-spinner { 
    display: inline-block; 
}

/* Mensaje de éxito */
.mensaje-exito {
    display: none;
    text-align: center;
    padding: 30px 20px;
    animation: fadeInUp 0.6s ease forwards;
}

.check-icon {
    font-size: 68px;
    color: #10b981;
    margin-bottom: 15px;
    animation: pop 0.7s ease;
}

@keyframes pop {
    0% { transform: scale(0.2) rotate(-12deg); }
    60% { transform: scale(1.15) rotate(8deg); }
    100% { transform: scale(1) rotate(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.mensaje-exito h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 24px;
}

.mensaje-exito p {
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-cerrar-exito {
    margin-top: 20px;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
}

.datos-seguros {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
    color: #444;
}
