:root {
    --primary: #5D0A28;
    --secondary: #B58A11;
    --white: #FFF;
    --gray: #3F3F3E;
    --light-gray: #EAEAEA;
    --dark: #252525;
    --green: #17b22e;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: var(--white);
}

#header.header-scrolled, #header.header-inner-pages {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        padding: 12px 0;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: var(--gray);
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
    color: var(--secondary);
}

.navbar .getstarted, .navbar .getstarted:focus {
    padding: 6px 25px;
    margin-left: 30px;
    border-radius: 3px;
    font-size: 16px;
    color: var(--white);
    background-color: var(--green);
    border: 2px solid var(--green);
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: var(--white);
    background-color: #22c74c;
    border: 2px solid #22c74c;
}

/* .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
    color: #5a5af3;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
} */

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(92, 10, 40, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--primary);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover>a {
    color: var(--primary);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

/* .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover>a {
    color: #5a5af3;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
} */

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero,
#obrigado {
    width: 100%;
    height: 100vh;
    /* background: var(--primary); */
    background: url('../img/background/bg.webp') no-repeat;
    background-position: center center;
    background-size: cover;
}

#hero .container {
    padding-top: 80px;
}

#hero h1,
#obrigado h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 400;
    line-height: 61.6px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
}

#hero p,
#obrigado p {
    margin: 30px 0 0 0;
    font-size: 18px;
    color: var(--white);
}

#hero .formulario {
    width: 90%;
}

@media (max-width: 768px) {
    #hero {
        height: 100%;
        text-align: center;
    }

    #hero .container {
        padding-top: 0;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
        margin-top: 20px;
    }

    #hero ul {
        text-align: left;
        font-size: 14px;
    }

    #hero .formulario {
        width: 100%;
        margin: 35px 0 0 0;
    }
}


/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about .content h2 {
    font-weight: 500;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about .content p {
    margin-bottom: 0;
    text-align: justify;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: var(gray);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .card {
    margin-bottom: 20px;
    height: 100%;
    border-radius: 12px;
}

.services .card h4 {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: var(--gray);
}

.services .card p {
    font-size: 15px;
    margin-bottom: 15px;
    padding: 0;
    line-height: 1.5em;
}

.services .card picture>img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/*--------------------------------------------------------------
  # Why Us
  --------------------------------------------------------------*/
.why-us {
    background-color: var(--primary);
    /* background: url(../img/background/bg3.webp) no-repeat;
    background-position: center;
    background-size: cover; */
}

.why-us .section-title span,
.why-us .section-title h2 {
    color: #fff;
}

/* .bg-elipse {
    background: url(../img/elipse-bg-three.png) no-repeat;
    background-position: center;
    background-size: contain;
  } */

.why-us .b-screen {
    margin: -10px 0;
}

.why-us .b-screen a {
    background-color: var(--green);
    border-color: var(--green);
    width: 80%;
    padding: 10px 0;
    font-size: 18px;
}

.why-us .b-one {
    text-align: right;
}

.why-us .b-two {
    text-align: left;
}

.why-us .feature-item i {
    color: #ff5b63;
}

.why-us .feature-item h2 {
    font-weight: 600;
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
}

.why-us .feature-item p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

.why-us .feature-item:not(:last-child) {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .why-us .feature-item {
        margin-bottom: 80px;
    }

    .why-us .b-one,
    .why-us .b-two {
        text-align: center;
    }

    .why-us .b-screen {
        margin: -40px 0 30px 0;
    }
}

/*--------------------------------------------------------------
# Benefits
--------------------------------------------------------------*/
.benefits {
    padding: 70px 0 60px;
}

.benefits .section-title h2 {
    text-align: left;
}

.benefits .benefits-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 20px;
    align-items: center;
    padding: 30px 0 30px 0;
    width: 80%;
}

.benefits .benefits-box picture {
    background: var(--primary);
    border-radius: 8px;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefits .benefits-box picture>img {
    width: 45px;
    height: 45px;
}

.benefits .benefits-box h2 {
    padding: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.5em;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 575px) {
    .benefits .benefits-box {
        width: 100%;
    }

    .benefits {
        margin: 0 10px 0 10px;
    }
}

/*--------------------------------------------------------------
# Unidades 
--------------------------------------------------------------*/
.unidades .section-title h2 {
    text-align: left;
}

.unidades .map {
    width: 80%;
    float: right;
}

.unidades .box {
    background: #EAEAEA;
    padding: 70px;
    border-radius: 12px;
}

.unidades .box h2 {
    font-size: 18px;
    color: var(--primary);
}

.unidades .box p {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

.unidades .box i {
    color: var(--secondary);
    padding-right: 5px;
}

.unidades .box img {
    width: 120px;
    margin-top: -7%;
}

@media (max-width: 575px) {
    section.unidades {
        padding-top: 10px;
    }
    
    .unidades .box {
        padding: 60px;
    }

    .unidades .map {
        width: 100%;
        margin-top: 35px;
    }
}

/*--------------------------------------------------------------
  # Frequently Asked Questions
  --------------------------------------------------------------*/
.faq {
    padding: 60px 0;
    background: url('../img/background/bg.webp') no-repeat;
    background-position: center center;
    background-size: cover;
}

.faq .section-title h2 {
    color: var(--white);
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid var(--white);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: var(--secondary);
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
    color: var(--white);
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: var(--white);
}

.faq .faq-list .collapsed:hover {
    color: var(--secondary);
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}