/* Configurações Globais e Variáveis */
:root {
    --primary-color: #DCB65C; /* Tom de dourado/amarelo da imagem */
    --dark-bg: #111111;
    --text-color-light: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-medium: #666666;
    --bg-light-gray: #f4f4f4;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
.main-header {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-left img { height: 50px; }
.logo-right img { height: 40px; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-color-light);
    font-weight: 400;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-color: var(--primary-color); }

/* Seção Principal com Banner Rotativo */
.hero-section {
    height: 100vh;
    position: relative;
    color: var(--text-color-light);
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Imagens de Fundo para cada Slide */
.slide-1 { background-image: url('img/BANNER1-1024x575-1920w.png'); }
.slide-2 { background-image: url('img/tiomothy-swope-zwe--GYIZtc-unsplash-3afd738f-1920w.jpg'); }


.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2; /* Para o texto ficar sobre a camada escura */
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Estilização dos Controles do Carrossel */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: scale(1.1);
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 12px;
    height: 12px;
    opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}


.cta-button {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background-color: #c9a552;
    transform: translateY(-3px);
}
.cta-button.secondary {
    background-color: #333;
    color: var(--text-color-light);
}
.cta-button.secondary:hover {
    background-color: #000;
}

/* Seção "Quem Somos" */
.about-section {
    padding: 80px 0;
    background-color: var(--text-color-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color-medium);
}
.about-text .cta-button { margin-top: 15px; }

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Seção de Serviços/Diferenciais */
.features-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: var(--text-color-light);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Seção de Orçamento */
.quote-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/photo-1525250646001-99ba4c565986.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote-form-container h2 {
    color: var(--text-color-light);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color-light);
    border-bottom: 2px solid var(--primary-color);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}
#contactForm input::placeholder,
#contactForm textarea::placeholder { color: #aaa; }
#contactForm input:focus,
#contactForm textarea:focus { outline: none; background-color: rgba(255, 255, 255, 0.2); }

#contactForm button { width: 100%; }

