@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #E8C7C2; /* Cor de acento */
    --secondary-color: #4a403d; /* Cor secundária */
    --navbar-bg-color: #4a403d; /* Novo cor de fundo para a navbar (café rojizo) */
    --text-color: #707070;
    --light-color: #fff1f0;
    --bs-dark-rgb: 255, 241, 240;
    --bs-primary-rgb: 193, 162, 160;
    --dark-overlay: rgba(0,0,0,0.7);
    --swiper-navigation-color: #da8d82;
    --swiper-theme-color: #da8d82;
    --swiper-pagination-color: #da8d82;
	--bs-link-color-rgb: #da8d82;
}

html {
    overflow-x: hidden;
}

body {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    color: var(--text-color);
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

a {
    transition: all 0.8s ease 0s;
    text-decoration: none !important;
}

ul {
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

.wow {
    visibility: hidden;
}

/* Custom Navbar */
.custom-navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
    padding: 20px 0;
}

.custom-navbar.scrolled {
    background-color: var(--navbar-bg-color);
}

/* Estilos para o botão navbar-toggler */
.custom-navbar .navbar-toggler {
    background-color: var(--navbar-bg-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mostrar ou ocultar o navbar-toggler em diferentes tamanhos de tela */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: block;
    }

    /* Ajustar as transformações de AOS em telas pequenas */
    [data-aos="fade-left"] {
        transform: translateX(-30px) !important;
    }

    [data-aos="fade-left"].aos-animate {
        transform: translateX(0) !important;
    }

    [data-aos="fade-right"] {
        transform: translateX(30px) !important;
    }

    [data-aos="fade-right"].aos-animate {
        transform: translateX(0) !important;
    }

    /* Ajustar outras animações se necessário */
    [data-aos="fade-up"], [data-aos="fade-down"] {
        transform: translateY(0) !important;
    }

    /* Ajustar a posição de elementos que podem causar overflow */
    .process-number {
        right: 0px;
        top: 0px;
    }
}

/* Estilo dos links na navbar */
.nav-link {
    color: var(--light-color) !important; /* Cor do texto branco */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.custom-navbar.scrolled .nav-link {
    color: var(--light-color) !important; /* Assegura que a cor permaneça branca */
}

/* Ajuste opcional para o logo */
.navbar-brand img {
    height: 60px;
    filter: brightness(0) invert(1); /* Converte o logo para branco se for de cor escura */
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 30vh;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
}

.btn-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

/* Sobre Nós */
.about-content h2.section-title {
    font-size: 36px;
    text-align: center !important;
}

.about-content .lead {
    font-size: 21px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

/* Processo de Trabalho */
.process-card {
    background: #fff1f0;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    position: relative;
    margin-bottom: 15px;
}

.process-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Testemunhos */
#testemunhos {
    background-color: #4a403d; /* Cor de fundo escura para contraste */
}

#testemunhos .swiper {
    padding: 40px 0;
}

#testemunhos .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

#testemunhos .swiper-slide p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1rem;
    line-height: 1.6;
}

#testemunhos .swiper-slide h5 {
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

#testemunhos img {
    border: 3px solid var(--primary-color);
}

/* Responsividade */
@media (max-width: 767.98px) {
    #testemunhos p {
        max-width: 100%;
    }
}

/* Equipe (removida, mas mantida para possíveis referências futuras) */
.team-card {
    background: #fff1f0;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
}

.team-img img {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.team-social {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.team-social a {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

.team-info h4 {
    margin-top: 15px;
    font-size: 20px;
    color: var(--secondary-color);
}

.team-info p {
    font-size: 16px;
    color: var(--text-color);
}

/* Preços */
.price_table_sec .title_text_box {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.price_table_sec {
    padding: 50px 0px;
    position: relative;
}

.price_table_sec::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 994px;
    height: 544px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

.price_table_sec .title_text_box p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    width: 58%;
    text-align: center;
    margin: 0 auto;
}

.table_right {
    display: inline-block;
    float: right;
}

.table_left_box {
    display: inline-block;
}

.table_title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.30px;
    color: var(--secondary-color);
}

.table_left {
    border-bottom: 1px dashed #333;
    padding: 25px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.table_left:hover {
    transform: translateY(-5px);
    background-color: #f1f2f0;
}

.left_box, .right_box {
    padding: 0 15px;
}

.table_left_box p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.30px;
    color: #333;
}

.dollar {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.30px;
    color: var(--primary-color);
}

.abou_title {
    font-size: 36px;
    color: #da8d82;
    margin-bottom: 10px;
}

.title_text {
    font-size: 44px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsividade */
@media (max-width: 767.98px) {
    .table_left {
        flex-direction: column;
        align-items: flex-start;
    }

    .table_right {
        float: none;
        margin-top: 10px;
    }

    .price_table_sec .title_text_box p {
        width: 90%;
    }

    /* Ajustes adicionais para a seção de testemunhos em telas pequenas */
    #testemunhos p {
        max-width: 100%;
    }
}

/* Blog */
.blog-sec {
    text-align: center;
    background: #fff1f0;
    padding: 50px 0px;
    padding-bottom: 90px;
}

.blog-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    position: relative;
}

.blog-img img {
    border-radius: 8px;
}

.blog-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.blog-content h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 15px;
}

