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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: #ffffff;
    padding: 8px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-empresa img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.btn-acceso {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #002f86;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-acceso:hover {
    background: #f8f9fa;
    border-color: #002f86;
}

.btn-acceso2 {
    background: #002f86;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-acceso2:hover {
    background: #001f5c;
}

/* Main Container */
.main-container {
    width: 100%;
    flex: 1;
    display: flex;
    position: relative;
}

.background-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 1;
}

.content-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 400px at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0.2) 60%, transparent 80%);
    border-radius: 20px;
}

/* Text Group */
.text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.intro-text {
    font-size: 34px;
    font-weight: 400;
    color: #002f82;
    line-height: 47.136px;
    text-align: center;
}

.intro-text .bold {
    font-weight: 600;
}

.logo-vitaly {
    width: 358px;
    max-width: 100%;
}

.logo-vitaly img {
    width: 100%;
    height: auto;
    display: block;
}

/* Container Text */
.container-txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    max-width: 431.23px;
}

.main-title {
    font-size: 18px;
    font-weight: 600;
    color: #002f82;
    line-height: 1.2;
    letter-spacing: -0.18px;
}

.description {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info p {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    opacity: 0.8;
    line-height: 14px;
}

.contact-info .light {
    font-weight: 300;
}

.contact-info .bold {
    font-weight: 600;
}

.contact-info a {
    color: #1a1a1a;
    text-decoration: none;
}

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

/* Social Networks */
.social-networks {
    display: flex;
    gap: 3.2px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}



.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.social-icon:hover img {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .logo-empresa img {
        height: 40px;
        width: auto;
    }

    .btn-acceso {
        display: none;
    }

    .content-center {
        max-width: 100%;
        padding: 180px 20px 40px;
        gap: 32px;
    }

    .intro-text {
        font-size: 24px;
        line-height: 1.4;
    }

    .logo-vitaly {
        width: 280px;
    }

    .main-title {
        font-size: 16px;
    }

    .description {
        font-size: 13px;
    }

    .footer {
        padding: 16px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .social-networks {
        gap: 8px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 20px;
    }

    .logo-vitaly {
        width: 240px;
    }

    .main-title {
        font-size: 15px;
    }

    .description {
        font-size: 12px;
    }
}
