/* --- CSS Reset & Variables --- */
:root {
    --primary-blue: #0A2240;
    --accent-gold: #D4A94E;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #EAEAEA;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}
body.no-scroll {
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding: 80px 0;
    position: relative;
    overflow-x: hidden;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #555;
}
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.btn:hover {
    background-color: #b9923b;
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo img {
    height: 85px;
    transition: height 0.3s ease;
}
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--accent-gold);
}
.header.scrolled .nav-link {
    color: var(--primary-blue);
}
.header.scrolled .nav-link:hover {
    color: var(--accent-gold);
}
.btn-header {
    padding: 10px 22px;
    font-size: 0.9rem;
    margin-left: 15px;
}
.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}
.nav-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: all 0.3s ease-in-out;
}
.header.scrolled .nav-toggle .bar {
    background-color: var(--primary-blue);
}

/* --- Hero Section --- */
#hero {
    background-image: url('https://base.rhemacriativa.com/wp-content/uploads/2025/08/Design-sem-nome-39.png');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.85);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* --- Sections --- */
#about { background-color: var(--light-bg); }
.about-wrapper { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-logo { flex-basis: 200px; text-align: center; }
.about-logo img { max-width: 100%; height: auto; border-radius: 8px; }
.about-text-content { flex: 1; min-width: 300px; }
.about-text-content .section-title, .about-text-content .section-subtitle { text-align: left; margin-left: 0; margin-right: 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background-color: var(--white); padding: 30px; text-align: center; border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.service-card .icon { color: var(--accent-gold); margin-bottom: 20px; height: 50px; width: 50px; display: inline-block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
#gallery { background-color: var(--light-bg); }
.gallery-slider { padding-bottom: 50px; }
.gallery-item { width: 100%; height: 350px; border-radius: 8px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.testimonial-slider { padding-bottom: 50px; }
.testimonial-card { background: var(--light-bg); padding: 30px; border-radius: 8px; border: 1px solid var(--border-color); height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-card .stars { color: var(--accent-gold); font-size: 1.5rem; margin-bottom: 15px; }
.testimonial-card .quote { font-style: italic; color: #555; flex-grow: 1; margin-bottom: 20px; }
.testimonial-card .client-name { font-size: 1rem; font-weight: 700; color: var(--primary-blue); text-align: right; }
.swiper-pagination-bullet-active { background-color: var(--accent-gold) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-blue) !important; }
#contact { background-color: var(--light-bg); }
.contact-wrapper, .area-map-wrapper { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 50px; }
.contact-info, .contact-form, .area-info, .map-container { flex: 1; min-width: 300px; }
.contact-info h3, .area-info h3 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info-grid { display: grid; gap: 20px; }
.contact-item-card { display: flex; align-items: center; gap: 15px; background: var(--white); padding: 15px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.contact-item-card .icon { font-size: 1.5rem; }
.contact-item-card a { color: var(--primary-blue); text-decoration: none; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid var(--border-color); border-radius: 5px; font-family: 'Roboto', sans-serif; font-size: 1rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.area-info .city-list { list-style: none; columns: 2; }
.area-info .city-list li { margin-bottom: 10px; }
.map-container iframe { width: 100%; height: 100%; min-height: 300px; border: 0; border-radius: 8px; }
.footer { background-color: var(--primary-blue); color: var(--light-text); padding: 60px 0 20px 0; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-column { flex: 1; min-width: 220px; }
.footer-column.about img { max-width: 150px; margin-bottom: 15px; }
.footer-column h4 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column a, .footer-column p { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--accent-gold); }
.social-links a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2); }
.footer-bottom p, .footer-bottom a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-bottom a { text-decoration: underline; }
.floating-cta { position: fixed; bottom: 25px; right: 25px; background-color: var(--accent-gold); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999; transition: transform 0.3s ease; }
.floating-cta:hover { transform: scale(1.1); }
.floating-cta svg { width: 28px; height: 28px; fill: white; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .nav-menu { gap: 20px; }
    .btn-header { display: none; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .nav-logo img { height: 55px; }
    .nav-toggle { display: block; }
    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
    .footer-column { width: 100%; max-width: 400px; margin: 0 auto; }
    .footer-column ul { padding: 0; }
    .footer-column li { justify-content: center; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s ease-in-out;
    }
    .nav-menu.active { right: 0; }
    .nav-link { color: var(--light-text); font-size: 1.2rem; }
    .header.scrolled .nav-link { color: var(--light-text); }
    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .header.scrolled .nav-toggle.active .bar { background-color: var(--light-text); }
    .about-wrapper { flex-direction: column; text-align: center; gap: 0; }
    .about-logo img { max-width: 150px; margin-bottom: 0; }
    .about-text-content .section-title, .about-text-content .section-subtitle { text-align: center; }
    .area-info .city-list { columns: 1; }
}