/* ================= LOGO SECTION ================= */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 8px 0;
    padding-top: 32px;
}

/* ================= HERO SECTION ================= */
.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 24px auto;
}
.title {
    font-size: clamp(1rem, 5vw, 3rem) !important;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #8B5CF6, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    line-height: 1;
    text-transform: uppercase;
}
.description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 20vh;
    max-width: 100vw;
    /* Responsivo */
    max-width: 100%;
    text-align: center;
}
.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.arrow {
    font-size: 2rem;
    color: #8B5CF6;
    margin-right: 15px;
    font-weight: bold;
}
.contact-label {
    font-size: 1.2rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 2px;
}
.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #F97316;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: clamp(0.5rem, 5vw, 1.1rem);
    font-weight: 600;
    width: 100%;
    color: #000000;
}
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.contact-icon.phone {
    background: #F97316;
    color: #fff;
}
.contact-icon.behance {
    background: #1769FF;
    color: #fff;
    font-family: Arial Black, sans-serif;
}
.contact-icon.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
    color: #fff;
}
/* Mantém os links dos contatos pretos */
.contact-item a {
    color: #000000 !important;
    text-decoration: none;
}
/* Centralizar a logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 8px 0;
    padding-top: 32px;
}

/* ================= LAYOUT GERAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}
.page {
    flex: 1 1 auto;
    padding: 40px 20px 20px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}
html, body {
    height: 100%;
    width: 100%;
}
body {
    font-family: Arial, sans-serif;
    background: url('../img/bg-1920x1080.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: url('../img/bg-1920x1080.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    overflow-x: hidden;
}


/* ================= BACKGROUND RESPONSIVO ================= */
@media (min-width: 2560px) {
    body {
        background-image: url('../img/bg-2560x1440.jpg');
    }
}
@media (max-width: 1920px) and (min-width: 1367px) {
    body {
        background-image: url('../img/bg-1920x1080.jpg');
    }
}
@media (max-width: 1366px) {
    body {
        background-image: url('../img/bg-1366x768.jpg');
    }
}
@media (max-width: 1080px) {
    .logo {
        padding-top: 64px;
    }
    body {
        background-image: url('../img/bg-1080x1920.jpg');
    }
}

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}

.page {
    flex: 1 1 auto;
    padding: 40px 20px 20px;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
}

.hero-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 24px auto;
}

.title {
    /* ...existing code... */
}
html, body {
    height: 100%;
    width: 100%;
}

.description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
}


.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.arrow {
    font-size: 2rem;
    color: #8B5CF6;
    margin-right: 15px;
    font-weight: bold;
}

.contact-label {
    font-size: 1.2rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #F97316;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 8px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-icon.phone {
    background: #F97316;
    color: #fff;
}

.contact-icon.behance {
    background: #1769FF;
    color: #fff;
    font-family: Arial Black, sans-serif;
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #C13584, #833AB4);
    color: #fff;
}

.contact-item span {
    color: #000000;
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 768px) {
    .page {
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    .hero-section {
        margin: 0 !important;
        padding: 0 !important;
    }
    .contact-section {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100%;
        align-self: center;
    }
    .contact-header {
        justify-content: center;
    }
    .contact-list {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page {
        padding: 8px 4px 4px;
        gap: 20px;
    }
    .contact-item {
        font-size: 1rem;
        gap: 3px;
    }
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .page {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        padding: 20px 30px;
    }
    .hero-section {
        flex: 1;
        margin: 0;
    }
    .contact-section {
        flex-shrink: 0;
        text-align: left;
    }
    .contact-header {
        justify-content: flex-start;
    }
    .contact-list {
        align-items: flex-start;
    }
    .title {
    /* ...existing code... */
    }
    .description {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
}

