/* ==========================================
   VARIÁVEIS E CORES
   ========================================== */
:root {
    --primary-color: #6b9e84;
    --secondary-color: #5a8a72;
    --accent-color: #d4a574;
    --light-color: #faf8f5;
    --dark-color: #2c2c2c;
    --text-gray: #555555;
    --border-gray: #e0e0e0;
    --success-color: #4caf50;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   RESET E ESTILOS GLOBAIS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-gray);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, input, textarea, select {
    font-family: var(--font-primary);
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.navbar-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.btn-contato {
    background: var(--accent-color) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    color: white !important;
}

.btn-contato:hover {
    background: darken(var(--accent-color), 10%) !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, rgba(107, 158, 132, 0.8) 0%, rgba(90, 138, 114, 0.8) 100%),
                url('img/fundo.png') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(201, 114, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 114, 106, 0.4);
    background: darken(#c9726a, 5%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ==========================================
   SEÇÃO SOBRE
   ========================================== */
.sobre {
    padding: 80px 0;
    background: var(--light-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 400;
}

.especialidade {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.sobre-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.sobre-image {
    text-align: center;
}

.foto-dra {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--box-shadow-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* ==========================================
   SEÇÃO SERVIÇOS
   ========================================== */
.servicos {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.servicos-destaque {
    margin-bottom: 4rem;
}

.servicos-destaque h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.servico-card.destacado {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(201, 114, 106, 0.15);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.servico-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servico-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-servico {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.link-servico:hover {
    color: var(--secondary-color);
}

.todos-servicos {
    border-top: 2px solid var(--border-gray);
    padding-top: 3rem;
}

.todos-servicos h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.servicos-grid-completa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.servico-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.servico-item:hover {
    background: white;
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
}

.servico-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servico-item h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.servico-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================
   NOVOS ESTILOS - SERVIÇOS DESTAQUE
   ========================================== */
.servicos-carros-chefe {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-gray);
}

.carros-chefe-label {
    text-align: center;
    margin-bottom: 2rem;
}

.badge-destaque {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
}

.carros-chefe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servico-card-destaque {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-gray);
}

.servico-card-destaque:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-10px);
}

.servico-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF6B6B;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.servico-badge.badge-chefe {
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(107, 158, 132, 0.3);
}

.servico-badge.badge-foco {
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.servico-imagem-destaque {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.servico-imagem-destaque img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.servico-card-destaque:hover .servico-imagem-destaque img {
    transform: scale(1.1);
}

.servico-info-destaque {
    padding: 2rem;
}

.servico-info-destaque h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.servico-descricao {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.servico-detalhes-lista {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detalhe-item {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-whatsapp {
    width: 100%;
    padding: 15px 20px !important;
    text-align: center;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 158, 132, 0.3);
}

/* ==========================================
   SERVIÇOS ADICIONAIS
   ========================================== */
.servicos-completos {
    margin-top: 3rem;
}

.servicos-completos-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    text-align: center;
    font-family: var(--font-secondary);
}

.servicos-grid-simples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.servico-item-simples {
    background: linear-gradient(135deg, rgba(107, 158, 132, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.servico-item-simples:hover {
    background: linear-gradient(135deg, rgba(107, 158, 132, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    transform: translateY(-5px);
}

.item-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.servico-item-simples h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.servico-item-simples p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   SEÇÃO DIFERENCIAIS
   ========================================== */
.diferenciais {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.diferenciais .section-title {
    color: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.diferencial:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.diferencial h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ==========================================
   SEÇÃO DEPOIMENTOS
   ========================================== */
.depoimentos {
    padding: 80px 0;
    background: var(--light-color);
}

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

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.depoimento-texto {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================
   SEÇÃO CONTATO
   ========================================== */
.contato {
    padding: 80px 0;
    background: white;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #FFFFFF;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.contato-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow-lg);
}

.contato-cta h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contato-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    width: 100%;
    justify-content: center;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom i {
    color: var(--primary-color);
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   SEÇÃO ATENDIMENTO
   ========================================== */
.atendimento {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(107, 158, 132, 0.05) 0%, rgba(212, 165, 116, 0.05) 100%);
}

.atendimento .section-title {
    margin-bottom: 1rem;
}

.atendimento .section-subtitle {
    margin-bottom: 3rem;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.local-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
}

.local-card:hover {
    box-shadow: var(--box-shadow-lg);
    transform: translateY(-10px);
}

.local-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.local-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.local-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.local-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-color);
}

.local-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 12px 20px !important;
}
