/* style.css */
/* MINIFICAR ESTE ARQUIVO ANTES DO DEPLOY */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #BFA288;
    --primary-dark: #8C6F5E;
    --primary-light: #D4C2B3;
    --secondary-color: #F2D845;
    --accent-color: #8C6F5E;
    --dark-color: #2D2D2D;
    --dark-gray: #4A4A4A;
    --medium-gray: #666666;
    --light-gray: #8A8A8A;
    --light-color: #FFFFFF;
    --bg-light: #F8F6F4;
    --bg-white: #FFFFFF;
    --border-light: #E8E8E8;
    --fundo: #DACABB;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--bg-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Botões */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
    box-shadow: 0 4px 12px rgba(191, 162, 136, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(191, 162, 136, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-light);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px var(--shadow-medium);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.tagline p {
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 2px solid var(--primary-color);
    padding-left: 12px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
#hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--fundo) 0%, var(--bg-light) 100%);
}

#hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

/* Sobre */
.sobre-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.sobre-destaque {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.sobre-destaque h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.sobre-destaque ul {
    list-style: none;
}

.sobre-destaque li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--medium-gray);
}

.sobre-destaque li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.servico-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.servico-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.servico-card p {
    margin-bottom: 20px;
    color: var(--medium-gray);
    flex-grow: 1;
}

.saiba-mais-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.saiba-mais-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
}

/* Diferenciais */
.diferenciais-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.diferenciais-content img {
    max-width: 500px;
    height: auto;
}

.diferenciais-text {
    flex: 2;
}

.diferencial-item {
    margin-bottom: 25px;
}

.diferencial-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.diferencial-item i {
    color: var(--primary-color);
}

.diferencial-item p {
    color: var(--medium-gray);
    margin-left: 30px;
}

.diferenciais-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    border-top: 4px solid var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-weight: 500;
    color: var(--medium-gray);
}

/* Processo */
.processo-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.step p {
    color: var(--medium-gray);
}

.processo-cta {
    text-align: center;
}

/* Depoimentos */
.depoimentos-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.depoimento-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.depoimento-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.depoimento-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-color);
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.depoimento-text::before,
.depoimento-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.depoimento-text::before {
    top: -15px;
    left: 0;
}

.depoimento-text::after {
    bottom: -30px;
    right: 0;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-prev,
.carousel-next {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: var(--primary-dark);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.faq-question {
    width: 100%;
    background-color: var(--bg-white);
    border: none;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    color: var(--dark-color);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--medium-gray);
    margin: 0;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
    color: var(--dark-color);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    color: var(--light-gray);
    font-size: 0.8rem;
}

/* Contato */
.contato-content {
    display: flex;
    gap: 40px;
}

.contato-info {
    flex: 1;
}

.contato-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contato-details h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.contato-details a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    margin-bottom: 5px;
}

.contato-details a:hover {
    color: var(--primary-color);
}

.contato-details p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.contato-form {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.contato-form h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* Mapa */
#mapa {
    padding: 0;
    width: 100%;
}

.mapa-container {
    width: 100%;
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Footer */
#footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

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

.footer-section h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-contact a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: var(--light-gray);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-gray);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--dark-color);
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--medium-gray);
}

.modal-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.modal-body strong {
    color: var(--dark-color);
}

.modal-cta {
    margin-top: 30px;
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    #hero .container {
        flex-direction: column;
    }

    .sobre-content {
        flex-direction: column;
    }

    .diferenciais-content {
        flex-direction: column;
    }

    .diferenciais-content img {
        width: 400px;
        height: auto;
    }

    .agendamento-content,
    .contato-content {
        flex-direction: column;
    }

    .processo-steps {
        flex-direction: column;
        gap: 30px;
    }

    .tagline {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 5px 15px var(--shadow-medium);
        padding: 20px;
        border-top: 1px solid var(--border-light);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-content img {
        width: 400px;
        height: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .logo img {
        height: 40px;
    }

    #header {
        padding: 10px 0;
    }

    #header.scrolled {
        padding: 6px 0;
    }

    .mapa-container iframe {
        height: 350px;
    }
}