/*
Theme Name: Simplicio Theme
Theme URI: http://example.com/simplicio-theme
Author: GitHub Copilot
Author URI: http://github.com
Description: A custom theme inspired by provided design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: simplicio-theme
*/

/* Importar fontes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&display=swap');

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4fa; /* Light greyish background */
    color: #333;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 280px;
    padding: 12px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    border-left-color: #fec42d;
    color: #1a5f3f;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 16px;
}

.btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-outline {
    border: 1px solid #333;
    background: transparent;
    color: #333;
}

.btn-yellow {
    background-color: #fec42d;
    color: #333;
    border: none;
}

.btn-dark {
    background-color: #fff;
    color: #345C36;
    border: none;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fec42d;
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn-dark:hover::before {
    width: 300px;
    height: 300px;
}

.btn-dark:hover {
    color: #2c2c2c;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline-gold {
    background: transparent;
    color: #fec42d;
    border: 2px solid #fec42d;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #fec42d;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 196, 45, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-microcopy {
    font-size: 13px;
    color: #d0d0d0;
    margin: 15px 0 0 0;
    font-weight: 300;
    font-style: italic;
}

/* Care Section */
.care-section {
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.care-container {
    max-width: 1200px;
    margin: 0 auto;
}

.care-content {
    text-align: center;
}

.care-title,
.care-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.care-subtitle {
    font-weight: 600;
    margin-bottom: 40px;
}

.care-description {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto 60px;
}

.care-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #fec42d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.care-cta {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
}

/* Beyond Section - Muito Além do Obrigatório */
.beyond-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.beyond-container {
    max-width: 1400px;
    margin: 0 auto;
}

.beyond-header {
    text-align: center;
    margin-bottom: 80px;
}

.beyond-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(254, 196, 45, 0.15);
    border: 1px solid rgba(254, 196, 45, 0.3);
    border-radius: 20px;
    color: #fec42d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.beyond-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
}

.beyond-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.beyond-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.beyond-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 196, 45, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(254, 196, 45, 0.2);
    line-height: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    color: #fec42d;
    margin-bottom: 25px;
}

.card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.card-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #c0c0c0;
    margin: 0;
    line-height: 1.7;
}

.beyond-cta {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.beyond-note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Hero Section */
.hero {
    background-color: #345C36;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    opacity: 0;
}

.hero-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left {
    padding-right: 20px;
    will-change: transform;
}

.hero-content-left h1 .word {
    display: inline-block;
    margin-right: 0.3em;
    transform-origin: center center;
}

.hero-content-center {
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    will-change: transform;
    cursor: pointer;
}

.hero-content-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-content-center:hover img {
    transform: scale(1.06);
}

.hero-content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
    will-change: transform;
}

h1 {
    font-family: 'Work Sans', sans-serif;
    font-size: 56px;
    line-height: 1.15;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
}

