/* ========================================== */
/* RESET E CONFIGURAÇÕES GERAIS               */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    scroll-behavior: smooth; 
}

:root {
    --primary-green: #009A4D; 
    --hover-green: #007A3D;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
}

/* ========================================== */
/* NAVBAR E BOTÕES GERAIS                     */
/* ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 75px; 
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    position: relative;
    width: 220px; 
}

.logo img {
    position: absolute; 
    top: -39px; 
    left: 0;
    height: 180px; 
    width: auto;
    object-fit: contain;
    z-index: 101; 
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px; 
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--hover-green);
    border-color: var(--hover-green);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: #f0fdf4; 
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1rem;
}

/* ========================================== */
/* SEÇÃO 1: HERO                              */
/* ========================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem; 
    padding-bottom: 4rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/img/hero-principal.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    background-color: #1a1a1a; 
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hero-logo-center {
    display: block;
    margin: 0 auto 2.5rem auto; 
    height: 180px; 
    width: auto;
    object-fit: contain;
}

.hero h1 {
    font-size: 2.8rem; 
    font-weight: 700; 
    line-height: 1.2;
    color: #ffffff; 
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    color: var(--primary-green); 
}

.hero p {
    font-size: 1.1rem; 
    color: rgba(255, 255, 255, 0.9); 
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-buttons .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}
.hero-buttons .btn-outline:hover {
    color: var(--primary-green);
    background-color: #ffffff;
}

/* Oculta botão mobile no PC */
.mobile-features-toggle {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.features-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95); 
    padding: 1.5rem;
    border-radius: 4px; 
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    border-top: 4px solid var(--primary-green); 
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); 
}

.feature-card h2 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

/* ========================================== */
/* SEÇÃO 2: DIFERENCIAIS (SOBRE NÓS)          */
/* ========================================== */
.about-section {
    padding: 6rem 5%;
    background-color: #f4f6f8; 
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: flex-start;
}

