/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    position: relative;
}

/* Background com curvas de nível */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/curvas-nivel-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05; /* Alta transparência */
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 2rem;
    margin-top: 80px; /* Espaço para o header fixo */
    display: block !important;
    visibility: visible !important;
}

.breadcrumb ol {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    visibility: visible !important;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.75rem;
    color: #6c757d;
    font-weight: bold;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #219a52;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #666;
    font-weight: 500;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section__description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-primary {
    color: #27ae60;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #27ae60;
    color: white;
    border-color: #27ae60;
}

.btn-primary:hover {
    background-color: #219a52;
    border-color: #219a52;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #27ae60;
    border-color: #27ae60;
}

.btn-outline:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.nav__logo-link,
.footer__logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav__logo-link:hover,
.footer__logo-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.nav__logo-link h2,
.footer__logo-link h3 {
    margin: 0;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__item {
    margin: 0;
}

.nav__link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #27ae60;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #27ae60;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}


.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.1;
}

.hero__description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__icon {
    font-size: 8rem;
    color: white;
}

.hero__img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    transition: transform 0.3s ease;
    /* Remover sombra verde e fundo branco */
    box-shadow: none;
    background: transparent;
    /* Filtros para remover fundo branco e sombra verde */
    filter: contrast(1.3) brightness(1.2) saturate(1.1);
    /* Blend mode para integrar melhor com o fundo */
    mix-blend-mode: normal;
}

.hero__img:hover {
    transform: scale(1.05);
}

/* Sections */
.section {
    padding: 80px 0;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
}

.about__description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature__icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature__description {
    color: #666;
}

/* Services Section */
.services__intro {
    margin: 2rem 0;
    text-align: center;
}

.services__intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service__card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #27ae60;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service__icon i {
    font-size: 2rem;
    color: white;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service__list {
    list-style: none;
}

.service__list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Team Section */
.team {
    background-color: #f8f9fa;
}

.team__content {
    max-width: 800px;
    margin: 0 auto;
}