p {
    font-family: 'Work Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}

/* Textos menores com serifa itálica */
small, .small-text, .subtitle, .caption {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: #f0f4f0;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.2px;
}

/* Footer Section / Next Section */
.bottom-section {
    background-color: #3d3d3b;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tablets e telas médias (até 1024px) */
@media screen and (max-width: 1024px) {
    .hero {
        padding: 60px 30px;
        min-height: 80vh;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content-left,
    .hero-content-right {
        padding: 0;
    }
    
    .hero-content-center {
        height: 400px;
    }
    
    h1 {
        font-size: 44px;
    }
    
    h2, h3, h4, h5, h6 {
        font-size: 90%;
    }
    
    .hero-desc {
        font-size: 17px;
    }
    
    /* Care section responsive */
    .care-section {
        padding: 80px 30px;
    }
    
    .care-title,
    .care-subtitle {
        font-size: 38px;
    }
    
    .care-description {
        font-size: 18px;
    }
    
    .care-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

/* Tablets pequenos e celulares grandes (até 768px) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header responsivo */
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Hero responsivo */
    .hero {
        padding: 50px 20px;
        min-height: auto;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-content-center {
        height: 350px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 36px;
        margin-bottom: 0;
    }
    
    .hero-desc {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    /* Care section responsive */
    .care-section {
        padding: 60px 20px;
    }
    
    .care-title,
    .care-subtitle {
        font-size: 32px;
    }
    
    .care-description {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .care-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Beyond section responsive */
    .beyond-section {
        padding: 80px 30px;
    }
    
    .beyond-title {
        font-size: 42px;
    }
    
    .beyond-subtitle {
        font-size: 18px;
    }
    
    .beyond-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .beyond-card {
        padding: 35px 25px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 15px;
    }
}

/* Celulares (até 480px) */
@media screen and (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    nav a {
        font-size: 12px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .hero {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .hero-wrapper {
        gap: 25px;
    }
    
    .hero-content-center {
        height: 280px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .bottom-section {
        padding: 30px 15px;
    }
    
    /* Care section responsive */
    .care-section {
        padding: 50px 15px;
    }
    
    .care-title,
    .care-subtitle {
        font-size: 28px;
    }
    
    .care-description {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    /* Beyond section mobile responsive */
    .beyond-section {
        padding: 60px 20px;
    }
    
    .beyond-title {
        font-size: 32px;
    }
    
    .beyond-subtitle {
        font-size: 16px;
    }
    
    .beyond-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beyond-card {
        padding: 30px 20px;
    }
    
    .card-number {
        font-size: 36px;
        top: 15px;
        right: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
}

/* Celulares pequenos (até 360px) */
@media screen and (max-width: 360px) {
    h1 {
        font-size: 24px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .care-title,
    .care-subtitle {
        font-size: 24px;
    }
    
    .care-description {
        font-size: 15px;
    }
    
    /* Stats slider responsive */
    .stats-slider-wrapper {
        height: 400px;
    }
    
    .slide-left {
        left: 20px;
        top: 30px;
        max-width: 220px;
    }
    
    .stat-icon {
        left: 20px;
        top: 30px;
        width: 40px;
        height: 40px;
    }
    
    .stat-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 120px;
        letter-spacing: -4px;
        left: 35%;
    }
    
    .stat-description {
        font-size: 13px;
        left: 20px;
        bottom: 30px;
        max-width: 180px;
    }
    
    .stat-secondary {
        right: 30px;
        top: 30px;
    }
    
    .stat-number-small {
        font-size: 50px;
    }
    
    .stat-description-small {
        font-size: 12px;
        max-width: 140px;
    }
    
    .slide-right {
        width: 68%;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

/* Benefits Slider Section */
.benefits-slider-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f5f5f5;
    padding: 120px 0;
    overflow: hidden;
}

.benefits-slider-wrapper {
    width: 100%;
    position: relative;
}

.benefits-main-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 60px 0;
    font-family: 'Work Sans', sans-serif;
}

.benefits-slider-track {
    width: 100%;
    position: relative;
}

.benefit-slide {
    width: 100%;
    display: none;
}

.benefit-slide.active {
    display: block;
}

.benefit-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.benefit-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-title {
    font-size: 48px;
    font-weight: 600;
    color: #000!important;
    line-height: 1.1;
    margin: 0;
    max-width: 600px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.benefit-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-right img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 700px;
}

.benefit-slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.benefit-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.benefit-slider-dot:hover {
    background-color: #b0b0b0;
}

.benefit-slider-dot.active {
    background-color: #345C36;
    width: 40px;
    border-radius: 6px;
}

/* Benefits Slider Responsive */
@media (max-width: 1024px) {
    .benefits-slider-section {
        padding: 80px 0;
    }
    
    .benefit-content {
        max-width: 100%;
        gap: 50px;
        grid-template-columns: 1fr 350px;
    }
    
    .benefit-title {
        font-size: 40px;
    }
    
    .benefit-cards {
        gap: 20px;
    }
    
    .benefit-card {
        padding: 28px 24px;
    }
    
    .benefit-card-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .benefits-slider-section {
        padding: 60px 0;
    }
    
    .benefit-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .benefit-left {
        gap: 35px;
    }
    
    .benefit-title {
        font-size: 36px;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .benefit-right img {
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .benefits-slider-section {
        padding: 50px 0;
    }
    
    .benefit-content {
        padding: 0 20px;
    }
    
    .benefit-title {
        font-size: 28px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-card-title {
        font-size: 17px;
    }
    
    .benefit-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .benefit-slider-controls {
        margin-top: 40px;
    }
}

@media (max-width: 360px) {
    .benefit-title {
        font-size: 24px;
    }
    
    .benefit-card-title {
        font-size: 16px;
    }
}

/* Clients and Testimonials Section */
.clients-testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff;
    padding: 100px 0;
}

.clients-testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Companies Section */
.companies-section {
    text-align: center;
    margin-bottom: 100px;
}

.companies-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0 0 60px 0;
}

.companies-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.company-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8f8f8;
    padding: 40px 35px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote-icon {
    display: flex;
    align-items: flex-start;
}

.testimonial-quote-icon i {
    font-size: 32px;
    color: #fec42d;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    flex-grow: 1;
}

.testimonial-text strong {
    color: #333;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-name {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 16px;
    margin: 0;
}

.testimonial-logo {
    max-width: 100px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Clients and Testimonials Responsive */
@media (max-width: 1024px) {
    .clients-testimonials-section {
        padding: 80px 0;
    }
    
    .companies-title {
        font-size: 36px;
    }
    
    .companies-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-testimonials-section {
        padding: 60px 0;
    }
    
    .clients-testimonials-wrapper {
        padding: 0 30px;
    }
    
    .companies-section {
        margin-bottom: 60px;
    }
    
    .companies-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .companies-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .company-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .clients-testimonials-section {
        padding: 50px 0;
    }
    
    .clients-testimonials-wrapper {
        padding: 0 20px;
    }
    
    .companies-title {
        font-size: 26px;
    }
    
    .companies-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .company-logo img {
        max-width: 80px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .companies-title {
        font-size: 22px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* Clients Logos Section */
.clients-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff;
    padding: 100px 0;
}

.clients-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.clients-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0 0 60px 0;
}

.clients-slider-wrapper {
    position: relative;
    width: 100%;
}

.clients-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-slider {
    display: flex;
    gap: 50px;
    will-change: transform;
}

@keyframes scroll-infinite-real {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--slider-width)));
    }
}

.clients-slider:hover {
    animation-play-state: paused;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    min-width: 200px;
    height: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-logo-item img {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
}

/* Clinic Gallery Section */
.clinic-gallery-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #f5f5f5;
    padding: 100px 0;
}

.clinic-gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 600;
    color: #345C36;
    text-align: center;
    margin: 0 0 15px 0;
}

.gallery-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin: 0 0 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Clients and Gallery Responsive */
@media (max-width: 1024px) {
    .clients-section,
    .clinic-gallery-section {
        padding: 80px 0;
    }
    
    .clients-title,
    .gallery-title {
        font-size: 36px;
    }
    
    .clients-slider-wrapper {
        gap: 15px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .clients-slider {
        gap: 35px;
    }
    
    .client-logo-item {
        min-width: 180px;
        height: 130px;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-section,
    .clinic-gallery-section {
        padding: 60px 0;
    }
    
    .clients-wrapper,
    .clinic-gallery-wrapper {
        padding: 0 30px;
    }
    
    .clients-title,
    .gallery-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .clients-slider-wrapper {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .clients-slider {
        gap: 25px;
    }
    
    .client-logo-item {
        min-width: 160px;
        height: 120px;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .clients-section,
    .clinic-gallery-section {
        padding: 50px 0;
    }
    
    .clients-wrapper,
    .clinic-gallery-wrapper {
        padding: 0 20px;
    }
    
    .clients-title,
    .gallery-title {
        font-size: 28px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .clients-slider {
        gap: 20px;
    }
    
    .client-logo-item {
        min-width: 140px;
        height: 100px;
        padding: 15px;
    }
    
    .client-logo-item img {
        max-width: 140px;
        max-height: 70px;
    }
    
    .clients-logos-grid {
        gap: 20px;
    }
}

@media (max-width: 360px) {
    .clients-title,
    .gallery-title {
        font-size: 24px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .client-logo-item {
        min-width: 120px;
    }
}

/* Footer */
.site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-col {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fec42d;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #fec42d;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #444;
    align-items: start;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #cccccc;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: #fec42d;
    transform: scale(1.1);
}

.social-link i {
    font-size: 16px;
}

.footer-bottom-center {
    text-align: center;
}

.footer-address {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom-right {
    text-align: right;
}

.footer-contact {
    font-size: 13px;
    color: #cccccc;
    margin: 0 0 10px 0;
}

.footer-phone {
    font-size: 13px;
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .site-footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-col {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        padding: 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-grid {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        gap: 25px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* ====================================
   ABOUT US PAGE STYLES
   ==================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(254, 196, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 196, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fec42d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

/* About Institutional Section */
.about-institutional {
    padding: 100px 0;
    background: #f9f9f9;
}

.institutional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.institutional-left {
    position: relative;
}

.institutional-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.institutional-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fec42d 0%, #f5a623 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.institutional-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.institutional-right h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.3;
}

.institutional-right p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.institutional-right p:last-child {
    margin-bottom: 0;
}

/* Differentials Section */
.differentials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.differentials-header {
    text-align: center;
    margin-bottom: 60px;
}

.differentials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.differentials-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Primeira linha: 3 cards */
.differential-card:nth-child(1) {
    grid-column: 1 / 3;
}

.differential-card:nth-child(2) {
    grid-column: 3 / 5;
}

.differential-card:nth-child(3) {
    grid-column: 5 / 7;
}

/* Segunda linha: 2 cards centralizados */
.differential-card:nth-child(4) {
    grid-column: 2 / 4;
}

.differential-card:nth-child(5) {
    grid-column: 4 / 6;
}

.differential-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.differential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fec42d 0%, #f5a623 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.differential-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 196, 45, 0.3);
    box-shadow: 0 20px 40px rgba(254, 196, 45, 0.15);
}

.differential-card:hover::before {
    transform: scaleX(1);
}

.differential-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(254, 196, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fec42d;
}

.differential-card i {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    display: block;
}

.differential-icon {
    margin-bottom: 20px;
}

.differential-icon svg {
    stroke: #ffffff;
}

.differential-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.differential-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.differential-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.differential-list li {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.differential-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fec42d;
    font-weight: bold;
}

/* MVV Section (Missão, Visão, Valores) */
.mvv-section {
    padding: 100px 0;
    background: #0d3d28;
    position: relative;
}

.mvv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(254, 196, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mvv-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mvv-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.mvv-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fec42d 0%, #f5a623 100%);
    border-radius: 2px;
}

.mvv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 196, 45, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(254, 196, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon i {
    font-size: 36px;
    color: #ffffff;
}

.mvv-icon svg {
    stroke: #ffffff;
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.mvv-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.mvv-values-list li {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.mvv-values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fec42d;
    font-weight: bold;
    font-size: 18px;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-cta-primary,
.about-cta-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-cta-primary {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.3);
}

.about-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.4);
}

.about-cta-secondary {
    background: transparent;
    color: #1a5f3f;
    border: 2px solid #1a5f3f;
}

.about-cta-secondary:hover {
    background: #1a5f3f;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Button white outline variant for light backgrounds */
.about-cta-section .btn-outline-white {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.about-cta-section .btn-outline-white:hover {
    background: #2c2c2c;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .institutional-grid {
        gap: 40px;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .differential-card:nth-child(1),
    .differential-card:nth-child(2),
    .differential-card:nth-child(3),
    .differential-card:nth-child(4),
    .differential-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .about-institutional {
        padding: 60px 0;
    }
    
    .institutional-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .institutional-right h2 {
        font-size: 28px;
    }
    
    .institutional-right p {
        font-size: 16px;
    }
    
    .differentials-section {
        padding: 60px 0;
    }
    
    .differentials-header h2 {
        font-size: 32px;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-section {
        padding: 60px 0;
    }
    
    .mvv-header h2 {
        font-size: 32px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .about-cta-content h2 {
        font-size: 28px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .institutional-right h2 {
        font-size: 24px;
    }
    
    .differentials-header h2,
    .mvv-header h2 {
        font-size: 26px;
    }
    
    .differential-card {
        padding: 30px 20px;
    }
    
    .mvv-card {
        padding: 40px 20px;
    }
    
    .about-cta-content h2 {
        font-size: 24px;
    }
}

/* ====================================
   SOLUTIONS PAGE STYLES
   ==================================== */

/* Solutions Hero */
.solutions-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(254, 196, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(254, 196, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solutions-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(254, 196, 45, 0.1);
    border: 1px solid rgba(254, 196, 45, 0.3);
    border-radius: 30px;
    color: #fec42d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.solutions-hero-badge svg {
    stroke: #fec42d;
}

.solutions-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solutions-hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: #fec42d;
    margin-bottom: 30px;
    line-height: 1.3;
}

.solutions-hero-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-hero-text strong {
    color: #fec42d;
    font-weight: 600;
}

/* Solutions Grid Section */
.solutions-grid-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-intro-text {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

/* Solution Card - 3D Flip Effect */
.solution-card {
    position: relative;
    height: 480px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card-front,
.solution-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.solution-card-front {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: rotateY(0deg);
}

.solution-card.is-flipped .solution-card-front {
    transform: rotateY(180deg);
}

.solution-card-back {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 40px 30px;
    transform: rotateY(-180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card.is-flipped .solution-card-back {
    transform: rotateY(0deg);
}

.solution-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fec42d 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    box-shadow: 0 4px 15px rgba(254, 196, 45, 0.3);
}

.solution-optional-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(254, 196, 45, 0.15);
    border: 1px solid rgba(254, 196, 45, 0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 0.5px;
}

.solution-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 196, 45, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.solution-icon {
    position: relative;
    z-index: 1;
    stroke: #fec42d;
}

.solution-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.solution-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.solution-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    color: #1a5f3f;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-card-cta {
    gap: 15px;
    color: #0d3d28;
}

.solution-card-cta svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-cta svg {
    transform: translateX(5px);
}

/* Solution Card Back */
.solution-back-content {
    width: 100%;
    color: #ffffff;
}

.solution-back-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fec42d;
    margin-bottom: 25px;
    text-align: center;
}

.solution-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.solution-features-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.solution-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fec42d;
    font-weight: bold;
    font-size: 18px;
}

.solution-back-cta {
    display: block;
    text-align: center;
    padding: 14px 30px;
    background: #fec42d;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.solution-back-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Highlight Card (Optional) */
.solution-card-highlight .solution-card-front {
    border: 2px solid #fec42d;
    box-shadow: 0 8px 30px rgba(254, 196, 45, 0.2);
}

/* Solutions Integration Section */
.solutions-integration-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.solutions-integration-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integration-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(26, 95, 63, 0.1);
    border: 1px solid rgba(26, 95, 63, 0.2);
    border-radius: 20px;
    color: #1a5f3f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.integration-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.2;
}

.integration-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.integration-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.integration-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.integration-benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-benefit-icon svg {
    stroke: #fec42d;
}

.integration-benefit-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.integration-benefit-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Integration Diagram */
.integration-right {
    position: relative;
}

.integration-diagram {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-center {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #fec42d 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(254, 196, 45, 0.4);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.diagram-center-icon svg {
    stroke: #2c2c2c;
    margin-bottom: 5px;
}

.diagram-center p {
    font-size: 14px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.diagram-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 3px solid #1a5f3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a5f3f;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(26, 95, 63, 0.15);
    animation: pulse-node 3s ease-in-out infinite;
}

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.diagram-node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.diagram-node-2 {
    top: 100px;
    right: 40px;
    animation-delay: 0.6s;
}

.diagram-node-3 {
    bottom: 100px;
    right: 40px;
    animation-delay: 1.2s;
}

.diagram-node-4 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

.diagram-node-5 {
    bottom: 100px;
    left: 40px;
    animation-delay: 2.4s;
}

.diagram-connections {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.connection-line {
    stroke: #fec42d;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.4;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Solutions CTA Section */
.solutions-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.solutions-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(254, 196, 45, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.solutions-cta-content {
    text-align: center;
}

.solutions-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.solutions-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.solutions-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-outline-dark {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-dark:hover {
    background-color: #ffffff;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.solutions-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .integration-diagram {
        height: 400px;
    }
    
    .diagram-node {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        padding: 80px 0 60px;
    }
    
    .solutions-hero-title {
        font-size: 36px;
    }
    
    .solutions-hero-subtitle {
        font-size: 22px;
    }
    
    .solutions-hero-text {
        font-size: 17px;
    }
    
    .solutions-grid-section {
        padding: 60px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        height: auto;
        min-height: 450px;
    }
    
    .integration-title {
        font-size: 32px;
    }
    
    .integration-diagram {
        height: 350px;
    }
    
    .diagram-center {
        width: 100px;
        height: 100px;
    }
    
    .diagram-center p {
        font-size: 12px;
    }
    
    .diagram-node {
        width: 70px;
        height: 70px;
        font-size: 11px;
    }
    
    .solutions-cta-section {
        padding: 60px 0;
    }
    
    .solutions-cta-title {
        font-size: 32px;
    }
    
    .solutions-cta-text {
        font-size: 17px;
    }
    
    .solutions-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .solutions-cta-buttons a {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .solutions-hero-title {
        font-size: 28px;
    }
    
    .solutions-hero-subtitle {
        font-size: 18px;
    }
    
    .solution-card {
        min-height: 400px;
    }
    
    .integration-title {
        font-size: 26px;
    }
    
    .solutions-cta-title {
        font-size: 26px;
    }
}

/* =================================================================
   Saúde Mental Page
   ================================================================= */
.saude-mental-page {
    background: #f8f9fa;
}

.sm-hero-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    color: white;
}

.sm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.sm-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.sm-breadcrumb a:hover {
    opacity: 0.7;
}

.sm-hero-badge {
    display: inline-block;
    background: rgba(254, 196, 45, 0.2);
    color: #fec42d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(254, 196, 45, 0.3);
}

.sm-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.sm-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
}

.sm-components-section,
.sm-channels-section,
.sm-results-section {
    padding: 80px 0;
}

.sm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sm-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f3f;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.component-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.component-icon {
    color: #1a5f3f;
    margin-bottom: 24px;
}

.component-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.component-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.channel-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #1a5f3f;
}

.channel-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.channel-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.channel-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.result-icon {
    color: #fec42d;
    margin-bottom: 24px;
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.result-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =================================================================
   Gestão de Afastados Page
   ================================================================= */
.afastados-page {
    background: #f8f9fa;
}

.af-hero-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    padding: 140px 0 100px;
    color: white;
}

.af-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.af-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.af-breadcrumb a:hover {
    opacity: 0.7;
}

.af-hero-badge {
    display: inline-block;
    background: rgba(254, 196, 45, 0.2);
    color: #fec42d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(254, 196, 45, 0.3);
}

.af-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.af-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
}

.af-services-section,
.af-flow-section {
    padding: 80px 0;
}

.af-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.af-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f3f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1a5f3f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.flow-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.flow-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.flow-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 8px;
}

.flow-step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.flow-connector {
    width: 4px;
    height: 30px;
    background: #1a5f3f;
    margin: 0 auto 0 66px;
    opacity: 0.3;
}

/* =================================================================
   Gestão Ambulatorial Page
   ================================================================= */
.ambulatorial-page {
    background: #f8f9fa;
}

.amb-hero-section {
    background: linear-gradient(135deg, #1a4d5f 0%, #0d2a3d 100%);
    padding: 140px 0 100px;
    color: white;
}

.amb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.amb-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.amb-breadcrumb a:hover {
    opacity: 0.7;
}

.amb-hero-badge {
    display: inline-block;
    background: rgba(254, 196, 45, 0.2);
    color: #fec42d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(254, 196, 45, 0.3);
}

.amb-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.amb-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
}

.amb-components-section,
.amb-note-section {
    padding: 80px 0;
}

.amb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.amb-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f3f;
}

.components-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.component-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: transform 0.3s;
}

.component-item:hover {
    transform: translateX(5px);
}

.component-item .component-icon {
    flex-shrink: 0;
    color: #1a5f3f;
}

.component-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 12px;
}

.component-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.note-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    border-left: 4px solid #fec42d;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 24px;
}

.note-icon {
    flex-shrink: 0;
    color: #d39e00;
}

.note-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
}

.note-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #856404;
}

/* =================================================================
   Saúde Assistencial Page
   ================================================================= */
.assistencial-page {
    background: #f8f9fa;
}

.as-hero-section {
    background: linear-gradient(135deg, #5f1a4d 0%, #3d0d2a 100%);
    padding: 140px 0 100px;
    color: white;
}

.as-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.9;
}

.as-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.as-breadcrumb a:hover {
    opacity: 0.7;
}

.as-hero-badge {
    display: inline-block;
    background: rgba(254, 196, 45, 0.2);
    color: #fec42d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(254, 196, 45, 0.3);
}

.as-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.as-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
}

.as-includes-section,
.as-compliance-section {
    padding: 80px 0;
}

.as-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.as-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f3f;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.include-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.include-card:hover {
    transform: translateY(-5px);
}

.include-icon {
    color: #5f1a4d;
    margin-bottom: 24px;
}

.include-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.include-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.compliance-box {
    max-width: 900px;
    margin: 0 auto;
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 24px;
}

.compliance-icon {
    flex-shrink: 0;
    color: #0c5460;
}

.compliance-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0c5460;
    margin-bottom: 12px;
}

.compliance-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #0c5460;
}

/* =================================================================
   Resultados Page
   ================================================================= */
.resultados-page {
    background: #f8f9fa;
}

.res-hero-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.res-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.res-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

.res-metrics-section {
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.metric-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.metric-icon {
    color: #fec42d;
    margin-bottom: 24px;
}

.metric-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #fec42d;
    margin-bottom: 16px;
}

.metric-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =================================================================
   Blog Page
   ================================================================= */
.blog-page {
    background: #f8f9fa;
}

.blog-hero-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.blog-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

.blog-newsletter-section {
    padding: 80px 0;
}

.newsletter-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.newsletter-note {
    font-size: 14px !important;
    color: #888 !important;
    font-style: italic;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1a5f3f;
}

.blog-posts-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 60px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-placeholder {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    background: #fec42d;
    color: #1a5f3f;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.post-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 12px;
}

.post-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =================================================================
   Vagas Page
   ================================================================= */
.vagas-page {
    background: #f8f9fa;
}

.vagas-hero-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.vagas-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.vagas-hero-text {
    font-size: 20px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 24px;
}

.vagas-hero-text strong {
    color: #fec42d;
}

.vagas-cta-section {
    padding: 80px 0;
}

.vagas-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.vagas-cta-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.vagas-cta-card:hover {
    transform: translateY(-10px);
}

.cta-icon {
    color: #1a5f3f;
    margin-bottom: 24px;
}

.vagas-cta-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.vagas-cta-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* =================================================================
   Legal Pages (Privacidade e Termos)
   ================================================================= */
.privacidade-page,
.termos-page {
    background: #f8f9fa;
}

.legal-section {
    padding: 140px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #fec42d;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 20px;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-block ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-block li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-block strong {
    color: #1a5f3f;
}

.legal-block a {
    color: #1a5f3f;
    text-decoration: underline;
}

.legal-block a:hover {
    color: #0d3d28;
}

/* =================================================================
   Contato Page
   ================================================================= */
.contato-page {
    background: #f8f9fa;
}

.contato-hero-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.contato-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contato-hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contato-hero-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.contato-channels-section {
    padding: 80px 0;
}

.contato-channels-section .channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contato-channels-section .channel-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid #1a5f3f;
}

.contato-channels-section .channel-card:hover {
    transform: translateY(-5px);
}

.contato-channels-section .channel-icon {
    color: #1a5f3f;
    margin-bottom: 24px;
}

.contato-channels-section .channel-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a5f3f;
    margin-bottom: 16px;
}

.channel-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
    display: block;
}

.channel-card-wide {
    grid-column: span 2;
}

/* Últimos Conteúdos Section */
.ultimos-conteudos-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title-center {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 15px 0;
}

.section-subtitle-center {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin: 0 0 50px 0;
}

.conteudos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.conteudo-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conteudo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.conteudo-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.conteudo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.conteudo-card:hover .conteudo-thumbnail img {
    transform: scale(1.1);
}

.conteudo-content {
    padding: 25px;
}

.conteudo-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #888;
}

.conteudo-meta i {
    margin-right: 5px;
}

.conteudo-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.conteudo-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.conteudo-title a:hover {
    color: #345C36;
}

.conteudo-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.conteudo-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #345C36;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.conteudo-read-more:hover {
    gap: 12px;
}

.view-all-btn-wrapper {
    text-align: center;
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.contato-form-section {
    padding: 80px 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f3f;
    text-align: center;
    margin-bottom: 40px;
}

.contato-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contato-form .form-group {
    display: flex;
    flex-direction: column;
}

.contato-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contato-form input,
.contato-form textarea {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #1a5f3f;
}

.contato-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
}

/* =================================================================
   Responsive - New Pages
   ================================================================= */
@media (max-width: 1024px) {
    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .channel-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .sm-hero-title,
    .af-hero-title,
    .amb-hero-title,
    .as-hero-title,
    .res-hero-title,
    .blog-hero-title,
    .vagas-hero-title,
    .contato-hero-title {
        font-size: 36px;
    }
    
    .sm-hero-subtitle,
    .af-hero-subtitle,
    .amb-hero-subtitle,
    .as-hero-subtitle,
    .res-hero-subtitle,
    .blog-hero-subtitle {
        font-size: 18px;
    }
    
    .components-grid,
    .channels-grid,
    .results-grid,
    .services-grid,
    .includes-grid,
    .metrics-grid,
    .posts-grid,
    .vagas-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .component-item {
        flex-direction: column;
        text-align: center;
    }
    
    .note-box,
    .compliance-box {
        flex-direction: column;
        padding: 30px;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .contato-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contato-channels-section .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .conteudos-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-center {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .sm-hero-title,
    .af-hero-title,
    .amb-hero-title,
    .as-hero-title,
    .res-hero-title,
    .blog-hero-title,
    .vagas-hero-title,
    .contato-hero-title {
        font-size: 28px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
    }
}

/* ====================================
   SST PAGE STYLES
   ==================================== */

/* SST Hero */
.sst-hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.sst-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(254, 196, 45, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 196, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sst-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.sst-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.sst-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sst-hero-breadcrumb a:hover {
    color: #fec42d;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.sst-hero-breadcrumb span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.sst-hero-content {
    max-width: 900px;
}

.sst-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(254, 196, 45, 0.15);
    border: 1px solid rgba(254, 196, 45, 0.4);
    border-radius: 30px;
    color: #fec42d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.sst-hero-badge svg {
    stroke: #fec42d;
}

.sst-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sst-hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

/* SST Container */
.sst-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.sst-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sst-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.sst-section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Deliverables Section */
.sst-deliverables-section {
    padding: 100px 0;
    background: #ffffff;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deliverable-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f3f 0%, #0d3d28 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.deliverable-card:hover {
    transform: translateY(-8px);
    border-color: #1a5f3f;
    box-shadow: 0 12px 35px rgba(26, 95, 63, 0.15);
}

.deliverable-card:hover::before {
    transform: scaleX(1);
}

.deliverable-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.1) 0%, rgba(13, 61, 40, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.deliverable-card:hover .deliverable-icon {
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    transform: scale(1.05);
}

.deliverable-icon svg {
    stroke: #1a5f3f;
    transition: stroke 0.4s ease;
}

.deliverable-card:hover .deliverable-icon svg {
    stroke: #ffffff;
}

.deliverable-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.deliverable-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.deliverable-progress {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fec42d 0%, #f5a623 100%);
    border-radius: 3px;
    transition: width 1.5s ease;
    width: 0;
}

.deliverable-card:hover .progress-bar {
    width: 100% !important;
}

/* Process Timeline Section */
.sst-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fec42d 0%, #f5a623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    box-shadow: 0 6px 20px rgba(254, 196, 45, 0.4);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(180deg, #fec42d 0%, rgba(254, 196, 45, 0.2) 100%);
    margin-top: 10px;
}

.timeline-item:last-child .timeline-connector {
    display: none;
}

.timeline-content {
    flex-grow: 1;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    border-color: #1a5f3f;
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.12);
    transform: translateX(10px);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.1) 0%, rgba(13, 61, 40, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.timeline-icon svg {
    stroke: #1a5f3f;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.timeline-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f3f;
    font-weight: bold;
    font-size: 16px;
}

/* Benefits Section */
.sst-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.sst-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(254, 196, 45, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sst-benefits-section .sst-section-title {
    color: #ffffff;
}

.sst-benefits-section .sst-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(254, 196, 45, 0.15) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-radius: 50%;
    animation: pulse-benefit 3s ease-in-out infinite;
}

@keyframes pulse-benefit {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.benefit-icon {
    position: relative;
    z-index: 1;
    stroke: #fec42d;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* SST CTA Section */
.sst-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d28 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sst-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(254, 196, 45, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.sst-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.sst-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sst-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.sst-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sst-cta-section .btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.sst-cta-section .btn-outline-white:hover {
    background: #ffffff;
    color: #1a5f3f;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .timeline-item {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sst-hero {
        padding: 100px 0 60px;
    }
    
    .sst-hero-title {
        font-size: 36px;
    }
    
    .sst-hero-subtitle {
        font-size: 18px;
    }
    
    .sst-deliverables-section,
    .sst-process-section,
    .sst-benefits-section,
    .sst-cta-section {
        padding: 60px 0;
    }
    
    .sst-section-title {
        font-size: 32px;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-marker {
        flex-direction: row;
        gap: 15px;
    }
    
    .timeline-connector {
        width: 100%;
        height: 3px;
        margin-top: 0;
    }
    
    .timeline-item:hover .timeline-content {
        transform: translateX(0);
        transform: translateY(-5px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sst-cta-title {
        font-size: 32px;
    }
    
    .sst-cta-text {
        font-size: 17px;
    }
    
    .sst-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sst-cta-buttons a {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .sst-hero-title {
        font-size: 28px;
    }
    
    .sst-hero-subtitle {
        font-size: 16px;
    }
    
    .sst-section-title {
        font-size: 26px;
    }
    
    .deliverable-card,
    .timeline-content {
        padding: 25px 20px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .sst-cta-title {
        font-size: 26px;
    }
}

/* Blog Page Styles */
.blog-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #345C36 0%, #2a4a2d 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.blog-hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.blog-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    background-color: #f5f5f5;
}

.blog-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    grid-column: 1;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.post-meta i {
    margin-right: 5px;
}

.post-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #345C36;
}

.post-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #345C36;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.post-read-more:hover {
    gap: 12px;
}

.blog-pagination {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination a,
.blog-pagination .current {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #ffffff;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination .current {
    background: #345C36;
    color: #ffffff;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.no-posts i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ccc;
}

.no-posts p {
    font-size: 18px;
}

/* Blog Sidebar */
.blog-sidebar {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #fec42d;
}

.category-list,
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li,
.recent-posts-list li {
    margin-bottom: 12px;
}

.category-list a,
.recent-posts-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.category-list a:hover,
.recent-posts-list a:hover {
    color: #345C36;
}

.sidebar-cta {
    background: linear-gradient(135deg, #345C36 0%, #2a4a2d 100%);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.sidebar-cta h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.sidebar-cta p {
    margin: 0 0 20px 0;
    opacity: 0.9;
}

.sidebar-cta .btn {
    width: 100%;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .blog-sidebar {
        grid-column: 1;
        grid-row: 2;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 40px;
    }
    
    .blog-hero-content p {
        font-size: 18px;
    }
    
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-wrapper {
        padding: 0 30px;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-hero-content h1 {
        font-size: 32px;
    }
    
    .blog-hero-content p {
        font-size: 16px;
    }
    
    .blog-wrapper {
        padding: 0 20px;
    }
    
    .post-content {
        padding: 25px 20px;
    }
    
    .post-title {
        font-size: 20px;
    }
}

/* Single Post Styles */
.single-post {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.post-header {
    background: linear-gradient(135deg, #345C36 0%, #2a4a2d 100%);
    padding: 100px 0 60px;
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-meta-single {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.post-meta-single i {
    margin-right: 5px;
}

.post-title-single {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 40px 0;
}

.post-featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.post-content-single {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.post-content-single p {
    margin-bottom: 20px;
}

.post-content-single h2 {
    font-size: 32px;
    font-weight: 600;
    color: #345C36;
    margin: 40px 0 20px;
}

.post-content-single h3 {
    font-size: 26px;
    font-weight: 600;
    color: #345C36;
    margin: 30px 0 15px;
}

.post-content-single ul,
.post-content-single ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content-single li {
    margin-bottom: 10px;
}

.post-content-single img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-navigation {
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-previous,
.nav-next {
    background: #f5f5f5;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #e8e8e8;
}

.nav-previous a,
.nav-next a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    text-decoration: none;
    color: #333;
}

.nav-next a {
    justify-content: flex-end;
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #345C36;
}

.post-share {
    margin-bottom: 60px;
    text-align: center;
}

.post-share h3 {
    font-size: 22px;
    color: #333;
    margin: 0 0 20px 0;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.related-posts {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.related-posts h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-thumbnail {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.related-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #345C36;
}

.related-post-date {
    font-size: 13px;
    color: #888;
}

/* Single Post Responsive */
@media (max-width: 768px) {
    .post-header {
        padding: 80px 0 40px;
    }
    
    .post-header-content,
    .post-content-wrapper {
        padding: 0 30px;
    }
    
    .post-title-single {
        font-size: 36px;
    }
    
    .post-content-wrapper {
        margin: 40px auto;
    }
    
    .post-content-single {
        font-size: 16px;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 60px 0 30px;
    }
    
    .post-header-content,
    .post-content-wrapper {
        padding: 0 20px;
    }
    
    .post-title-single {
        font-size: 28px;
    }
    
    .post-content-single h2 {
        font-size: 24px;
    }
    
    .post-content-single h3 {
        font-size: 20px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 45px;
        height: 45px;
    }
}
