:root {
    /* NOVA COR SOLICITADA */
    --brand-blue: #1F6FA2; 
    --brand-grey: #828282;
    --black: #000000;
    --white: #ffffff;
    --light-grey: #f4f7f9;
    --nav-height: 100px;
    --side-margin: 7%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 60px; font-weight: 700; text-transform: uppercase; color: var(--brand-blue); letter-spacing: 1px; }

/* Botón WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 2000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #128C7E; }

/* Navbar - AGORA COM EFEITO VIDRO */
.navbar { 
    background-color: rgba(31, 111, 162, 0.85); /* Azul #1F6FA2 com transparência */
    backdrop-filter: blur(10px); /* Efeito Vidro */
    -webkit-backdrop-filter: blur(10px);
    height: var(--nav-height); 
    display: flex; 
    align-items: center; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1001; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 var(--side-margin); }
.logo-brand img { height: 75px; width: auto; filter: brightness(0) invert(1); } /* Logo em branco */
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 40px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; transition: 0.3s; letter-spacing: 1px; }
.nav-links a:hover { opacity: 0.7; }
.menu-toggle { display: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* Hero */
.hero-carousel { position: relative; height: calc(100vh - var(--nav-height)); width: 100%; overflow: hidden; margin-top: var(--nav-height); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.active { opacity: 1; z-index: 1; }
.hero-content { color: var(--white); width: 100%; padding: 0 20px; }
.nowrap-title { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; white-space: nowrap; font-weight: 700; }
.hero-content h1:not(.nowrap-title) { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; max-width: 850px; margin-left: auto; margin-right: auto; }
.btn-brand { background-color: var(--brand-blue); color: var(--white); padding: 18px 50px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; text-transform: uppercase; border-radius: 4px; }
.btn-brand:hover { background-color: var(--brand-grey); transform: scale(1.05); }

.carousel-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; }
.dot { height: 10px; width: 10px; background-color: rgba(255,255,255,0.4); border-radius: 50%; margin: 0 10px; cursor: pointer; }
.dot.active { background-color: var(--white); width: 35px; border-radius: 5px; }

/* Grid de Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); }
.service-img { height: 200px; background-size: cover; background-position: center; }
.service-info { padding: 30px; text-align: center; flex-grow: 1; border-top: 4px solid var(--brand-blue); }
.service-info i { font-size: 2.5rem; color: var(--brand-blue); margin-bottom: 15px; }
.service-info h3 { color: var(--brand-blue); margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; }

/* Secção Empresa */
.about-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 350px; }
.about-img { flex: 1; min-width: 350px; }
.about-img img { width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.faq-item h3 { color: var(--brand-blue); font-size: 1.3rem; margin-bottom: 10px; }

/* Contacto */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.detail-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.detail-item i { color: var(--brand-blue); font-size: 1.5rem; margin-right: 20px; width: 30px; margin-top: 5px; text-align: center; }
.social-icons a { color: var(--brand-grey); font-size: 2rem; margin-right: 30px; transition: 0.3s; }
.social-icons a:hover { color: var(--brand-blue); }
.contact-form input, .contact-form textarea { width: 100%; padding: 20px; margin-bottom: 20px; border: 1px solid #ddd; font-family: inherit; border-radius: 4px; }
.btn-submit { background-color: var(--brand-blue); color: var(--white); border: none; padding: 20px; cursor: pointer; width: 100%; font-weight: 700; text-transform: uppercase; }

/* Footer - AGORA COM EFEITO VIDRO */
footer { 
    background: rgba(31, 111, 162, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white); 
    text-align: center; 
    padding: 60px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero-content h1, .nowrap-title { font-size: 2rem !important; white-space: normal; } /* Resolvido corte no mobile */
    .contact-wrapper { grid-template-columns: 1fr; }
}:root {
    --brand-blue: #1F6FA2; 
    --brand-grey: #828282;
    --black: #000000;
    --white: #ffffff;
    --light-grey: #f4f7f9;
    --nav-height: 100px;
    --side-margin: 7%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 60px; font-weight: 700; text-transform: uppercase; color: var(--brand-blue); letter-spacing: 1px; }

/* Botón WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 2000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #128C7E; }

/* Navbar - EFEITO VIDRO E LOGO ORIGINAL */
.navbar { 
    background-color: rgba(31, 111, 162, 0.85); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    height: var(--nav-height); 
    display: flex; 
    align-items: center; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1001; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 var(--side-margin); }

/* REMOVIDO O FILTRO PARA MANTER CORES ORIGINAIS DO LOGO */
.logo-brand img { height: 75px; width: auto; } 

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 40px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; transition: 0.3s; letter-spacing: 1px; }
.nav-links a:hover { opacity: 0.7; }
.menu-toggle { display: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* Hero */
.hero-carousel { position: relative; height: calc(100vh - var(--nav-height)); width: 100%; overflow: hidden; margin-top: var(--nav-height); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.active { opacity: 1; z-index: 1; }
.hero-content { color: var(--white); width: 100%; padding: 0 20px; }

/* AJUSTE PARA O TÍTULO NÃO CORTAR NO TELEMÓVEL */
.nowrap-title { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; font-weight: 700; }
.hero-content h1:not(.nowrap-title) { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; }

.hero-content p { font-size: 1.2rem; margin-bottom: 40px; max-width: 850px; margin-left: auto; margin-right: auto; }
.btn-brand { background-color: var(--brand-blue); color: var(--white); padding: 18px 50px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; text-transform: uppercase; border-radius: 4px; }

.carousel-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; }
.dot { height: 10px; width: 10px; background-color: rgba(255,255,255,0.4); border-radius: 50%; margin: 0 10px; cursor: pointer; }
.dot.active { background-color: var(--white); width: 35px; border-radius: 5px; }

/* Grid de Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); }
.service-img { height: 200px; background-size: cover; background-position: center; }
.service-info { padding: 30px; text-align: center; flex-grow: 1; border-top: 4px solid var(--brand-blue); }
.service-info i { font-size: 2.5rem; color: var(--brand-blue); margin-bottom: 15px; }
.service-info h3 { color: var(--brand-blue); margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; }

/* Empresa */
.about-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 350px; }
.about-img { flex: 1; min-width: 350px; }
.about-img img { width: 100%; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.faq-item h3 { color: var(--brand-blue); font-size: 1.3rem; margin-bottom: 10px; }

/* Contacto */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.detail-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.detail-item i { color: var(--brand-blue); font-size: 1.5rem; margin-right: 20px; width: 30px; margin-top: 5px; text-align: center; }
.social-icons a { color: var(--brand-grey); font-size: 2rem; margin-right: 30px; transition: 0.3s; }
.social-icons a:hover { color: var(--brand-blue); }
.contact-form input, .contact-form textarea { width: 100%; padding: 20px; margin-bottom: 20px; border: 1px solid #ddd; font-family: inherit; border-radius: 4px; }
.btn-submit { background-color: var(--brand-blue); color: var(--white); border: none; padding: 20px; cursor: pointer; width: 100%; font-weight: 700; text-transform: uppercase; }

/* Footer - EFEITO VIDRO */
footer { 
    background: rgba(31, 111, 162, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white); 
    text-align: center; 
    padding: 60px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    /* CORREÇÃO DO TÍTULO NO TELEMÓVEL */
    .hero-content h1, .nowrap-title { 
        font-size: 1.8rem !important; 
        white-space: normal !important; 
        line-height: 1.2;
    }
    .contact-wrapper { grid-template-columns: 1fr; }
}:root {
    --brand-blue: #1F6FA2; 
    --brand-grey: #828282;
    --black: #000000;
    --white: #ffffff;
    --light-grey: #f4f7f9;
    --nav-height: 100px;
    --side-margin: 7%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--light-grey); }
.bg-white { background-color: var(--white); }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 60px; font-weight: 700; text-transform: uppercase; color: var(--brand-blue); letter-spacing: 1px; }

/* Botón WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 2000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); background-color: #128C7E; }

/* Navbar - Efeito Vidro e Cores Originais do Logo */
.navbar { 
    background-color: rgba(31, 111, 162, 0.85); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    height: var(--nav-height); 
    display: flex; 
    align-items: center; 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1001; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 var(--side-margin); }

/* Logo sem filtros para manter as cores do ficheiro Fundo.png ou logo.png */
.logo-brand img { 
    height: 75px; 
    width: auto; 
    filter: none !important; /* Remove qualquer filtro herdado */
} 

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 40px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; transition: 0.3s; letter-spacing: 1px; }
.nav-links a:hover { opacity: 0.7; }
.menu-toggle { display: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* Hero */
.hero-carousel { position: relative; height: calc(100vh - var(--nav-height)); width: 100%; overflow: hidden; margin-top: var(--nav-height); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; display: flex; align-items: center; justify-content: center; text-align: center; }
.slide.active { opacity: 1; z-index: 1; }
.hero-content { color: var(--white); width: 100%; padding: 0 20px; }

/* Títulos Hero - Correção para Mobile */
.nowrap-title { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; font-weight: 700; }
.hero-content h1:not(.nowrap-title) { font-size: 3rem; margin-bottom: 25px; text-transform: uppercase; }

.hero-content p { font-size: 1.2rem; margin-bottom: 40px; max-width: 850px; margin-left: auto; margin-right: auto; }
.btn-brand { background-color: var(--brand-blue); color: var(--white); padding: 18px 50px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; text-transform: uppercase; border-radius: 4px; }

.carousel-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; }
.dot { height: 10px; width: 10px; background-color: rgba(255,255,255,0.4); border-radius: 50%; margin: 0 10px; cursor: pointer; }
.dot.active { background-color: var(--white); width: 35px; border-radius: 5px; }

