* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: rgb(216, 181, 116);
    color: #2c2c2c;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/*======================================================
                CORES
======================================================*/

:root {
    --primary: #5a0e12;
    --primary-dark: #470b0e;
    --gold: #b88b4a;
    --gold-light: rgb(216, 181, 116);
    --text: #303030;
    --gray: #6d6d6d;
    --light: #f7f7f7;
    --border: #ececec;
    --white: #fff;
    --shadow: 0 18px 45px rgba(0, 0, 0, .08);
    --radius: 18px;
    --transition: .35s;
}

/*======================================================
                TITULOS
======================================================*/

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    margin-top: 15px;
    font-size: 46px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-weight: 700;
}

/*======================================================
                BOTÕES
======================================================*/

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    transition: .4s;
    font-weight: 500;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 40px;
    transition: .35s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/*======================================================
                HEADER
======================================================*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    height: 120px;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo img {
    width: 85px;
    height: auto;
    display: block;
    object-fit: contain;
}

#logoFooter{
    width: 85px;
    height: auto;
    display: block;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.menu li {
    display: flex;
    align-items: center;
}

.menu a {
    color: var(--text);
    font-weight: 500;
    transition: .3s;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .35s;
}

.menu a:hover {
    color: var(--primary);
}

.menu a:hover::after {
    width: 100%;
}

.btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 34px;
    background: var(--primary);
    color: #fff;
    border-radius: 35px;
    font-weight: 500;
    transition: .35s;
}

.btn-header:hover {
    background: var(--gold);
    color: #fff;
}

.menu-mobile {
    display: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

/*======================================================
                HERO
======================================================*/

.hero {
    padding-top: 220px;
    padding-bottom: 110px;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 90px;
}

.subtitle {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 72px;
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero p {
    color: var(--gray);
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--gold);
    opacity: .12;
    border-radius: 50%;
    top: -35px;
    right: -35px;
    z-index: -1;
}

.hero-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    bottom: -25px;
    left: -25px;
    border-radius: 25px;
    z-index: -1;
}

/*======================================================
                ESPAÇAMENTO
======================================================*/

section {
    padding: 110px 0;
}

/*======================================================
                    SOBRE
======================================================*/

.sobre {
    background: var(--light);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: center;
    gap: 80px;
}

.sobre-imagem {
    position: relative;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.sobre-imagem::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    left: -25px;
    top: -25px;
    z-index: -1;
}

.sobre-texto h3 {
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin-bottom: 25px;
}

.sobre-texto p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 22px;
}

.numeros {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.numeros div {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .35s;
    text-align: center;
}

.numeros div:hover {
    transform: translateY(-8px);
}

.numeros h3 {
    font-size: 34px;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.numeros span {
    color: var(--gray);
    font-size: 15px;
}

/*======================================================
                ÁREAS
======================================================*/

.areas {
    background: #fff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}

.card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    transition: .4s;
    border: 1px solid #efefef;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .12);
}

.card-img {
    overflow: hidden;
    height: 240px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.card:hover .card-img img {
    transform: scale(1.08);
}

.card-body i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 139, 74, .12);
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 28px;
}

.card-body h3 {
    font-size: 31px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin-bottom: 22px;
}

.card-body ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
}

.card-body ul li {
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.card-body ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 10px;
    flex-shrink: 0;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    transition: .35s;
}

.card-btn:hover {
    background: var(--primary);
    color: #fff;
}

/*======================================================
            EFEITOS
======================================================*/

.card,
.numeros div {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s forwards;
}

.card:nth-child(2) {
    animation-delay: .15s;
}

.card:nth-child(3) {
    animation-delay: .3s;
}

.card:nth-child(4) {
    animation-delay: .45s;
}

.card:nth-child(5) {
    animation-delay: .6s;
}

.card:nth-child(6) {
    animation-delay: .75s;
}

.card:nth-child(7) {
    animation-delay: .9s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*======================================================
                DIFERENCIAIS
======================================================*/

.diferenciais {
    background: var(--light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.item {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .35s;
    border: 1px solid #ececec;
    position: relative;
    overflow: hidden;
}

.item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
    transition: .35s;
}

.item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);
}

.item:hover::before {
    width: 100%;
    opacity: .06;
}

.item i {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 139, 74, .12);
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 28px;
}

.item h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 18px;
}

.item p {
    color: var(--gray);
    line-height: 1.8;
}

/*======================================================
                PROCESSO
======================================================*/

.processo {
    background: #fff;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.processo-grid div {
    text-align: center;
    padding: 40px 30px;
    border-radius: 22px;
    border: 1px solid #ededed;
    transition: .35s;
    background: #fff;
}

