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

body {
    font-family: 'Barlow', sans-serif;
    background-color: #f3f3f3;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    height: 900px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Principal */
.card {
    background-color: transparent;
    border-radius: 22px;
    width: 1400px;
    height: 860px;
    padding: 0;
    position: relative;
}

/* Logo Container */
.logo-container {
    position: absolute;
    left: 158px;
    top: 529px;
    width: 490px;
    height: 95px;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 79.072px;
    line-height: 1.2;
    color: #364d56;
    letter-spacing: -3.9536px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
    font-size: 0; /* Remove espaçamento entre elementos inline */
}

.logo-first {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    letter-spacing: -3.12px;
    font-size: 79.072px; /* Restaura o tamanho da fonte */
    display: inline-block;
}

.logo-second {
    letter-spacing: -3.0px;
    font-size: 79.072px; /* Restaura o tamanho da fonte */
    display: inline-block;
}

/* Contact Info */
.contact-info {
    position: absolute;
    left: 158px;
    top: 637px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 24px;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.contact-text {
    font-family: 'Barlow', sans-serif;
    font-size: 16.79px;
    line-height: 1.2;
    color: #364d56;
    letter-spacing: 0.1679px;
    margin: 0;
    white-space: nowrap;
}

.contact-link {
    text-decoration: none;
    color: #364d56;
    cursor: pointer;
}

.contact-link:hover {
    color: #ff6b35;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 393px;
        height: 852px;
        padding: 12px;
    }

    .card {
        width: 369px;
        height: 828px;
    }

    /* Logo Mobile */
    .logo-container {
        left: 55px;
        top: 433.2px;
        width: 283.68px;
        height: 55px;
    }

    .logo {
        font-size: 0; /* Remove espaçamento entre elementos inline */
    }
    
    .logo-first {
        font-size: 45px; /* Restaura o tamanho da fonte no mobile */
    }
    
    .logo-second {
        font-size: 45px; /* Restaura o tamanho da fonte no mobile */
    }

    /* Contact Info Mobile */
    .contact-info {
        left: 87px;
        top: 512.2px;
        gap: 6px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-text {
        font-size: 15px;
    }
}

