/* ============================================
   SOS SAÚDE OCUPACIONAL - ESTILOS PRINCIPAIS
   Paleta: Verde #7aaf56 | Azul #1d71b8
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --verde: #7aaf56;
    --azul: #1d71b8;
    --branco: #ffffff;
    --cinza-escuro: #333333;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #999999;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR FIXA
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 1.5rem;
    color: var(--verde);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--verde), var(--azul));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--azul);
}

/* Submenu em Serviços */
.has-submenu > a::after {
    content: '\f0d7';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 6px;
}

.submenu {
    position: absolute;
    top: 130%;
    left: 0;
    background: var(--branco);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 190px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--cinza-escuro);
}

.submenu a:hover {
    background: var(--cinza-claro);
    color: var(--azul);
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--azul);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding-top: 0;
}

.hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--verde) 0%, var(--azul) 100%);
    animation: gradientShift 8s ease infinite;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, var(--verde) 0%, var(--azul) 100%);
    }
    50% {
        background: linear-gradient(135deg, var(--azul) 0%, var(--verde) 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--branco);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 11;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 11;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 11;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   CARROSSEL DE IMAGENS
   ============================================ */
.carousel-section {
    padding: 0;
    margin-top: -1px;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--cinza-escuro);
}

.hero-carousel {
    height: 100vh;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
}

.carousel-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.carousel-image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.carousel-slide {
    z-index: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--branco);
}

.indicator.active {
    background: var(--branco);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--branco);
    color: var(--branco);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--branco);
    color: var(--azul);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--azul);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--cinza-medio);
    margin-bottom: 3rem;
}

/* ============================================
   SERVIÇOS PREVIEW
   ============================================ */
.services-preview {
    background: var(--cinza-claro);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--azul);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--verde);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--azul);
}

/* ============================================
   TRUST BLOCKS
   ============================================ */
.trust-blocks {
    background: var(--branco);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
}

.trust-item h3 {
    color: var(--azul);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.trust-item p {
    color: var(--cinza-medio);
}

/* ============================================
   PARCEIROS
   ============================================ */
.partners-section {
    background: var(--cinza-claro);
}

.partners-wrapper {
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.partner-logo {
    width: 250px;
    height: 150px;
    border-radius: 12px;
    background: var(--branco);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    margin-top: 70px;
    overflow: hidden;
}

.page-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--verde) 0%, var(--azul) 100%);
    z-index: -1;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--branco);
    text-align: center;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--branco);
    text-align: center;
    opacity: 0.9;
}

/* ============================================
   QUEM SOMOS
   ============================================ */
.about-section {
    background: var(--branco);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--azul);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--branco);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.mvv-section {
    background: var(--cinza-claro);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    color: var(--azul);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p,
.mvv-card ul {
    color: var(--cinza-medio);
    line-height: 1.8;
}

.mvv-card ul {
    list-style: none;
    padding-left: 0;
}

.mvv-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mvv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: bold;
}

/* ============================================
   POLÍTICA DE QUALIDADE
   ============================================ */
.quality-policy-section {
    background: var(--branco);
    padding: 80px 0;
}

.quality-policy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(40, 167, 69, 0.05));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quality-policy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.quality-policy-content h2 {
    color: var(--azul);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quality-policy-content p {
    color: var(--cinza-medio);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .quality-policy-content {
        padding: 2rem 1.5rem;
    }
    
    .quality-policy-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .quality-policy-content h2 {
        font-size: 1.5rem;
    }
    
    .quality-policy-content p {
        font-size: 1rem;
    }
}

/* ============================================
   SERVIÇOS DETALHADOS
   ============================================ */
.services-detail {
    background: var(--branco);
}

.services-list {
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    background: var(--cinza-claro);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--verde);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    color: var(--azul);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cinza-medio);
}

.service-detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--verde);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Tags de atividades em Formação e Palestras */
.service-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(122, 175, 86, 0.12);
    color: var(--cinza-escuro);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(122, 175, 86, 0.35);
}

