/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c9a961;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo h1 {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c9a961" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #b89651;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b89651 100%);
    border-radius: 10px;
    position: relative;
}

.about-image .image-placeholder::after {
    content: "🏢";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    opacity: 0.3;
}

.section-tag {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 36px;
    margin: 15px 0 25px;
    color: var(--text-dark);
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin: 15px 0 20px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* PMOC Section */
.pmoc {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.pmoc-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.pmoc-text h2 {
    font-size: 36px;
    margin: 15px 0 25px;
    color: var(--text-dark);
}

.pmoc-text > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.pmoc-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.pmoc-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.pmoc-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pmoc-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.pmoc-item ul {
    list-style: none;
    margin: 15px 0;
}

.pmoc-item li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.pmoc-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.pmoc-image .image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    position: relative;
}

.pmoc-image .image-placeholder::after {
    content: "📋";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.2;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; 
}

.pmoc-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pmoc-image img {
  width: 100%;
  height: 100%;
  max-width: 520px;      /* ajusta se quiser menor/maior */
  border-radius: 18px;   /* mesmo raio do card do layout */
  object-fit: cover;     /* cobre todo o espaço sem deformar */
  display: block;
}

/* GRID CONTATO */
.contact-grid {
    display: grid;
    gap: 2rem;
}

/* Cards de contato (coluna da esquerda) */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Botão (coluna da direita) */
.contact-cta {
    display: flex;
    align-items: center;      /* centraliza verticalmente na coluna */
    justify-content: center;  /* centraliza horizontalmente */
}

.contact-cta {
    margin-top: 2.5rem;          /* afasta do último card */
    display: flex;
    justify-content: center;
}

.contact-cta .btn-full {
    width: 100%;
    max-width: 800px;            /* limite de largura bonito no desktop */
}


/* Estilo do botão */
.contact-cta .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2.4rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;

    /* se já tiver as cores da .btn-primary, pode tirar isso aqui */
    background: #cba650;
    color: #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.16);
    background: #b28f40; /* tom um pouco mais escuro no hover */
}

/* ---- RESPONSIVO ---- */
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 2fr 1.2fr; /* cards maiores e botão na direita */
        align-items: stretch;
    }
}

@media (max-width: 899px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        order: 2;              /* botão depois dos cards no mobile */
        margin-top: 0.5rem;
    }

    .contact-cta .btn {
        width: 100%;           /* botão full no mobile */
    }
}



.blog-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* preenche o espaço sem deformar */
    display: block;
}




.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--bg-light);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 12px;
    margin-bottom: 0;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 130px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-grid,
    .pmoc-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-header h2,
    .about-content h2,
    .pmoc-text h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* GRID CONTATO */
.contact-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

/* Coluna da esquerda */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Coluna da direita (botão) */
.contact-cta {
    display: flex;
    align-items: center;      /* centraliza verticalmente na coluna */
    justify-content: center;  /* centraliza horizontalmente */
}

/* Botão WhatsApp */
.contact-cta .btn-full {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 420px;          /* largura máxima da “faixa” */
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Se já tiver .btn-primary com cor, não precisa mexer aqui */
.btn-primary {
    background: #cba650;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

/* Links dentro dos cards (pra não ficar com cara de link padrão feio) */
.contact-info-cards a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(0,0,0,0.25);
}

.contact-info-cards a:hover {
    border-bottom-style: solid;
}

/* RESPONSIVO */
@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 2fr 1.3fr;  /* esquerda maior, botão à direita */
        align-items: stretch;
    }
}

@media (max-width: 899px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        margin-top: 0.5rem;
        order: 2;                      /* botão fica depois dos cards no mobile */
    }

    .contact-cta .btn-full {
        max-width: 100%;
    }
}
/* GRID dos cards */
.contact-grid {
    margin-top: 2rem;
}

/* centralizar cards se quiser */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* BOTÃO FAIXA EMBAIXO */
.contact-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* botão grande ocupando quase toda a largura */
.contact-cta .btn-full {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 900px;      /* controla o “tamanho” horizontal */
    padding: 1.4rem 2rem;

    background: #cba650;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;

    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-cta .btn-full:hover {
    background: #b28f40;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}