.blog-content p {
    font-size: 16px;
    color: var(--text-color);
    margin: 15px 0;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #fff;
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
}

/* Instagram Feed */
#instagram {
    padding: 50px 0;
}

#instagram iframe {
    border: none;
    height: 500px; /* Ajusta a altura conforme necessário */
}

/* Contato */
.contact_sec {
    margin: 60px 0px;
    position: relative;
}

.contact_sec::after {
    content: '';
    position: absolute;
    background: url("../images/blog_bg_img.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 370px;
    height: 364px;
    top: -245px;
    right: 0px;
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
    from { transform: translate(0, 0px); }
    65%  { transform: translate(0, 20px); }
    to   { transform: translate(0, 0px); }
}

.contact_sec::before {
    content: '';
    position: absolute;
    background: url("../images/contact_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 290px;
    height: 178px;
    bottom: -74px;
    right: 80px;
    animation: nudge 8s linear infinite alternate;
}

@keyframes nudge {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(80px, 0);
    }
    80% {
        transform: translate(-80px, 0);
    }
}

.contact_sec .title_text_box {
    margin: 0px;
    text-align: center;
    margin-bottom: 45px;
}

.form_sec {
    background: #fff;
    border: 2px solid #e79d92;
    padding: 30px 35px 0px 35px;
    box-shadow: 0px 0px 31.04px 0.96px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.form_sec .button01.from_btn {
    background: #e79d92;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.70px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    padding: 9px 36px;
    display: inline-block;
    border-radius: 30px;
    transition: all 0.8s ease;
    border: none;
}

.form_sec .button01.from_btn:hover {
    background: #000;
    color: #FFF;
}

.form-control {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    border-radius: 0px;
    letter-spacing: 0.20px;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    border: 1px solid #f4bebe;
    background: transparent;
    color: #9e9e9e;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e79d92;
}

/* Contato */

.contact-info .form_sec {
    /* Estilos já herdados de form_sec */
    background: #fff;
    border: 2px solid #e79d92;
    padding: 30px 35px 0px 35px;
    box-shadow: 0px 0px 31.04px 0.96px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

.contact-form .form_sec {
    /* Estilos já herdados de form_sec */
    background: #fff;
    border: 2px solid #e79d92;
    padding: 30px 35px 0px 35px;
    box-shadow: 0px 0px 31.04px 0.96px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

/* Mapa Responsivo */
.map-container iframe {
    border: 0;
    border-radius: 8px;
    height: 100%;
    min-height: 450px;
}

/* Ajustes para telas menores */
@media (max-width: 767.98px) {
    .map-container iframe {
        min-height: 300px;
    }
}


/* Botão Flutuante de WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp i {
    color: var(--light-color);
    font-size: 30px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 50px 0px;
    position: relative;
}

.footer_title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--light-color);
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.footer_1 p, .footer_2 p, .footer_3 p {
    color: #d3d3d3;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.30px;
}

.footer_2 ul li a, .footer_3 ul li a, .footer_4 ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.30px;
}

.footer_2 ul li a:hover, .footer_3 ul li a:hover {
    margin-left: 20px;
    border-bottom: 1px solid #e79d92;
}

.footer_social a {
    background: #e79d92;
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer_social a:hover {
    transform: rotateY(365deg);
    background: #fff;
    color: var(--primary-color);
}

.footer_sec {
    background: #333;
    border-top: 1px solid #fff;
    padding: 7px 0px;
}

.footer_sec_1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 36px;
    letter-spacing: 0.15px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