.team__member {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member__photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.member__photo i {
    font-size: 4rem;
    color: white;
}

.member__name {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.member__position {
    font-size: 1.2rem;
    color: #27ae60;
    margin-bottom: 2rem;
    font-weight: 500;
}

.member__qualifications {
    margin-bottom: 2rem;
}

.qualification {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.qualification i {
    color: #27ae60;
    font-size: 1.2rem;
}

.member__experience h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.member__experience ul {
    list-style: none;
}

.member__experience li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.member__experience li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Contact Section */
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon i {
    font-size: 1.5rem;
    color: white;
}

.contact__title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact__text {
    color: #666;
    font-size: 1.1rem;
}

/* Form Styles */
.contact__form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form__input:focus {
    outline: none;
    border-color: #27ae60;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer__brand .logo {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.footer__brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: #bdc3c7;
}

.footer__item h4 {
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer__item p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem 0;
        position: relative;
    }

    .header {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav__logo {
        flex: 1;
        min-width: 0;
    }

    .nav__logo h1 {
        font-size: 1.2rem;
    }

    .nav__logo .logo {
        width: 30px;
        height: 30px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 4.5rem 0 0;
        transition: right 0.3s ease;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        z-index: 1002;
    }

    .nav__item {
        margin: 1rem 0;
    }

    .nav__link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        text-align: center;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #27ae60;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero__buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .team__member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__img-container {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero__img {
        max-width: 280px;
        width: 100%;
        border-radius: 8px;
    }

    .hero__icon {
        font-size: 6rem;
    }

    .service__card {
        padding: 2rem;
    }

    .team__member {
        padding: 2rem;
    }

    .contact__form {
        padding: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav__logo h1 {
        font-size: 1rem;
    }

    .nav__logo .logo {
        width: 25px;
        height: 25px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__img {
        max-width: 250px;
    }

    .services__intro-text {
        font-size: 1rem;
    }

    .service__card {
        padding: 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .project__case {
        padding: 1.5rem;
    }

    .breadcrumb {
        padding: 0.3rem 0;
        margin-top: 70px; /* Ajuste para mobile */
    }
    
    .breadcrumb ol {
        flex-wrap: wrap;
    }
    
    .breadcrumb a {
        font-size: 0.8rem;
    }

    /* Ajustes do hero do blog para mobile */
    .blog .hero {
        padding: 40px 0 30px; /* Ainda menor no mobile */
        min-height: 40vh; /* Ainda menor no mobile */
    }

    .blog .hero__title {
        font-size: 2rem; /* Ainda menor no mobile */
    }

    .blog .hero__description {
        font-size: 1rem; /* Ainda menor no mobile */
    }

    .section {
        padding: 60px 0;
    }
}

/* Form loading states */
.form__input:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn:disabled {
    background-color: #95a5a6;
}

/* Form validation styles */
.form__input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form__input.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.form__error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form__error.show {
    display: block;
}

/* Blog Styles */
/* Usar as classes do hero principal para consistência */

.blog-filters {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e1e8ed;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.filter-select {
    padding: 12px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #27ae60;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e8ed;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #27ae60;
}

.blog-card__image {
    height: 200px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 25px;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-card__meta i {
    margin-right: 5px;
    color: #27ae60;
}

.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card__title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: #27ae60;
}

.blog-card__excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.category-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.blog-card__link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-card__link:hover {
    color: #219a52;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-posts i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

/* Blog Info e Estatísticas */
.blog-info {
    margin-top: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.5rem;
    color: #27ae60;
}

.stat-item span {
    font-weight: 600;
    color: #2c3e50;
}

/* Melhorias para visualizações */
.blog-card__views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination__link {
    padding: 10px 15px;
    background: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e1e8ed;
    transition: all 0.3s ease;
}

.pagination__link:hover,
.pagination__link.active {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

/* Post Page Styles */
.post-article {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.post-header {
    margin-bottom: 40px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.post-meta__info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.post-meta__info i {
    margin-right: 5px;
    color: #27ae60;
}

.post-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.post-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    max-width: 100%;
}

.post-content h2 {
    color: #2c3e50;
    margin: 30px 0 15px 0;
    font-size: 1.8rem;
}

.post-content h3 {
    color: #27ae60;
    margin: 25px 0 10px 0;
    font-size: 1.4rem;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content blockquote {
    border-left: 4px solid #27ae60;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.post-footer {
    padding: 30px 0;
    border-top: 1px solid #e1e8ed;
}

.post-share h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Related Posts */
.related-posts {
    background: #f8f9fa;
    padding: 60px 0;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-post {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.related-post__title {
    margin-bottom: 15px;
}

.related-post__title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.related-post__title a:hover {
    color: #27ae60;
}

.related-post__meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-filters {
        padding: 20px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .filter-select {
        min-width: 100%;
    }
    
    .post-article {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .share-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .share-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .related-posts__grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service__card,
.feature,
.team__member {
    animation: fadeInUp 0.6s ease-out;
}

/* Admin Link */
.admin-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: #27ae60;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Hero específico para página do blog */
.blog .hero {
    padding: 60px 0 40px; /* Reduzido de 120px 0 80px */
    min-height: 50vh; /* Reduzido de 100vh */
}

.blog .hero__title {
    font-size: 2.5rem; /* Reduzido de 3.5rem */
    margin-bottom: 1rem; /* Reduzido de 1.5rem */
}

.blog .hero__description {
    font-size: 1.1rem; /* Reduzido de 1.2rem */
    margin-bottom: 1.5rem; /* Reduzido de 2rem */
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Projects Section */
.projects {
    background-color: #f8f9fa;
}

.projects__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.project__case {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project__case:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f2f6;
}

.case__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case__icon i {
    font-size: 1.5rem;
    color: white;
}

.case__title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.case__sector {
    color: #27ae60;
    font-weight: 500;
    font-size: 0.9rem;
}

.case__section {
    margin-bottom: 1.5rem;
}

.case__subtitle {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case__list {
    list-style: none;
    padding-left: 0;
}

.case__list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.case__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.case__metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 80px;
}

.metric__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.25rem;
}

.metric__label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.projects__cta {
    text-align: center;
}

/* Resources Section */
.resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource__card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #27ae60;
}

.resource__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.resource__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource__icon i {
    font-size: 1.5rem;
    color: white;
}

.resource__title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.resource__description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource__details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.resource__type,
.resource__pages,
.resource__duration,
.resource__format {
    background-color: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.resource__btn {
    width: 100%;
}

.resources__cta {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.resources__text {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial__quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #27ae60;
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial__author {
    border-top: 2px solid #f1f2f6;
    padding-top: 1.5rem;
}

.author__name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.author__position {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.author__company {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background-color: #e9ecef;
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq__icon {
    color: #27ae60;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq__answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Contact Map */
.contact__map {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f2f6;
}

.map__container {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map__text {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}
