:root {
    --primary: #C8922A;
    --primary-dark: #A67A1E;
    --primary-light: #E8C47A;
    --secondary: #8B6B3D;
    --dark: #1A1A1A;
    --dark-soft: #2D2D2D;
    --gray: #4A4A4A;
    --gray-light: #6B6B6B;
    --light: #F5F0E8;
    --white: #FFFFFF;
    --bg-card: #FFFFFF;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
    line-height: 1.5;
}

header {
    background: #190d00;
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 4px 0;
    border-bottom: 1px solid rgba(200, 146, 42, 0.3);
}

.navbar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 48px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    color: #E8E2D9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 18px;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

.nav-menu a.active {
    background: rgba(200, 146, 42, 0.2);
    color: var(--primary);
}

.nav-menu a:hover {
    background: rgba(200, 146, 42, 0.15);
    color: var(--primary);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
    z-index: 1001;
}

.hamburger:hover {
    color: var(--primary-light);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 56px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 3px;
    left: 45px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, 
        rgba(25, 13, 0, 0.92) 0%, 
        rgba(25, 13, 0, 0.75) 25%, 
        rgba(25, 13, 0, 0.4) 100%, 
        rgba(25, 13, 0, 0.1) 110%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 5%;
    margin: 0 auto 0 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    padding: 14px 36px;
    border-radius: 48px;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    color: #1A1A1A;
}

.btn-hero i {
    font-size: 18px;
    transition: var(--transition);
}

.btn-hero:hover i {
    transform: translateX(4px);
}

.services-summary {
    padding: 100px 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 40px 24px;
    text-align: center;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow-sm);
}