.activity-tag::before {
    content: '•';
    margin-right: 0.35rem;
    color: var(--verde);
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--verde), var(--azul));
    color: var(--branco);
    text-align: center;
}

.cta-content h2 {
    color: var(--branco);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   NOVIDADES
   ============================================ */
.news-section {
    background: var(--cinza-claro);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-placeholder {
    color: var(--branco);
    font-size: 3rem;
    opacity: 0.7;
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--branco);
    color: var(--azul);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: var(--azul);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--cinza-medio);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: var(--verde);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 10px;
    color: var(--azul);
}

/* ============================================
   CONTATOS
   ============================================ */
.contact-section {
    background: var(--branco);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--azul);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--cinza-medio);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--azul);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--cinza-medio);
    margin: 0.3rem 0;
}

.contact-form-wrapper {
    background: var(--cinza-claro);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    color: var(--azul);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--cinza-escuro);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde);
    box-shadow: 0 0 0 3px rgba(122, 175, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    background: var(--cinza-claro);
    padding: 60px 0;
}

.map-wrapper h2 {
    color: var(--azul);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-placeholder {
    background: var(--branco);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--azul);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--cinza-medio);
    margin: 0.5rem 0;
}

.map-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================
   ÁREA DO CLIENTE
   ============================================ */
.client-area-section {
    background: var(--branco);
    min-height: 60vh;
}

.client-area-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.client-area-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--verde), var(--azul));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 3rem;
}

.client-area-content h2 {
    color: var(--azul);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.client-area-content > p {
    color: var(--cinza-medio);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.client-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
}

.client-features li {
    padding: 1rem;
    color: var(--cinza-medio);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.client-features li:last-child {
    border-bottom: none;
}

.client-features i {
    color: var(--verde);
    font-size: 1.2rem;
}

.client-area-info {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.client-area-info p {
    color: var(--cinza-medio);
    margin: 0.5rem 0;
}

.client-area-info strong {
    color: var(--azul);
}

.client-area-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--branco);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--verde);
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--verde);
    border-color: var(--verde);
    color: var(--branco);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--verde);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PÁGINA INDIVIDUAL DE NOTÍCIA
   ============================================ */
.single-news-section {
    background: var(--branco);
    padding: 60px 0;
}

.single-news-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.single-news-content {
    background: var(--branco);
}

.single-news-image {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.single-news-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.single-news-placeholder {
    background: linear-gradient(135deg, var(--verde), var(--azul));
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
}

.single-news-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.single-news-text {
    line-height: 1.8;
}

.news-intro {
    font-size: 1.2rem;
    color: var(--azul);
    font-weight: 500;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--cinza-claro);
}

.single-news-text h2 {
    color: var(--azul);
    font-size: 2rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.single-news-text h3 {
    color: var(--verde);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.single-news-text p {
    color: var(--cinza-medio);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.single-news-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-news-text ul li {
    color: var(--cinza-medio);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.single-news-text ul li strong {
    color: var(--azul);
}

.news-cta {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    border-left: 5px solid var(--verde);
}

.news-cta p {
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.news-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-box {
    background: var(--cinza-claro);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-box h3 {
    color: var(--azul);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--verde);
}

.related-news,
.related-services {
    list-style: none;
    padding: 0;
}

.related-news li,
.related-services li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.related-news li:last-child,
.related-services li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-news a,
.related-services a {
    color: var(--cinza-medio);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.6;
}

.related-news a:hover,
.related-services a:hover {
    color: var(--verde);
    padding-left: 10px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--branco);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .has-submenu {
        width: 100%;
    }

    .has-submenu > a::after {
        display: none;
    }

    .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 0.5rem;
        background: transparent;
    }

    .submenu a {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .image-carousel {
        height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .client-area-buttons {
        flex-direction: column;
    }

    .client-area-buttons .btn {
        width: 100%;
    }

    .single-news-wrapper {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .logo-img {
        height: 45px;
    }
}
