/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
} */

.containerRec {
    display: flex;
    min-height: 64vh;
  width: max-content;
}

/* Sección Izquierda - Gradiente Azul */
.left-section {
    width: 25%;
    background: linear-gradient(135deg, #003d82 0%, #0052a3 50%, #0066cc 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
    border-radius: 10px 0px 0px 10px;
}

/* Elementos decorativos */
.decorative-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
}

.square-decoration {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    border: 2px solid white;
    transform: rotate(-45deg);
}

.circle-decoration {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid white;
    border-radius: 50%;
}

/* Texto vertical */
.vertical-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
}

/* Badge inferior */
.bottom-badge {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.bottom-badge p {
    margin: 0.25rem 0;
    line-height: 1.2;
}

/* Sección Central */
.center-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #ffffff;
        width: 100%;

}

/* Header con Logo */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background-color: #0066cc;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #333;
}

.title .highlight {
    color: #0066cc;
}

.header-right {
    text-align: right;
    display: none;
}

.header-right .logo-text {
    font-weight: bold;
    font-size: 1.125rem;
    color: #0066cc;
}

.header-right .logo-text-secondary {
    font-weight: bold;
    font-size: 1.125rem;
    color: #333;
}

.header-right .logo-badge {
    background-color: #0066cc;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
    display: inline-block;
}

/* Descripción */
.description {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Botones */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: #0066cc;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #cc0000;
}

.btn-secondary:hover {
    background-color: #990000;
}

.btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.chevron {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Footer Info */
.footer-info {
    font-size: 0.875rem;
    color: #666;
}

.footer-info a {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

/* Sección Derecha */
.right-section {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background-color: #ffffff;
}

/* Puntos decorativos */
.decorative-dots {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    opacity: 0.3;
}

.dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #0066cc;
    border-radius: 50%;
}

/* Personaje */
.character-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-box {
    width: 12rem;
    height: 16rem;
    background: linear-gradient(to bottom, #ffd699, #ffcc99);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

.character-emoji {
    font-size: 3.75rem;
    margin-bottom: 0.5rem;
}

.character-label {
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
}

.version-text {
    color: #666;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Mobile Logo */
.mobile-logo {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    text-align: right;
}

.mobile-logo-text {
    font-weight: bold;
    font-size: 0.875rem;
    color: #0066cc;
}

.mobile-logo-text-secondary {
    font-weight: bold;
    font-size: 0.875rem;
    color: #333;
}

.mobile-logo-badge {
    background-color: #0066cc;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    margin-top: 0.125rem;
    display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
    .left-section {
        display: none;
    }

    .right-section {
        display: none;
    }

    .center-section {
        width: 100%;
        padding: 2rem;
    }

    .header-right {
        display: block;
    }

    .mobile-logo {
        display: block;
    }

    .buttons-container {
        flex-direction: column;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .center-section {
        padding: 1.5rem;
        width: 100%;

    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .header-right {
        margin-top: 1rem;
        text-align: left;
    }

    .title {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}
@media (max-width: 800px) {
  .center-section{
    position: fixed !important;
    left: 0px;
  }
}