.service-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.page-header {
    background: linear-gradient(135deg, #190d00 0%, #2D1A05 100%);
    padding: 140px 5% 80px;
    text-align: center;
    margin-top: 56px;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.about-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.mvv-section {
    padding: 80px 0;
    background: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvv-card {
    background: var(--light);
    padding: 40px 32px;
    text-align: center;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mvv-icon i {
    font-size: 32px;
    color: var(--primary);
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark);
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.6;
}

.dados-section {
    padding: 80px 0;
    background: var(--light);
}

.dados-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.dados-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.dado-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dado-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 4px;
}

.dado-item strong {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.dado-item p {
    color: var(--dark);
    font-weight: 500;
}

.servicos-lista {
    padding: 80px 0;
    background: var(--white);
}

.servicos-grid-detalhado {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.servico-card-detalhado {
    display: flex;
    gap: 24px;
    background: var(--light);
    padding: 32px;
    border-radius: 20px;
    transition: var(--transition);
}

.servico-card-detalhado:hover {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servico-icon i {
    font-size: 32px;
    color: var(--primary);
}

.servico-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.servico-info p {
    color: var(--gray);
    line-height: 1.6;
}

.services-banner {
    padding: 40px 0;
    background: var(--light);
}

.services-banner-img {
    width: 100%;
    border-radius: 24px;
    max-height: 300px;
    object-fit: cover;
}

.referencias-section {
    padding: 80px 0;
    background: var(--white);
}

.referencias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.referencia-card {
    background: var(--light);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.referencia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.referencia-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.referencia-card .cargo {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contato-ref p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contato-ref i {
    width: 24px;
    color: var(--primary);
}

.gallery-filters {
    padding: 50px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.3);
}

.gallery-main {
    padding: 60px 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25,13,0,0.95) 0%, rgba(200,146,42,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 24px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.overlay-icon i {
    font-size: 24px;
    color: var(--primary);
}

.overlay-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-bottom: 12px;
}

.ver-mais {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.ver-mais:hover {
    background: var(--primary);
    color: #1A1A1A;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-img {
    width: auto;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-caption {
    text-align: center;
    color: white;
    margin-top: 16px;
}

.modal-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.modal-caption p {
    color: rgba(255,255,255,0.7);
}

.projects-counter {
    padding: 60px 0;
    background: linear-gradient(135deg, #190d00 0%, #2D1A05 100%);
}

.counter-box {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
}

.counter-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.counter-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.cta-section {
    padding: 80px 5%;
    background: var(--white);
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--light);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 32px;
    color: var(--primary);
}

.cta-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    padding: 14px 36px;
    border-radius: 48px;
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.contato-section {
    padding: 80px 0;
    background: var(--white);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contato-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.card-header i {
    font-size: 28px;
    color: var(--primary);
}

.card-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: var(--primary);
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 4px;
}

.info-text p {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.info-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 24px 0;
}

.whatsapp-button {
    margin-top: 32px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    width: 100%;
}

.btn-whatsapp i {
    font-size: 22px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contato-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--shadow-lg);
}

.contato-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contato-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 40px 30px 30px;
}

.image-badge {
    display: inline-block;
    background: var(--primary);
    color: #1A1A1A;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contato-image-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contato-image-text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.image-features span {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
}

.image-features i {
    color: var(--primary);
    margin-right: 8px;
}

.mapa-section {
    padding: 0 5% 80px;
}

.mapa-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mapa-header {
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mapa-header i {
    font-size: 20px;
    color: #1A1A1A;
}

.mapa-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

footer {
    background: #190d00;
    color: white;
    padding: 20px 5% 30px;
    border: none;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
    border: none;
    padding-bottom: 20px;
}

.footer-info {
    text-align: left;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.footer-info i {
    width: 28px;
    color: var(--primary);
    margin-right: 12px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    margin-bottom: 0;
}

.footer-social a {
    color: rgba(255,255,255,0.8);
    font-size: 26px;
    transition: var(--transition);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary);
    background: rgba(200, 146, 42, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 146, 42, 0.3);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.footer-bottom .credits {
    font-size: 11px;
    color: rgba(200, 146, 42, 0.6);
    margin-top: 3px;
    text-decoration: none;
    
}
.footer-bottom a:hover {
    color: var(--primary);
    background: rgba(200, 146, 42, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 32px;
    border-radius: 48px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 768px) {
    header {
        border-bottom-width: 1.9px;
        border-bottom-style: solid;
        border-bottom-color: rgba(223, 153, 23, 0.877);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 56px;
        background: #190d00;
        backdrop-filter: blur(12px);
        z-index: 1000;
        padding: 4px 0;
    }
    
    .navbar {
        justify-content: flex-start;
        gap: 20px;
        position: relative;
    }
    
    .logo {
        position: relative;
        left: -5px;
    }
    
    .logo img {
        height: 32px;
        width: auto;
        max-width: 100%;
    }
    
    .hamburger {
        display: block;
        margin-left: auto;
        cursor: pointer;
        color: var(--primary);
        font-size: 28px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 56px; 
        left: -100%;
        width: 80%;
        height: calc(100vh - 56px);
        background: #190d00;
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.4s ease;
        gap: 20px;
        z-index: 999;
        margin: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 24px;
        width: 80%;
        text-align: center;
    }

    main {
        margin-top: 0;
        padding-top: 0;
    }
    
    .page-header {
        margin-top: 56px;
        padding: 60px 5% 50px;
        position: relative;
        z-index: 1;
    }
    
    .services-banner {
        margin-top: 56px;
        padding: 20px 0;
    }
    
    .hero {
        margin-top: 56px;
        min-height: calc(100vh - 56px);
        align-items: flex-end;
        justify-content: center;
    }
    
    .hero-bg {
        object-fit: contain;
        object-position: center top;
        width: 120%;
        height: auto;
        margin-left: -38%;
        min-height: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(25, 13, 0, 0) 0%,
            rgba(25, 13, 0, 0) 30%,
            rgba(25, 13, 0, 0.4) 60%,
            rgba(25, 13, 0, 0.8) 100%);
    }
    
    .hero-content {
        max-width: 100%;
        margin: 25px auto;
        text-align: center;
        position: absolute;
        bottom: 5%;
        padding: 0 5%;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
        color: var(--white);
    }
    
    .hero-content p {
        font-size: 14px;
        max-width: 90%;
        margin: 0 auto 20px auto;
        color: rgba(255,255,255,0.9);
    }

    body.menu-open {
        overflow: hidden;
    }
    
    .btn-hero {
        padding: 10px 24px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-hero i {
        font-size: 12px;
    }
    
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
    }
    
    .gallery-grid { 
        grid-template-columns: 1fr; 
    }
    
    .about-grid { 
        grid-template-columns: 1fr; 
    }
    
    .mvv-grid { 
        grid-template-columns: 1fr; 
    }
    
    .dados-grid { 
        grid-template-columns: 1fr; 
    }
    
    .referencias-grid { 
        grid-template-columns: 1fr; 
    }
    
    .footer-content { 
        flex-direction: column;
        align-items: center;
        text-align: center; 
        gap: 25px;
    }
    
    .footer-info { 
        text-align: center; 
    }
    
    .footer-social { 
        flex-direction: row;
        justify-content: center; 
        gap: 20px;
    }
    
    .page-header-content h1 { 
        font-size: 36px; 
    }
    
    .counter-box { 
        gap: 40px; 
    }
    
    .counter-number { 
        font-size: 28px; 
    }
    
    .cta-card { 
        padding: 30px 20px; 
    }
    
    .cta-card h3 { 
        font-size: 22px; 
    }
    
    .contato-wrapper { 
        grid-template-columns: 1fr; 
    }
    
    .contato-info-card { 
        padding: 25px; 
    }
    
    .card-header h2 { 
        font-size: 20px; 
    }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
    .logo img {
        height: 28px;
    }
    
    .hero-content {
        padding: 0 5% 30px 5%;
        bottom: 3%;
    }
    
    .hero-content h1 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
    
    .btn-hero {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .servico-card-detalhado { flex-direction: column; text-align: center; align-items: center; }
    .section-header h2 { font-size: 28px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .filter-btn { padding: 8px 20px; font-size: 12px; }
}