/* Grid de Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); }
.service-img { height: 200px; background-size: cover; background-position: center; }
.service-info { padding: 30px; text-align: center; flex-grow: 1; border-top: 4px solid var(--brand-blue); }
.service-info i { font-size: 2.5rem; color: var(--brand-blue); margin-bottom: 15px; }
.service-info h3 { color: var(--brand-blue); margin-bottom: 15px; font-size: 1.2rem; text-transform: uppercase; }

/* Contacto */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.detail-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.detail-item i { color: var(--brand-blue); font-size: 1.5rem; margin-right: 20px; width: 30px; margin-top: 5px; text-align: center; }
.social-icons a { color: var(--brand-grey); font-size: 2rem; margin-right: 30px; transition: 0.3s; }
.social-icons a:hover { color: var(--brand-blue); }
.contact-form input, .contact-form textarea { width: 100%; padding: 20px; margin-bottom: 20px; border: 1px solid #ddd; font-family: inherit; border-radius: 4px; }
.btn-submit { background-color: var(--brand-blue); color: var(--white); border: none; padding: 20px; cursor: pointer; width: 100%; font-weight: 700; text-transform: uppercase; }

/* Footer - Efeito Vidro */
footer { 
    background: rgba(31, 111, 162, 0.9); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white); 
    text-align: center; 
    padding: 60px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    /* Correção do título no mobile */
    .hero-content h1, .nowrap-title { 
        font-size: 1.8rem !important; 
        white-space: normal !important; 
        line-height: 1.2;
    }
    .contact-wrapper { grid-template-columns: 1fr; }
}