html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
}

.h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.h2 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header-menu-navbar {
    display: flex;
    width: 100%;
    gap: 0.5rem;
    position: relative;
    height: 4rem;
    align-items: center;
}

.header-menu-btn {
    background: transparent !important;
    border: none !important;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: none !important;
    display: inline-block;
}

.header-menu-btn:hover,
.header-menu-btn:focus,
.header-menu-btn:active {
    background: rgba(218, 90, 49, 0.25) !important;
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    outline: none !important;
    box-shadow: none !important;
}

.header-menu-btn2 {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: none !important;
    display: inline-block;
}

.header-menu-btn2:hover {
    background: rgba(218, 90, 49, 0.35) !important;
    border-color: #DA5A31 !important;
    color: white !important;
}

.header-blur-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.header-menu-btn-position {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: space-between;
    text-align: center;
}

.header-logo {
    width: 35%;
}

.hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10000;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0.5rem 1rem 1rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu.open {
    display: flex;
}

.mobile-item {
    width: 100%;
    text-align: left;
}

.mobile-accordion-body {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    gap: 0.25rem;
}

.mobile-accordion-body.open {
    display: flex;
}

.mobile-sub-item {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
}

.mobile-sub-item:hover {
    color: white !important;
    background: rgba(218, 90, 49, 0.2) !important;
    border-radius: 6px;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-accordion-toggle[aria-expanded="true"] .accordion-arrow {
    transform: rotate(180deg);
}

.container1 {
    height: 100vh;
    width: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.0) 100%
    ), url('/images/home_batista_campos.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.container1-text-position {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 1rem 2rem;
    padding-bottom:6rem;
}

.container1-text {
    margin: 2px;
    color: #EFEDED;
}

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
.container1-text2 {
    font-family: "Questrial", sans-serif;
    font-size: 1.5rem;
    color: #EFEDED;
}

.container2 {
    margin: 2rem;
    background-color: white;
    text-align: center;
    padding: 0.5rem 1rem;
}

.container2-text {
    font-size: 4rem;    
    color: #606268;
    padding: 1rem;
    margin: 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.hero-controls button {
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-controls button:hover {
    background: #DA5A31;
    border-color: #DA5A31;
    transform: scale(1.1);
}

.botao-home {
    background-color: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    border: 2px solid #DA5A31;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.botao-home:hover {
    background-color: #DA5A31;
    color: #fff;
}

.container3-blur-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 30rem;
    margin: 2px;
}

    .container3-blur-box img {
        object-fit:cover;
    }


    .container3-blur-box-position {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: end;
        padding: 6rem;
    }

.container4 {
    padding: 5rem;
    background-color: #EFEDED;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container4-text1 {
    color: #606268;
    font-size: 4rem;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
.container4-text2 {
    color: #DA5A31;
    font-size: 4rem;
    font-weight: bold;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
}

.container4-text3 {
    color: #606268;
    font-weight: bold;
}

.container5 {
    background-color: #606268;
    padding: 4px;
}

.container5-box {
    border: 0;
    border-radius: 0.3rem;
    box-shadow: var(--bs-box-shadow);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background-color: #EFEDED;
}

.container5-text1 {
    color: #DA5A31;
    font-size: 2.5rem;
    font-weight: bold;
}

.container5-text2 {
    color: #606268;
    font-size: 1.5rem;
}

.form-control:focus {
    border-color: #DA5A31 !important;
    box-shadow: 0 0 0 0.25rem rgba(218, 90, 49, 0.25) !important;
}

.btn-primary {
    background-color: #fff;
    border-color: #DA5A31;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    color: #DA5A31;
}

.btn-primary:hover {
    background-color: #DA5A31;
    color: #fff;
    border-color: #DA5A31;
}


.container6-color {
    background-color: #606268;

    .row {
        padding-top: 2rem;
    }
}
.container6-background {
    overflow: hidden;
    background-image: url('/images/urbix_footer_home.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.birinha {
    margin-bottom:-4rem;
}

.logo-urbix-footer img{
    margin-left:4rem;
}

.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.from-bottom  { transform: translateY(40px); }
.reveal.from-left    { transform: translateX(-50px); }
.reveal.from-right   { transform: translateX(50px); }
.reveal.from-scale   { transform: scale(0.92); }

.reveal.visible {
    opacity: 1;
    transform: none;
}


.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.7s; }



@media (max-width: 991px) {
    .header-logo { width: 55%; }

    .header-menu-navbar {
        height: auto;
        padding: 0.5rem 0;
    }

    .container1-text-position { padding: 1rem; }

    .container1-text h1 { font-size: 2rem; }
    .container1-text h2 { font-size: 1.4rem; }

    .container2 { margin: 1rem; }
    .container2-text { font-size: 2.5rem; }

    .container3-blur-box-position {
        justify-content: center;
        padding: 2rem 1rem;
    }

    .container3-blur-box {
        max-width: 100%;
        width: 90%;
    }

    .container4 { padding: 3rem 2rem; }
    .container4-text1, .container4-text2 { font-size: 2.8rem; }

    .container5-box { margin: 3rem 2rem; }
    .container5-text1 { font-size: 2rem; }
    .container5-text2 { font-size: 1.2rem; }

    
    .container6-background .row {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        gap: 1rem;
    }

   
    .container6-background [class*="col-"] {
        width: 100% !important;
        max-width: 520px;
        flex: 0 0 100% !important;
        margin-left: 0 !important;
    }

    /* Birinha: cancela margin-bottom negativo e centraliza */
    .container6-background .birinha {
        margin-bottom: 0 !important;
        justify-content: center;
        max-width: 200px;
    }

    .container6-background .logo-urbix-footer {
        align-items: center;
    }
    .logo-urbix-footer img {
        margin-left: 0 !important;
    }

    .container6-background iframe {
        width: 100%;
    }
}


@media (max-width: 575px) {
    .header-logo { width: 70%; }

    .container1-text-position {
        padding: 1rem;
        padding-top: 5rem;
    }

    .container2 { margin: 0.5rem; }
    .container2-text { font-size: 1.6rem; padding: 0.5rem; }

    .hero { min-height: 80vh; }
    .hero-content-wrapper { min-height: 80vh; }

    .container3-blur-box {
        padding: 1.25rem;
        width: 95%;
    }

    .container3-blur-box-position {
        padding: 1rem 0.5rem;
        justify-content: center;
        align-items: flex-end;
    }

    .botao-home { font-size: 1.1rem; padding: 10px 16px; }

    .hero-controls button {
        font-size: 1.5rem;
        padding: 8px 14px;
        margin: 0 5px;
    }

    .container4 { padding: 2rem 1rem; }
    .container4-text1, .container4-text2 { font-size: 2rem; }

    .container5-box { margin: 1.5rem 0.75rem; padding: 1.25rem; }
    .container5-text1 { font-size: 1.6rem; }
    .container5-text2 { font-size: 1rem; }

    .container6-background {
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
    }

    .container6-background iframe {
        width: 100%;
        height: 200px;
    }

   
    .container6-background .birinha {
        max-width: 160px;
    }
    .container6-background .birinha img {
        max-width: 160px;
    }
}

.em-construcao-background {
    background-image: url('/images/em-construcao-fundo.png');
    background-size: cover;
    background-position: top;
}

.container-contato
{
    padding-top:4rem;
}