* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e1e1e;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --beige: #f5f0e8;
    --gold: #c6a43b;
    --gold-dark: #9f812e;
    --gray-border: #eae6e0;
    --text-dark: #1f1f1f;
    --text-light: #5a5a5a;
}

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

h1, h2, h3 {
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--black);
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.header.hide {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 90px;
}

.logo-img {
    height: 120px;
    width: auto;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    opacity: 0.85;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
    height: 90px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

.btn-primary {
    display: inline-block;
    background: var(--black);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.25s ease;
    border: 1px solid var(--black);
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    padding: 10px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

.btn-small {
    background: transparent;
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 40px;
    color: var(--gold-dark);
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-small:hover {
    background: var(--gold);
    color: white;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 140px;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,240,0.95);
    margin-bottom: 2rem;
}

section {
    padding: 80px 0;
    border-bottom: 1px solid var(--gray-border);
}

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

.two-columns {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 250px;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.segment-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.segment-card {
    background: white;
    border-radius: 28px;
    padding: 1.8rem;
    transition: all 0.35s ease;
    border: 1px solid var(--gray-border);
}

.segment-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
}

.segment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

.segment-card:hover h3 {
    color: var(--gold-dark);
}

.segment-card h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.segment-card:hover h3::after {
    width: 100%;
}

.segment-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.diferenciais-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.diferenciais-section .container {
    position: relative;
    z-index: 2;
}

.diferenciais-section .section-subtitle {
    color: var(--gold);
}

.diferenciais-section h2 {
    color: white;
}

.diffs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.diff-item {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(198, 164, 59, 0.3);
}

.diff-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: white;
}

.diff-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-flex {
    display: flex;
    gap: 3rem;
    background: var(--black);
    border-radius: 40px;
    padding: 3rem;
    color: white;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
}

.contact-item {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-item i {
    font-size: 1.5rem;
    width: 32px;
    color: var(--gold);
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.extra-card {
    flex: 1;
    min-width: 220px;
    background: white;
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: all 0.3s;
    cursor: pointer;
}

.extra-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.extra-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.blog-preview {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    margin-top: 2rem;
}

.blog-post {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-border);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h4 {
    color: var(--gold-dark);
    margin-bottom: 0.3rem;
    cursor: pointer;
}

.blog-post h4:hover {
    color: var(--gold);
}

.agendamento-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    margin: 20px;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid var(--gray-border);
    border-radius: 40px;
    font-family: inherit;
}

footer {
    background: #ffffff;
    color: #1e1e1e;
    padding: 56px 0 32px;
    border-top: 1px solid var(--gray-border);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-col p, .footer-col a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col i {
    color: var(--gold);
    margin-right: 8px;
    width: 20px;
}

.footer-col .logo {
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-border);
    font-size: 0.85rem;
    color: #4a4a4a;
}

.copyright p {
    margin: 0.3rem 0;
}

.copyright .developed-by {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.copyright .developed-by a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.copyright .developed-by a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ============================================ */
/* RESPONSIVIDADE - TABLET (768px a 1024px) */
/* ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    .segment-grid-cards {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    
    .two-columns {
        gap: 2rem;
    }
}

/* ============================================ */
/* RESPONSIVIDADE - CELULAR (até 768px) */
/* ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header responsivo */
    .header {
        height: 80px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        border-bottom: 1px solid var(--gray-border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        height: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    /* Hero responsivo */
    .hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
    }
    
    /* Títulos responsivos */
    h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    /* Seções responsivas */
    section {
        padding: 50px 0;
    }
    
    /* Colunas responsivas */
    .two-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .col {
        width: 100%;
    }
    
    /* Grids responsivos */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .segment-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diffs-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .diff-item {
        width: 100%;
    }
    
    .extras-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .extra-card {
        width: 100%;
    }
    
    /* Contato responsivo */
    .contact-flex {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        border-radius: 28px;
    }
    
    .contact-item {
        flex-wrap: wrap;
    }
    
    /* Footer responsivo */
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
        width: 100%;
    }
    
    .footer-col .logo {
        justify-content: center;
        display: flex;
    }
    
    .footer-col i {
        margin-right: 5px;
    }
    
    /* Cards responsivos */
    .service-card {
        padding: 1.5rem;
    }
    
    .segment-card {
        padding: 1.5rem;
    }
    
    .segment-card h3 {
        font-size: 1.3rem;
    }
    
    /* Boletim Diário responsivo */
    #boletim .container > div {
        padding: 1.5rem;
    }
    
    #boletim h2 {
        font-size: 1.5rem;
    }
    
    #boletim ul li {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .btn-small, .btn-primary, .btn-outline-gold {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Modal responsivo */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-content input, 
    .modal-content select,
    .modal-content textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* RESPONSIVIDADE - CELULAR PEQUENO (até 480px) */
/* ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        height: 70px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-links {
        top: 70px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .segment-card h3 {
        font-size: 1.2rem;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .btn-outline-gold {
        width: 100%;
        text-align: center;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-col p, .footer-col a {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .copyright .developed-by {
        font-size: 0.7rem;
    }
    
    /* Ajuste do botão no boletim */
    #boletim .btn-small {
        width: 100%;
        justify-content: center;
    }
    
    /* Formulário área do cliente */
    #envioClienteForm input,
    #envioClienteForm textarea {
        font-size: 0.85rem;
    }
}

/* ============================================ */
/* RESPONSIVIDADE - TABLET LANDSCAPE (1024px) */
/* ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .segment-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* ============================================ */
/* AJUSTES PARA TELA MÉDIA (até 900px) */
/* ============================================ */
@media (max-width: 900px) {
    .diferenciais-section {
        background-attachment: scroll;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* ============================================ */
/* AJUSTES PARA IMPRESSÃO */
/* ============================================ */
@media print {
    .header, footer, .btn-primary, .btn-small, .agendamento-modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white;
        color: black;
        padding: 20px 0;
    }
}