.processo-grid div:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.processo-grid span {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.processo-grid h3 {
    font-size: 28px;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.processo-grid p {
    color: var(--gray);
    font-size: 15px;
}

/*======================================================
                CTA
======================================================*/

.cta {
    background: linear-gradient(135deg, var(--primary), #7d151b);
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -180px;
    right: -100px;
}

.cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    left: -80px;
    bottom: -100px;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 40px;
    opacity: .9;
    position: relative;
    z-index: 2;
}

.cta .btn-primary {
    background: var(--gold);
    color: #fff;
    position: relative;
    z-index: 2;
}

.cta .btn-primary:hover {
    background: #fff;
    color: var(--primary);
}

/*======================================================
                CONTATO
======================================================*/

.contato {
    background: #fff;
}

.contato-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: flex-start;
}

.contato h2 {
    font-size: 46px;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
}

.contato p {
    color: var(--gray);
    margin-bottom: 15px;
}

.info {
    margin-top: 35px;
}

.info p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.info i {
    color: var(--gold);
    font-size: 20px;
    width: 24px;
}

form {
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    border: 1px solid #ededed;
}

form input,
form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

form textarea {
    min-height: 170px;
    resize: vertical;
}

form input:focus,
form textarea:focus {
    border-color: var(--gold);
}

form button {
    width: 100%;
    height: 58px;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: .35s;
}

form button:hover {
    background: var(--gold);
}

/*======================================================
                    FOOTER
======================================================*/

footer {
    background: #1f1f1f;
    color: #fff;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

footer img {
    width: 220px;
    margin-bottom: 25px;
}

footer p {
    color: #cfcfcf;
    line-height: 1.8;
}

footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer ul li {
    color: #cfcfcf;
    transition: .35s;
    cursor: pointer;
}

footer ul li:hover {
    color: var(--gold);
    padding-left: 8px;
}

.copy {
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding-top: 30px;
    color: #999;
    font-size: 14px;
}

/*======================================================
                WHATSAPP
======================================================*/

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    z-index: 999;
    transition: .35s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/*======================================================
                SCROLL TOP
======================================================*/

.scroll-top {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold);
}

/*======================================================
                ANIMAÇÕES
======================================================*/

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-text {
    animation: fade .9s ease;
}

.hero-image {
    animation: float 5s ease-in-out infinite;
}

/*======================================================
                    RESPONSIVO
======================================================*/

@media (max-width:1200px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .processo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/*================ TABLET =================*/

@media (max-width:991px) {

    #header {
        height: 85px !important;
    }

    #header .container {
        height: 85px !important;
    }

    .logo {
        height: 85px !important;
    }

    .logo img {
        width: 65px !important;
    }

    nav {
        position: fixed;
        top: 85px !important;
        left: -100%;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        transition: .35s;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    .menu {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 25px;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: block;
        padding: 12px 0;
        font-size: 17px;
    }

    .btn-header {
        display: none;
    }

    .menu-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 30px;
        color: var(--primary);
        cursor: pointer;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .processo-grid {
        grid-template-columns: 1fr;
    }

    .numeros {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer img {
        margin: auto auto 25px;
    }

}

/*================ CELULAR =================*/

@media(max-width:768px) {

    #header {
        height: 75px !important;
    }

    #header .container {
        height: 75px !important;
    }

    .logo {
        height: 75px !important;
    }

    .logo img {
        width: 45px !important;
    }

    nav {
        top: 75px !important;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .card-body {
        padding: 28px;
    }

    .item {
        padding: 30px;
    }

    .cta h2 {
        font-size: 36px;
    }

    form {
        padding: 30px;
    }

}

@media(max-width:576px) {

    .container {
        width: 92%;
    }

    .card-img {
        height: 220px;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        font-size: 26px;
        right: 18px;
        bottom: 18px;
    }

    .scroll-top {
        width: 52px;
        height: 52px;
        left: 18px;
        bottom: 18px;
    }

}

#header {
    transition: transform .35s ease;
}

@media (max-width:991px) {

    #header.hide-header {
        transform: translateY(-100%);
    }

    .cards {
        display: flex;
        overflow-x: auto;
        gap: 18px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding: 10px 5%;
        margin: 0 -5%;

        scrollbar-width: none;
    }

    .cards::-webkit-scrollbar {
        display: none;
    }

    .cards .card {
        min-width: 85%;
        max-width: 85%;
        flex: 0 0 85%;

        scroll-snap-align: center;
    }
}

.developer{
    text-align:center;
    margin-top:12px;
    padding-bottom:20px;
    font-size:12px;
    color:#888;
}

.developer a{
    color:#6A0DAD; 
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.developer a:hover{
    color:#8A2BE2;
}