/* ===================================
   Reset e configurações base
   =================================== */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.txt-orange {color: #ff4a17!important;}
.main-heading > .txt-orange {font-size: 60px; line-height: 0;}

/* ===================================
   Container principal
   =================================== */

.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===================================
   Efeitos de fundo decorativos
   =================================== */

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.blur-effect {
    position: absolute;
    width: 151px;
    height: 151px;
    background-color: #ff4a17;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(125px);
}

.blur-effect-top-right {
    top: 0;
    right: 0;
}

.blur-effect-bottom-left {
    bottom: 0;
    left: 0;
}

/* ===================================
   Logo da agência
   =================================== */

.logo-container {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.logo-image {
    width: 180px;
    height: auto;
    display: block;
}

/* ===================================
   Card de conteúdo principal
   =================================== */

.content-card {
    position: relative;
    z-index: 10;
    width: 94%;
    max-width: 800px;
    background-color: #ffebe4;
    border-radius: 40px;
    box-shadow: 0px 4px 50px 0px rgba(255, 85, 0, 0.10);
    padding: 71px 40px;
    margin-bottom: 30px;
}

.card-inner {
    text-align: center;
}

.main-heading {
    font-size: 32px;
    font-weight: 300;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.highlight-text {
    font-weight: 700;
}

.subtitle-text {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 12px;
}

.instagram-handle a{
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.instagram-handle:hover {
    color: #ff4a17;
}

/* ===================================
   Seção de contato
   =================================== */

.contact-section {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 730px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-text {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    max-width: 470px;
    text-align: left;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 220px;
    height: 58px;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

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

.button-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* ===================================
   Barra decorativa inferior
   =================================== */

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #ff5500;
    z-index: 20;
}

/* ===================================
   Responsividade - Tablet
   =================================== */

@media screen and (max-width: 1024px) {
    .logo-image {
        width: 150px;
    }

    .content-card {
        max-width: 90%;
        padding: 50px 30px;
    }

    .main-heading {
        font-size: 28px;
    }

    .subtitle-text {
        font-size: 16px;
    }

    .instagram-handle {
        font-size: 22px;
    }

    .contact-section {
        max-width: 90%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-text {
        text-align: center;
        max-width: 100%;
    }

    .whatsapp-button {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   Responsividade - Mobile
   =================================== */

@media screen and (max-width: 768px) {
    .main-container {
        padding: 15px;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .logo-image {
        width: 120px;
    }

    .content-card {
        max-width: 100%;
        padding: 40px 25px;
        border-radius: 30px;
        margin-bottom: 25px;
    }

    .main-heading {
        font-size: 24px;
    }

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

    .instagram-handle {
        font-size: 20px;
    }

    .contact-section {
        max-width: 100%;
    }

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

    .whatsapp-button {
        width: 100%;
        max-width: 250px;
        height: 52px;
    }

    .button-text {
        font-size: 16px;
    }

    .blur-effect {
        width: 100px;
        height: 100px;
        filter: blur(80px);
    }
}

/* ===================================
   Responsividade - Mobile pequeno
   =================================== */

@media screen and (max-width: 480px) {
    .logo-image {
        width: 100px;
    }

    .content-card {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .main-heading {
        font-size: 26px;
    }

    .subtitle-text {
        font-size: 14px;
    }

    .instagram-handle {
        font-size: 18px;
    }

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

    .whatsapp-button {
        max-width: 220px;
        height: 48px;
    }

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

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

@media screen and (max-width: 350px) {
    .main-heading {
        font-size: 20px;
    }
}