.img-main {
    width: 75%;
    height: 85%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-secondary {
    width: 60%;
    height: 45%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 12px solid #f4f6f8; 
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 5%; 
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,154,77,0.3);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.divider-left {
    height: 4px;
    width: 60px;
    background-color: var(--primary-green);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.about-lead strong {
    color: var(--text-dark);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.about-feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.feature-icon svg {
    stroke: var(--primary-green);
    width: 24px;
    height: 24px;
}

.feature-text h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* ========================================== */
/* SEÇÃO 3: SOLUÇÕES E NORMAS                 */
/* ========================================== */
.solutions-section {
    padding: 6rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-header .highlight {
    color: var(--primary-green);
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-green);
    margin: 1.2rem auto 0 auto;
    border-radius: 2px;
}

.solutions-container {
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    display: flex;
    gap: 0; 
    background: #ffffff;
    border-radius: 4px; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    overflow: hidden; 
}

.solutions-sidebar {
    flex: 0 0 300px; 
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
    border-right: 1px solid var(--border-color);
}

.sol-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.4rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.sol-tab-btn:last-child {
    border-bottom: none;
}

.sol-tab-btn .tab-icon {
    stroke: #888; 
    transition: all 0.2s ease;
}

.sol-tab-btn:hover {
    background-color: #eef2f6;
    color: var(--primary-green);
}

.sol-tab-btn:hover .tab-icon {
    stroke: var(--primary-green);
}

.sol-tab-btn.active {
    background-color: #ffffff;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    padding-left: calc(1.5rem - 4px); 
}

.sol-tab-btn.active .tab-icon {
    stroke: var(--primary-green);
}

.solutions-content-area {
    flex: 1;
    background: #ffffff;
    padding: 3.5rem;
}

.sol-tab-content {
    display: none;
    animation: fadeInSlide 0.4s ease;
    text-align: left;
}

.sol-tab-content.active {
    display: block;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.sol-tab-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sol-tab-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.detailed-list {
    list-style: none;
    padding: 0;
}

.detailed-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    background: #f8fafc;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 4px; 
    border-left: 3px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.detailed-list li:hover {
    border-left-color: var(--primary-green);
}

.detailed-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 1px; 
}

.detailed-list strong {
    color: var(--primary-green);
}

.detailed-list.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    background-color: #ffffff;
    color: var(--text-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 4px; 
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pill:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* ========================================== */
/* SEÇÃO 4: ECOSSISTEMA PREMIUM               */
/* ========================================== */
.services-section {
    padding: 6rem 5%;
    background-color: #f8fafc; 
    text-align: center;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    align-items: start; 
}

.service-card-premium {
    background-color: #ffffff;
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.service-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 200px; 
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.card-icon {
    position: absolute;
    bottom: -24px;
    right: 30px;
    width: 54px;
    height: 54px;
    background-color: var(--primary-green);
    border-radius: 4px; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 154, 77, 0.3);
}

.card-icon svg {
    stroke: #ffffff;
}

.card-content {
    padding: 2.5rem 2rem 2rem 2rem; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-desc {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

.expandable-content {
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.service-card-premium.expanded .expandable-content {
    max-height: 400px; 
    margin-top: 1.2rem; 
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.85rem; 
    line-height: 1.4;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009A4D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
}

.service-list em {
    color: #9ca3af;
    font-size: 0.8rem;
    font-style: italic;
}

.btn-see-more {
    background: none;
    border: none;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: color 0.3s ease;
    align-self: flex-start; 
}

.btn-see-more:hover {
    color: var(--primary-green);
}

.btn-see-more .arrow {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 0.7rem;
}

.service-card-premium.expanded .arrow {
    transform: rotate(180deg);
}

/* ========================================== */
/* SEÇÃO 5: LOCALIZAÇÃO E CONTATO             */
/* ========================================== */
.location-section {
    padding: 6rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.location-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 1.5rem auto 3rem auto;
    line-height: 1.6;
}

.location-desc strong {
    color: var(--text-dark);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.location-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    height: 320px;
    background-color: #e5e7eb;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.location-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.route-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-route {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gmaps {
    background-color: var(--primary-green);
    color: #ffffff;
    border: 2px solid var(--primary-green);
}

.btn-gmaps:hover {
    background-color: var(--hover-green);
    border-color: var(--hover-green);
}

.btn-waze {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-waze:hover {
    background-color: #f0fdf4;
}

/* ========================================== */
/* SEÇÃO 6: RODAPÉ / FOOTER                   */
/* ========================================== */
.site-footer {
    background-color: #f8fafc; 
    border-top: 1px solid var(--border-color);
    padding: 5rem 5% 2rem 5%;
    color: var(--text-gray);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1fr; 
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 210px; 
    max-width: 100%;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.about-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem; 
    display: flex;
    align-items: flex-start;
    gap: 12px; 
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-col ul li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-col ul li .icon svg {
    stroke: var(--primary-green); 
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round; 
    stroke-linejoin: round;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #888;
}

/* ========================================== */
/* MODAL DE AGENDAMENTO                       */
/* ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem; 
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 550px; 
    border-radius: 4px; 
    padding: 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    max-height: 90vh; 
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background-color: var(--light-gray);
    padding: 0.4rem;
    border-radius: 4px; 
}

.tab-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: #ffffff;
    color: var(--primary-green);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tab-content {
    display: none; 
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block; 
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px; 
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: #ffffff;
}

.aviso-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #e6f4ea;
    padding: 1rem;
    border-radius: 4px; 
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.aviso-box p {
    font-size: 0.85rem;
    color: var(--hover-green);
    margin: 0;
    line-height: 1.4;
}

/* ========================================== */
/* RESPONSIVIDADE (MOBILE & TABLET)           */
/* ========================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-images {
        height: 500px;
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================== */
/* ESTILOS EXCLUSIVOS PARA CELULAR            */
/* ========================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo img {
        height: 100px;
        top: 0;
    }

    .hero {
        background-attachment: scroll !important;
        background-position: center center;
        padding-top: 4rem; 
    }
    
    .hero-logo-center {
        height: 120px; 
        margin-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    /* SISTEMA DE OCULTAR CARDS NO MOBILE DO HERO */
    .mobile-features-toggle {
        display: block; /* Mostra o botão no celular */
        margin-top: 1rem;
    }
    
    .features-grid {
        display: none; /* Esconde os cards por padrão no mobile */
        grid-template-columns: 1fr; 
        padding: 0 1.5rem;
        margin-top: 1.5rem;
    }
    
    .features-grid.show {
        display: grid; /* Mostra os cards quando clica no botão */
    }
    
    /* Demais seções mobile */
    .services-section, .solutions-section, .about-section, .location-section {
        padding: 4rem 1.5rem;
    }

    .services-grid-large {
        grid-template-columns: 1fr; 
        gap: 2rem;
    }

    .card-content {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    /* Soluções NRs Mobile - GRADE DE 6 BOTÕES */
    .solutions-container {
        flex-direction: column; 
        border-radius: 4px;
        box-shadow: none; /* Remove a sombra da caixa mãe pra ficar mais limpo */
        border: none;
        padding: 0;
        background: transparent;
    }

    .solutions-sidebar {
        flex: none;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr; /* Grade de 2 colunas */
        gap: 10px;
        border: none;
        background: transparent;
    }

    .sol-tab-btn {
        flex-direction: column; /* Icone em cima, texto embaixo */
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: normal; /* Permite quebrar linha se precisar */
        padding: 1.2rem 0.5rem;
        font-size: 0.9rem;
        border: 1px solid var(--border-color); 
        border-radius: 8px;
        background: #ffffff;
    }

    .sol-tab-btn.active {
        border: 2px solid var(--primary-green);
        padding-left: 0.5rem; /* Remove compensação do desktop */
        background-color: #e6f4ea;
    }

    .sol-tab-btn .tab-icon {
        margin-bottom: 8px;
    }

    .solutions-content-area {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .sol-tab-content h3 {
        font-size: 1.4rem;
    }

    .detailed-list.two-columns {
        grid-template-columns: 1fr; 
    }
    
    /* Ajustes Fotos Sobre Nós Mobile (Forçando espaço real) */
    .about-images {
        height: 350px; 
        width: 100%;
        display: block; /* Tira o flex para as imagens não achatarem */
    }
    .img-main {
        width: 85%;
        height: 80%;
    }
    .img-secondary {
        width: 65%;
        height: 50%;
        border-width: 6px; 
    }
    .experience-badge {
        padding: 1rem;
        top: -15px; /* Sobe um pouco pra não tampar nada */
        right: 0; 
    }
    .experience-badge .number {
        font-size: 1.8rem;
    }
    .experience-badge .text {
        font-size: 0.7rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }
    
    .location-info {
        padding: 1.5rem;
    }
    .route-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .site-footer {
        padding: 4rem 1.5rem 1.5rem 1.5rem;
    }
}