/* Rodapé */
.main-footer {
    background-color: #000;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-column h4 {
    color: var(--text-color-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a:hover { color: var(--primary-color); }
.footer-column p { line-height: 1.7; margin-bottom: 10px; display: flex; align-items: flex-start; }
.footer-column p i { font-size: 1.2rem; margin-right: 10px; color: var(--primary-color); margin-top: 4px; }
.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input { flex-grow: 1; border: none; padding: 10px; border-radius: 4px 0 0 4px; background-color: #333; color: var(--text-color-light); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { border: none; background-color: var(--primary-color); color: #000; padding: 0 15px; cursor: pointer; border-radius: 0 4px 4px 0; font-weight: 700; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.9rem; color: #888; }
.footer-bottom a:hover { color: var(--primary-color); }

/* Ícone do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Responsividade */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .about-content { flex-direction: column; }
    .about-text, .about-image { max-width: 100%; }
    .features-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-grid { text-align: center; }
    .footer-column p { justify-content: center; }
}

/* Configurações Globais e Variáveis */
:root {
    --primary-color: #DCB65C;
    --dark-bg: #111111;
    --text-color-light: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-medium: #666666;
    --bg-light-gray: #f9f9f9;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--text-color-light);
    color: var(--text-color-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

p {
    line-height: 1.7;
    color: var(--text-color-medium);
}

/* ESTILOS COMPARTILHADOS */
.main-header {
    width: 100%;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-left img { height: 50px; }
.logo-right img { height: 40px; }
.main-nav ul { list-style: none; display: flex; gap: 35px; }
.main-nav a { color: var(--text-color-light); font-weight: 400; padding-bottom: 5px; border-bottom: 2px solid transparent; }
.main-nav a:hover { border-color: var(--primary-color); }

.cta-button { background-color: var(--primary-color); color: var(--dark-bg); padding: 15px 40px; border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; display: inline-block; border: none; cursor: pointer; text-align: center; transition: background-color 0.3s ease, transform 0.3s ease; }
.cta-button:hover { background-color: #c9a552; transform: translateY(-3px); }

.main-footer { background-color: #000; color: #ccc; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #333; }
.footer-column h4 { color: var(--text-color-light); font-size: 1.1rem; margin-bottom: 20px; }
.footer-column ul { list-style: none; padding-left: 0; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a:hover { color: var(--primary-color); }
.footer-column p { line-height: 1.7; margin-bottom: 10px; display: flex; align-items: flex-start; }
.footer-column p i { font-size: 1.2rem; margin-right: 10px; color: var(--primary-color); margin-top: 4px; }
.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input { flex-grow: 1; border: none; padding: 10px; border-radius: 4px 0 0 4px; background-color: #333; color: var(--text-color-light); }
.newsletter-form button { border: none; background-color: var(--primary-color); color: #000; padding: 0 15px; cursor: pointer; border-radius: 0 4px 4px 0; font-weight: 700; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.9rem; color: #888; }
.footer-bottom a:hover { color: var(--primary-color); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ESTILOS DA PÁGINA HOME (index.html) */
.hero-section { height: 100vh; position: relative; color: var(--text-color-light); }
.hero-slider { width: 100%; height: 100%; }
.swiper-slide { width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
.swiper-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); }
.slide-1 { background-image: url('img/BANNER1-1024x575-1920w.png'); }
.slide-2 { background-image: url('img/tiomothy-swope-zwe--GYIZtc-unsplash-3afd738f-1920w.jpg'); }
.hero-content { max-width: 800px; padding: 0 20px; z-index: 2; }
.hero-subtitle { color: var(--primary-color); font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; }
.hero-title { font-size: 3.2rem; font-weight: 700; margin-bottom: 30px; line-height: 1.2; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-color); }
.swiper-pagination-bullet-active { background-color: var(--primary-color); }

/* ESTILOS DA PÁGINA SOBRE (sobre.html) */
.hero-about {
    height: 95vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://lirp.cdn-website.com/e56073aa/dms3rep/multi/opt/mpconnect_site_banner_02+%281%29-2880w.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-about h1 {
    color: var(--text-color-light);
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    padding: 15px 40px;
}

.intro-section { padding: 80px 0; text-align: center; }
.intro-section h2 { font-size: 2.2rem; margin-bottom: 15px; }
.intro-section p { max-width: 800px; margin: 0 auto; color: var(--text-color-medium); }

.who-we-are-section { padding: 80px 0; background-color: var(--bg-light-gray); }
.who-we-are-box { background-color: #FFFFFF; border-radius: 8px; padding: 50px; max-width: 900px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.who-we-are-box h3 { font-size: 1.8rem; margin-bottom: 20px; }
.who-we-are-box p { margin-bottom: 15px; }
.who-we-are-box .cta-button { margin-top: 20px; }

.pillars-section { padding: 80px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.pillar-icon { font-size: 48px; color: var(--primary-color); margin-bottom: 20px; }
.pillar-item h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-color); }

.stats-section { padding: 100px 0; background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/Young-employees-working-in-office.jpg'); background-size: cover; background-position: center; background-attachment: fixed; color: var(--text-color-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 30px; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 700; display: block; color: var(--primary-color); }
.stat-label { font-size: 1.1rem; }

.partners-section { padding: 80px 0; text-align: center; }
.partners-section h2 { font-size: 2.2rem; margin-bottom: 15px; }
.partners-section p { margin-bottom: 40px; }
.partners-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 60px; }
.partners-logos img { height: 45px; max-width: 150px; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.partners-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .pillars-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .about-content { flex-direction: column; }
    .about-text, .about-image { max-width: 100%; }
    .footer-grid, .stats-grid { grid-template-columns: 1fr; }
    .hero-about h1 { font-size: 2rem; padding: 10px 20px; }
    .who-we-are-box { padding: 30px; }
    .pillars-grid { gap: 60px; }
    .stats-grid { gap: 50px 30px; }
}

/* ... (Todo o seu CSS existente) ... */

/* ESTILOS DA PÁGINA SERVIÇOS (servicos.html) */

.hero-services {
    height: 95vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img/banner-services.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-services h1 {
    color: var(--text-color-light);
    font-size: 3rem;
    font-weight: 700;
}

.service-category {
    padding: 80px 0;
    text-align: center;
}

.service-category-light {
    background-color: var(--bg-light-gray);
}

.category-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.service-category h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.category-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.service-grid-architectural {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    justify-content: center;
    gap: 30px;
    text-align: left;
}


.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.service-number {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    flex-grow: 1; /* Faz o parágrafo ocupar o espaço */
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    flex-grow: 1;
}

.service-card ul li {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-text p {
    margin-bottom: 30px;
}

.cta-image {
    flex: 1;
    max-width: 50%;
}

.cta-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-image { max-width: 100%; }
}

/* ... (Todo o seu CSS existente) ... */

/* ESTILOS DA PÁGINA CONTATO (contato.html) */

.hero-contact {
    height: 50vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/banner-contato.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-contact h1 {
    color: var(--text-color-light);
    font-size: 3rem;
    font-weight: 700;
}

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-medium);
}

.contact-info .info-phone {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color-dark);
    margin-top: 20px;
}

.contact-form-container .form-group {
    margin-bottom: 25px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #555;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: #f9f9f9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-container .cta-button {
    width: auto;
    float: right;
    padding-left: 50px;
    padding-right: 50px;
}

.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Navegação Ativa */
.main-nav a.active {
    border-color: var(--primary-color);
}

/* Responsividade adicional */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}