@font-face {
    font-family: 'Montserrat';
    src: url(fonts/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Gucina';
    src: url(fonts/Gucina-Regular.otf);
    font-weight: normal;
}

@font-face {
    font-family: 'Gucina';
    src: url(fonts/Gucina-Bold.otf);
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #D8D8D8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 15px;
}
.container2 {
    width: 90%;
    max-width: 1280px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Cabeçalho */
header {
    padding: 15px 0;
    background-color: #494949;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 200px;
    height: auto;
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #C0B098;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #FFEFD4;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

nav ul li a:hover {
    color: #C0B098;
    transform: translateY(-2px);
    text-decoration: underline;
}

nav ul li a.li-contact {
    color: #494949;
    background-color: #FFEFD4;
    padding: 8px 14px;
}

nav ul li a.li-contact:hover {
    background-color: #E7D8C7;
    color: #494949;
    transform: translateY(-2px);
}

/* Seção Hero */
.hero {
    position: relative;
    width: 100%;
    /* min-height: 100dvh; */
    min-height: 800px;
    background: #D8D8D8 url('img/banner2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    aspect-ratio: 12 / 5;
    border-radius: 0 0 50px 50px;
    padding-top: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    /* background: rgba(0,0,0,0.1); */
}

.hero-content {
    /* width: 100%;
    height:100dvh;
    padding-top: 100px;
    padding-left: 250px; */
    width: 930px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Gucina', 'Arial', sans-serif;
    font-size: 64px;
    margin-bottom: 40px;
    color: black;
    line-height: 1;
    font-weight: 400;
}

.hero h1 span {
    font-family: 'Gucina', 'Arial', sans-serif;
    color: #E7D8C7;
    font-weight: 700;
}

.hero p {
    font-size: 28px;
    color: black;
    margin-bottom: 0px;
    font-weight: 500;
    line-height: 1;
}

.hero p.sub-p {
    font-weight: 400;
    max-width: 900px;
    margin-bottom: 60px;
}

.hero .btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.hero .btns .btn {
    font-size: clamp(16px, 2.5vw, 24px);
    padding: 12px 20px;
    background-color: #E7D8C7;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 2px 1px 10px black;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
    font-weight: 600;
    z-index: 99999999;
}

.hero .btns .btn:hover {
    background-color: #C0B098;
    transform: translateY(-3px);
    box-shadow: 2px 4px 15px black;
}

/* Seção Serviços */
.services {
    text-align: center;
    padding:  0 0 40px 0;
    background-color: #D8D8D8;
    display: flex;
    justify-content: center;
}

.services h2, .services .section-subtitle{
    padding:0 48px;
}

.services .back {
    background-color: #C0B098;
    width: 95%;
    border-radius: 0 0 100px 100px;
    padding: 80px 0;
}

.services .container {
    background-color: #C0B098;
    max-width: 1200px;
}

.section-title {
    font-family: 'Gucina', 'Arial', sans-serif;
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
    color: black;
    line-height: 1;
}

.section-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #494949;
}

.section-subtitle.sub {
    font-weight: 600;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 70px;
}

.card {
    background: #D9D9D9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    margin-top: 50px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-icon {
    width: 100px;
    height: 100px;
    background-color: #AB9676;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.card-icon:hover {
    transform: translateX(-50%) scale(1.1);
}

.card-icon img {
    max-width: 60%;
    height: auto;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: black;
    line-height: 1.2;
}

.card-text {
    font-size: clamp(14px, 2vw, 18px);
    color: black;
    line-height: 1;
    font-weight: 400;
    padding:20px;
}

/* Seção Sobre */
.about {
    padding: 60px 0;
    background-color: #D8D8D8;
}

.about .container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.about-image, .about-content {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-family: 'Gucina', 'Arial', sans-serif;
    font-size: 64px;
    margin-bottom: 20px;
    color: #967C54;
    line-height: 0.9;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 20px;
    color: #494949;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 10px;
    color: #494949;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    display: flex;
    align-items: end;
}

.about-list li span {
    color: #494949;
    font-weight: bolder;
    font-size: 24px;
    margin-right: 10px;
}

/* Seção Portfólio */
.portfolio {
    /* padding: 60px 0 0 0; */
    text-align: center;
}

.portfolio .back {
    background-color: #C0B098;
    padding: 40px 5%;
    border-radius: 50px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.portfolio .section-title {
    font-weight: 400;
    font-size: 64px;
}

.portfolio .section-subtitle {
    font-weight: 700;
    font-size: 26px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item div {
    color: white;
    background-color: #967C54;
    font-size: 24px;
    font-weight: 400;
    padding: 10px 0;
    margin-top: -10px;
}

.portfolio-item:hover div {
    background-color: #7a6545;
}

.portfolio-slider {
    position: relative;
    margin: 40px auto;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    padding: 0 10px;
}

.slider-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 50px;
}

.slider-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    position: relative;
    top: -40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Seção Recursos */
.features {
    padding: 0 0 60px 0;
}

.features .container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding-top: 0;
}

.features-list {
    flex: 1;
    /* height: 680px; */
    height: auto;
}

.features-list div {
    background-color: #494949;
    padding: 30px;
    border-radius: 0 0 30px 30px;
    text-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.features-list h2 {
    font-family: 'Gucina', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 85px;
    color: #FFEFD4;
    line-height: 1;
}

.features-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.features-item i {
    margin-right: 10px;
    margin-bottom: 15px;
    font-size: 22px;
}

.features-item h3 {
    font-size: 28px;
    font-weight: 600;
    color: #494949;
    margin-bottom: 15px;
}

.features-content {
    margin-top: 50px;
    flex: 1;
    /* height: 600px;
    max-height: 600px; */
}

.features-content p {
    color: #494949;
    font-size: 28px;
    font-weight: 800;
    margin: 20px 0;
}

.features-content .btn {
    color: #FFEFD4;
    background-color: #494949;
    width: 100%;
    max-width: 700px;
    padding: 10px;
    border-radius: 30px;
    border: none;
    font-size: 28px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    margin: 0 auto;
    display: block;
    text-decoration: none;
    text-align: center;
}

.features-content .btn:hover {
    background-color: #3a3a3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


/* Seção Depoimentos */
.testimonials {
    padding: 60px 0 0 0;
    text-align: center;
}

.testimonials .back {
    width: 100%;
    background-color: #967C54;
    border-radius: 50px 50px 0 0;
    padding-bottom: 80px;;
}

.testimonials .container {
    max-width: 1500px;
}

.testimonials .section-title {
    color: white;
    font-weight: 400;
    font-size: 64px;
    margin-bottom: 70px;
    padding-top: 80px;
}

.testimonial-container {
    display: flex;
    flex-direction: row;
}

.testimonial-item {
    padding: 0 10px;
    height: 400px;
    flex: 1;
}

.testimonial-card {
    position: relative;
    background: #D9D9D9;
    border-radius: 70px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 40px 40px 40px 80px;
    text-align: left;
    min-height: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.aspa{
    position: absolute;
    top: 100px;
    left: 30px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.author-info h4 {
    color: #967C54;
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 800;
}

.testimonial-text {
    color: #494949;
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 15px;
}

.testimonial-aval {
    font-size: 21px;
    color: #967C54;
}

.testimonial-aval i {
    font-size: 11px;
    margin-right: 5px;
}

/* Seção Contato */
.contact {
    padding: 60px 0;
    background-color: #C0B098;
}

.contact .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
}

.contact-info h2 {
    font-family: 'Gucina', 'Arial', sans-serif;
    color: black;
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1;
    font-weight: 400;
}

.contact-info h2.sub {
    color: white;
    padding-top: 10px;
}

.contact-info p {
    color: black;
    font-size: 28px;
    font-weight: 700;
}

.contact-info p.sub {
    font-weight: 500;
    line-height: 1;
}

form {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 20px;
}

.form-group  {
    display: flex;
    justify-content: center;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #F1EEE9;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form .btn {
    background-color: #494949;
    color: white;
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin: 20px auto 0;
    display: block;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #3a3a3a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact p.more {
    text-align: center;
    margin-top: 80px;
    color: #967C54;
    font-size: 28px;
    font-weight: 600;
}

.contact p.more .btn-whatsapp {
    color: white;
    background-color: #967C54;
    border-radius: 40px;
    border: none;
    padding: 10px 20px;
    font-size: 28px;
    margin-top: 10px;
    text-decoration: none;
}

.contact p.more .btn-whatsapp:hover {
    background-color: #7a6545;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact p.more .btn-whatsapp i {
    font-size: 32px;
}

/* Rodapé */
footer {
    background-color: #494949;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFEFD4;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    width: 100%;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.footer-links ul li a:hover {
    color: #C0B098;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: clamp(14px, 2vw, 16px);
}

.footer-contact i {
    margin-right: 10px;
    color: #FFEFD4;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFEFD4;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #C0B098;
    transform: translateY(-3px);
}

.footer-social a i {
    color: #494949;
    font-size: 32px;
}

.footer-social a:hover i {
    color: #3a3a3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

nav ul li a,
nav ul li a.li-contact,
.hero .btns .btn,
.card,
.card-icon,
.portfolio-item img,
.portfolio-item div,
.features-content .btn,
.testimonial-card,
.form-submit .btn,
.contact p.more .btn-whatsapp,
.footer-links ul li a,
.footer-social a {
    transition: all 0.3s ease;
}
textarea:focus, input:focus, select:focus {
    box-shadow: 0 0 0 0;
    border: 0 none;
    outline: 0;
} 
.footer-contact a, .footer-contact a:hover, .footer-contact a:visited, .footer-contact a:active {
    text-decoration: none;
    color: #FFF;
}
    header{
        position: fixed;
        width: 100%;
        z-index: 111111111;
    }