/* Variáveis CSS */
:root {
    --primary-color: #8d7254; /* Marrom principal */
    --secondary-color: #e8cda4; /* Bege claro */
    --accent-color: #d4b483; /* Bege médio */
    --dark-color: #5a4a3a; /* Marrom escuro */
    --light-color: #f9f5f0; /* Bege muito claro */
    --text-color: #333;
    --text-light: #777;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Nunito', sans-serif; /* Fonte arredondada e clean */
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    width: 100px;
    height: 60px;
    text-align: center;
    font-size: 10px;
}

.loader-line-wrap {
    animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform-origin: 50% 100%;
    width: 100px;
}

.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap:nth-child(1) .loader-line {
    border-top-color: var(--primary-color);
    height: 90px;
    width: 90px;
    top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
    border-top-color: var(--secondary-color);
    height: 76px;
    width: 76px;
    top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
    border-top-color: var(--accent-color);
    height: 62px;
    width: 62px;
    top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
    border-top-color: var(--primary-color);
    height: 48px;
    width: 48px;
    top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
    border-top-color: var(--secondary-color);
    height: 34px;
    width: 34px;
    top: 35px;
}

@keyframes spin {
    0%, 15% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Cursor Personalizado */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: all 0.6s ease;
}

.cursor.active {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background-color: rgba(141, 114, 84, 0.2);
    border-width: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
    background-color: rgba(249, 245, 240, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(249, 245, 240, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    margin: 6px 0;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0e6d8 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.9;
    color: var(--dark-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.title-line {
    display: block;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    margin-bottom: 15px;
    padding: 0 10px;
    width: fit-content;
}

.title-line:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: scaleX(1);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 400;
    transform: translateX(-30px);
    opacity: 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: scaleX(1);
    border-radius: 3px;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    transform: translateX(-30px);
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    transform: translateY(30px);
    opacity: 0;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(141, 114, 84, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(90, 74, 58, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    transform: translateY(30px);
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
    transform: translateX(50px);
    opacity: 0;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(141, 114, 84, 0.1) 0%, rgba(141, 114, 84, 0.3) 100%);
    z-index: 1;
}

.shape-overlay {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    transform: rotate(45deg);
    z-index: -1;
    opacity: 0.2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element.el-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-element.el-2 {
    top: 60%;
    right: -20px;
    animation-delay: 1s;
}

.floating-element.el-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.crp-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
}

.scroll-arrow {
    margin-top: 10px;
}

.scroll-arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px;
    animation: scroll-down 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Inverte a ordem dos elementos no hero */
    .hero .container {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 0 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .title-line:after {
        height: 12px;
        bottom: 3px;
    }
    
    /* Ajustes adicionais para melhor visualização em mobile */
    .hero-content {
        margin-top: 30px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

      :root {
            --primary-color: #8d7254;
            --secondary-color: #e8cda4;
            --accent-color: #d4b483;
            --dark-color: #5a4a3a;
            --light-color: #f9f5f0;
            --text-color: #333;
            --text-light: #777;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Nunito', sans-serif;
            --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* About Dual Section */
        .about-dual {
            position: relative;
            padding: 180px 0 100px;
            background-color: white;
            overflow: hidden;
            isolation: isolate;
        }

        .top-curtain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 150px;
            z-index: 1;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 1s ease-out, opacity 1s ease-out;
        }

        .top-curtain.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .top-curtain svg {
            width: 100%;
            height: 100%;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            display: block;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-subtitle:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--dark-color);
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .section-title span {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
        }

        .section-title span:after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--secondary-color);
            z-index: -1;
            border-radius: 3px;
        }

        .section-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 400px;
            margin: 0 auto;
        }

        .divider-line {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
            flex: 1;
        }

        .divider-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin: 0 20px;
            transform: rotate(0deg);
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(141, 114, 84, 0.3);
        }

        .section-header:hover .divider-icon {
            transform: rotate(360deg);
            background-color: var(--accent-color);
        }

        /* About Grid Layout */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .about-image-column {
            position: relative;
            perspective: 1000px;
        }

        .image-container {
            position: relative;
            height: 100%;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image-wrapper {
            position: relative;
            width: 80%;
            height: 80%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 2;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: var(--transition);
        }

        .image-shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.3) 45%,
                rgba(255, 255, 255, 0) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            pointer-events: none;
        }

        .image-frame {
            position: absolute;
            top: -20px;
            left: -20px;
            width: calc(100% + 40px);
            height: calc(100% + 40px);
            border: 2px solid var(--primary-color);
            border-radius: 25px;
            z-index: -1;
            transition: var(--transition);
        }

        .main-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .main-image-wrapper:hover .image-frame {
            top: -15px;
            left: -15px;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            z-index: 3;
        }

        .badge-inner {
            background-color: var(--primary-color);
            color: white;
            padding: 25px 30px;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 15px 40px rgba(141, 114, 84, 0.4);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .badge-inner:hover {
            transform: scale(1.05);
        }

        .years {
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .label {
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            line-height: 1.3;
            opacity: 0.9;
        }

        .badge-pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 50%;
            z-index: 1;
            opacity: 0.5;
            transform: scale(1);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 4;
        }

        .floating-element {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            background-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            will-change: transform;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: -20px;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: -20px;
            animation: float 8s ease-in-out infinite 1s;
        }

        .floating-element:nth-child(3) {
            bottom: 10%;
            left: 50%;
            animation: float 7s ease-in-out infinite 0.5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Content Column */
        .about-content-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .content-block {
            margin-bottom: 40px;
        }

        .content-block h3 {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .content-block h3 span {
            color: var(--primary-color);
            position: relative;
        }

        .content-block h3 span:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: var(--secondary-color);
            z-index: -1;
            border-radius: 3px;
        }

        .typing-effect {
            margin-bottom: 30px;
        }

        .typing-text {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .typing-words {
            min-height: 60px;
            position: relative;
        }

        .typing-words span {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            position: absolute;
            opacity: 1;
            transition: opacity 0.3s, transform 0.3s;
        }

        .content-block p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .content-block strong {
            color: var(--dark-color);
            font-weight: 600;
        }

        .highlight-box {
            background-color: var(--light-color);
            border-left: 4px solid var(--primary-color);
            padding: 30px;
            margin: 40px 0;
            position: relative;
            border-radius: 0 10px 10px 0;
            transform: translateX(-20px);
            opacity: 0;
            transition: var(--transition);
        }

        .highlight-box.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .highlight-icon {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 10px 30px rgba(141, 114, 84, 0.3);
            transform: rotate(0deg);
            transition: var(--transition);
        }

        .highlight-box:hover .highlight-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .highlight-box p {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--dark-color);
            margin: 0;
            padding-left: 20px;
        }

        /* TCC Approach */
        .tcc-approach {
            margin: 50px 0;
        }

        .tcc-approach h4 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .tcc-approach h4 span {
            color: var(--primary-color);
            position: relative;
        }

        .tcc-approach h4 span:after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 0;
            width: 100%;
            height: 6px;
            background-color: var(--secondary-color);
            z-index: -1;
            border-radius: 3px;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .approach-item {
            background-color: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(141, 114, 84, 0.1);
            transform: translateY(20px);
            opacity: 0;
        }

        .approach-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .approach-item:nth-child(1) { transition-delay: 0.1s; }
        .approach-item:nth-child(2) { transition-delay: 0.2s; }
        .approach-item:nth-child(3) { transition-delay: 0.3s; }

        .approach-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .approach-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .approach-item:hover .approach-icon {
            background-color: var(--primary-color);
            color: white;
        }

        .approach-item h5 {
            font-size: 1.1rem;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .approach-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* CTA Block */
        .cta-block {
            margin-top: 50px;
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .cta-button {
            position: relative;
            background-color: var(--primary-color);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(141, 114, 84, 0.3);
            overflow: hidden;
            z-index: 1;
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .cta-button:hover:before {
            opacity: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(141, 114, 84, 0.4);
        }

        .cta-secondary {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 10px 0;
            position: relative;
        }

        .cta-secondary:after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .cta-secondary:hover {
            color: var(--dark-color);
            transform: translateX(5px);
        }

        .cta-secondary:hover:after {
            width: 100%;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .about-grid {
                gap: 40px;
            }
            
            .image-container {
                min-height: 450px;
            }
        }

        @media (max-width: 992px) {
            .about-dual {
                padding: 150px 0 100px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .image-container {
                min-height: 400px;
                max-width: 700px;
                margin: 0 auto 50px;
            }
            
            .section-title {
                font-size: 3rem;
            }

            .experience-badge {
                right: 0;
                bottom: -30px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .content-block h3 {
                font-size: 1.8rem;
            }
            
            .approach-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-block {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .highlight-box p {
                font-size: 1.1rem;
            }

            .badge-inner {
                padding: 20px 25px;
            }

            .years {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .about-dual {
                padding: 120px 0 80px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 0.9rem;
            }
            
            .content-block h3 {
                font-size: 1.5rem;
            }
            
            .experience-badge {
                right: 10px;
                bottom: -20px;
            }
            
            .badge-inner {
                padding: 15px 20px;
            }
            
            .years {
                font-size: 1.8rem;
            }
            
            .floating-element {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .main-image-wrapper {
                width: 90%;
                height: 70%;
            }

            .highlight-box {
                padding: 20px;
            }

            .highlight-icon {
                width: 50px;
                height: 50px;
                font-size: 18px;
                top: -15px;
                left: -15px;
            }
        }
          /* Estilos da Seção de Serviços */
    .services-section {
        position: relative;
        padding: 100px 0;
        background-color: #f9f5f0;
        overflow: hidden;
    }
    
    .services-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(rgba(141, 114, 84, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0;
        transition: opacity 1s ease;
    }
    
    .services-section.active .services-bg-pattern {
        opacity: 0.3;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    /* Card de Perfil */
    .profile-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        transform: translateY(50px);
        opacity: 0;
    }
    
    .services-section.active .profile-card {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.1s;
    }
    
    .profile-image-wrapper {
        position: relative;
        height: 300px;
        overflow: hidden;
    }
    
    .profile-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .profile-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .profile-image-wrapper:hover .profile-overlay {
        opacity: 1;
    }
    
    .profile-image-wrapper:hover .profile-image {
        transform: scale(1.05);
    }
    
    .profile-contact {
        text-align: center;
        padding: 20px;
    }
    
    .whatsapp-button {
        display: inline-block;
        background-color: #25D366;
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        margin-bottom: 15px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .whatsapp-button:hover {
        background-color: #128C7E;
        transform: translateY(-3px);
    }
    
    .profile-phone {
        color: white;
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    .profile-content {
        padding: 25px;
        text-align: center;
    }
    
    .profile-content h3 {
        color: #5a4a3a;
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .specialty {
        color: #8d7254;
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .profile-description {
        color: #777;
        line-height: 1.6;
    }
    
    /* Card de Benefícios */
    .benefits-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        padding: 30px;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        transform: translateY(50px);
        opacity: 0;
        border-top: 5px solid #e8cda4;
    }
    
    .services-section.active .benefits-card {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.2s;
    }
    
    .card-header {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .card-header i {
        background-color: #e8cda4;
        color: #5a4a3a;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.1rem;
    }
    
    .card-header h3 {
        color: #5a4a3a;
        font-size: 1.4rem;
    }
    
    .benefits-list {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .benefits-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .benefits-list i {
        color: #8d7254;
        margin-right: 10px;
        font-size: 1.1rem;
        margin-top: 3px;
    }
    
    .benefits-list span {
        color: #5a4a3a;
        line-height: 1.5;
    }
    
    .card-cta {
        text-align: center;
    }
    
    .cta-button {
        display: inline-block;
        background-color: #8d7254;
        color: white;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .cta-button:hover {
        background-color: #5a4a3a;
        transform: translateY(-3px);
    }
    
    /* Card de Problemas */
    .problems-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        padding: 30px;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        transform: translateY(50px);
        opacity: 0;
        border-top: 5px solid #d4b483;
    }
    
    .services-section.active .problems-card {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.3s;
    }
    
    .problems-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .problem-item {
        text-align: center;
        padding: 20px 10px;
        border-radius: 10px;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .problem-item:hover {
        background-color: #f9f5f0;
        transform: translateY(-5px);
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        background-color: #f9f5f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: #8d7254;
        font-size: 1.2rem;
    }
    
    .problem-item h4 {
        color: #5a4a3a;
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .problem-item p {
        color: #777;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Card de Método */
    .method-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        padding: 30px;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        transform: translateY(50px);
        opacity: 0;
        border-top: 5px solid #8d7254;
    }
    
    .services-section.active .method-card {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.4s;
    }
    
    .method-steps {
        margin: 30px 0;
    }
    
    .step-item {
        display: flex;
        margin-bottom: 25px;
        align-items: flex-start;
    }
    
    .step-number {
        background-color: #8d7254;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        color: #5a4a3a;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .step-content p {
        color: #777;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .card-highlight {
        background-color: #f9f5f0;
        border-left: 4px solid #8d7254;
        padding: 20px;
        border-radius: 0 10px 10px 0;
    }
    
    .card-highlight p {
        color: #5a4a3a;
        font-style: italic;
        margin: 0;
        position: relative;
        padding-left: 20px;
    }
    
    .card-highlight p:before {
        content: '"';
        position: absolute;
        left: 0;
        top: -10px;
        font-size: 2rem;
        color: #8d7254;
        font-family: serif;
    }
    
    /* Responsivo */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .problems-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .services-section {
            padding: 70px 0;
        }
        
        .profile-image-wrapper {
            height: 250px;
        }
    }
         :root {
            --primary: #8d7254;
            --secondary: #e8cda4;
            --accent: #d4b483;
            --dark: #5a4a3a;
            --light: #f9f5f0;
            --text: #333;
            --text-light: #777;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #fafafa;
        }

        /* Seção Principal */
        .psycho-services {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        /* Cabeçalho */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            position: relative;
        }

        .section-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--primary);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: var(--dark);
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .section-title span {
            color: var(--primary);
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--secondary);
            z-index: -1;
            opacity: 0.7;
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1.1rem;
        }

        /* Grade de Serviços */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* Card de Especialidades */
        .specialty-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .specialty-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
        }

        .specialty-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .specialty-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }

        .card-description {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-cta {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .card-cta i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .card-cta:hover {
            color: var(--dark);
        }

        .card-cta:hover i {
            transform: translateX(5px);
        }

        /* Roda de Problemas */
        .problems-wheel-container {
            grid-column:1 / -1;
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 30px;
            text-align: center;
        }

        .wheel-header {
            margin-bottom: 30px;
        }

        .wheel-header h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .wheel-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .wheel-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            aspect-ratio: 1/1;
        }

        .wheel {
            width: 100%;
            height: 100%;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 0 10px white, 0 0 0 12px var(--light), 0 0 30px rgba(0,0,0,0.1);
            transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
            transform: rotate(0deg);
        }

        .wheel-section {
            position: absolute;
            width: 50%;
            height: 50%;
            transform-origin: bottom right;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            user-select: none;
        }

        .wheel-section:nth-child(1) { 
            transform: rotate(0deg) skewY(45deg);
            background: #e8cda4;
        }
        .wheel-section:nth-child(2) { 
            transform: rotate(45deg) skewY(45deg);
            background: #d4b483;
        }
        .wheel-section:nth-child(3) { 
            transform: rotate(90deg) skewY(45deg);
            background: #c19a6b;
        }
        .wheel-section:nth-child(4) { 
            transform: rotate(135deg) skewY(45deg);
            background: #a9845c;
        }
        .wheel-section:nth-child(5) { 
            transform: rotate(180deg) skewY(45deg);
            background: #8d7254;
        }
        .wheel-section:nth-child(6) { 
            transform: rotate(225deg) skewY(45deg);
            background: #5a4a3a;
        }
        .wheel-section:nth-child(7) { 
            transform: rotate(270deg) skewY(45deg);
            background: #4a3c2f;
        }
        .wheel-section:nth-child(8) { 
            transform: rotate(315deg) skewY(45deg);
            background: #3a3025;
        }

        .wheel-section-content {
            position: absolute;
            bottom: 40px;
            transform: skewY(-45deg) rotate(22.5deg);
            text-align: center;
            color: white;
            width: 80%;
        }

        .wheel-section i {
            font-size: 1.5rem;
            margin-bottom: 5px;
            display: block;
        }

        .wheel-section span {
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
        }

        .wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .wheel-center i {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .wheel-center span {
            font-size: 0.7rem;
        }

        .wheel-arrow {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--primary);
            font-size: 2rem;
            z-index: 3;
        }

        .wheel-result {
            margin-top: 30px;
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
            min-height: 30px;
        }

        /* Rodapé de Chamada */
        .cta-footer {
            text-align: center;
            margin-top: 60px;
        }

        .cta-footer h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .cta-footer p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .phone-contact {
            display: block;
            margin-top: 20px;
            color: var(--primary);
            font-weight: 600;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .psycho-services {
                padding: 60px 15px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .problems-wheel-container {
                padding: 30px 20px;
            }

            .wheel-wrapper {
                max-width: 300px;
            }

            .wheel-section i {
                font-size: 1.2rem;
            }

            .wheel-section span {
                font-size: 0.7rem;
            }

            .wheel-center {
                width: 60px;
                height: 60px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .section-subtitle {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .card-image {
                height: 160px;
            }

            .card-content {
                padding: 20px;
            }

            .wheel-header h3 {
                font-size: 1.5rem;
            }
        }
  /* servicos */
    :root {
        --serv-primary-color: #8d7254;
        --serv-secondary-color: #d4c1a5;
        --serv-dark-color: #3a3228;
        --serv-light-color: #f8f4f0;
        --serv-text-color: #5a5246;
        --serv-text-light: #8a8378;
        --serv-success-color: #5a5246;
        --serv-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --serv-glow: 0 0 20px rgba(141, 114, 84, 0.3);
        --serv-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        --serv-font-heading: 'Playfair Display', Georgia, serif;
    }

    .serv-services-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, var(--serv-light-color) 0%, #f0e6d8 100%);
        overflow: hidden;
        isolation: isolate;
    }

    .serv-services-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(rgba(141, 114, 84, 0.1) 1px, transparent 1px),
            radial-gradient(rgba(212, 193, 165, 0.1) 1px, transparent 1px);
        background-size: 30px 30px, 90px 90px;
        background-position: 0 0, 15px 15px;
        opacity: 0.4;
        z-index: -1;
    }

    .serv-services-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .serv-services-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .serv-services-subtitle {
        display: inline-block;
        font-size: 1.1rem;
        color: var(--serv-primary-color);
        font-weight: 600;
        letter-spacing: 3px;
        margin-bottom: 20px;
        text-transform: uppercase;
        position: relative;
        padding: 8px 20px;
        background: rgba(141, 114, 84, 0.1);
        border-radius: 30px;
        backdrop-filter: blur(5px);
    }

    .serv-services-title {
        font-family: var(--serv-font-heading);
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        color: var(--serv-dark-color);
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .serv-services-title span {
        position: relative;
        display: inline-block;
        color: var(--serv-primary-color);
    }

    .serv-services-title span:after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 0;
        width: 100%;
        height: 12px;
        background-color: var(--serv-secondary-color);
        z-index: -1;
        border-radius: 3px;
    }

    .serv-services-intro {
        max-width: 700px;
        margin: 0 auto;
        color: var(--serv-text-light);
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .serv-services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 30px;
        perspective: 1000px;
    }

    /* Cards 3D Modernos */
    .serv-service-card {
        position: relative;
        height: 500px;
        transform-style: preserve-3d;
        transition: var(--serv-transition);
        cursor: pointer;
        border-radius: 20px;
    }

    .serv-service-card.flipped {
        transform: rotateY(180deg);
    }

    .serv-card-face {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--serv-shadow);
        display: flex;
        flex-direction: column;
        transition: var(--serv-transition);
        padding: 30px;
    }

    .serv-card-front {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .serv-card-back {
        background: linear-gradient(135deg, var(--serv-primary-color) 0%, var(--serv-dark-color) 100%);
        transform: rotateY(180deg);
        color: white;
        justify-content: center;
    }

    .serv-card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--serv-light-color) 0%, var(--serv-secondary-color) 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--serv-primary-color);
        font-size: 2rem;
        transition: var(--serv-transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .serv-service-card:hover .serv-card-icon {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .serv-card-title {
        font-family: var(--serv-font-heading);
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--serv-dark-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .serv-card-description {
        color: var(--serv-text-light);
        line-height: 1.6;
        text-align: center;
        margin-bottom: 20px;
    }

    .serv-card-features {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .serv-card-features li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: var(--serv-text-color);
        font-size: 0.9rem;
    }

    .serv-card-features i {
        color: var(--serv-primary-color);
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .serv-card-cta {
        margin-top: auto;
        text-align: center;
    }

    .serv-learn-more {
        color: var(--serv-primary-color);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--serv-transition);
        font-size: 0.9rem;
        padding: 8px 16px;
        background: rgba(141, 114, 84, 0.1);
        border-radius: 20px;
    }

    /* Parte de trás do card */
    .serv-back-title {
        font-family: var(--serv-font-heading);
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: white;
        text-align: center;
    }

    .serv-back-description {
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: 0.9;
        text-align: center;
    }

    .serv-session-info {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 25px;
        backdrop-filter: blur(5px);
    }

    .serv-session-info p {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .serv-session-info i {
        margin-right: 10px;
        width: 16px;
    }

    .serv-whatsapp-btn {
        background-color: var(--serv-success-color);
        color: white;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: var(--serv-transition);
        box-shadow: 0 8px 25px rgba(106, 87, 70, 0.4);
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .serv-whatsapp-btn:hover {
        background-color: #6d6251;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(106, 87, 70, 0.4);
    }

    /* Efeito de brilho nos cards */
    .serv-card-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        pointer-events: none;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.5s;
        background: radial-gradient(circle at var(--x) var(--y), rgba(212, 193, 165, 0.4) 0%, transparent 30%);
    }

    .serv-service-card:hover .serv-card-glow {
        opacity: 1;
    }

    /* Animações de entrada */
    .serv-service-card {
        opacity: 0;
        transform: translateY(50px);
    }

    .serv-service-card.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Efeito de flutuação suave */
    @keyframes serv-float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    .serv-service-card {
        animation: serv-float 6s ease-in-out infinite;
    }

    .serv-service-card:nth-child(2) { animation-delay: 0.5s; }
    .serv-service-card:nth-child(3) { animation-delay: 1s; }
    .serv-service-card:nth-child(4) { animation-delay: 1.5s; }
    .serv-service-card:nth-child(5) { animation-delay: 2s; }
    .serv-service-card:nth-child(6) { animation-delay: 2.5s; }

    /* Mobile Back (para versão mobile) */
    .serv-mobile-back {
        display: none;
        margin-top: 20px;
        background: linear-gradient(135deg, var(--serv-primary-color) 0%, var(--serv-dark-color) 100%);
        border-radius: 15px;
        padding: 25px;
        color: white;
        text-align: center;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .serv-services-section {
            padding: 80px 0;
        }
        
        .serv-services-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .serv-service-card {
            height: auto;
            min-height: 380px;
            transform: none !important;
        }

        .serv-service-card.flipped {
            transform: none !important;
        }

        .serv-card-back {
            display: none;
        }
        
        .serv-mobile-back {
            display: block;
        }
        
        .serv-learn-more {
            display: none;
        }

        .serv-service-card {
            animation: none;
        }
    }

    @media (max-width: 480px) {
        .serv-services-title {
            font-size: 2rem;
        }
        
        .serv-card-title {
            font-size: 1.4rem;
        }
        
        .serv-card-face {
            padding: 20px;
        }

    }
   :root {
            --primary-color: #8d7254;
            --secondary-color: #e8cda4;
            --accent-color: #d4b483;
            --dark-color: #5a4a3a;
            --light-color: #f9f5f0;
            --text-color: #333;
            --text-light: #777;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Nunito', sans-serif;
            --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .testimonials-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f0e6d8 100%);
            overflow: hidden;
        }

        .testimonials-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 184, 150, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(165, 143, 118, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 40% 80%, rgba(109, 93, 73, 0.1) 0%, transparent 20%);
            z-index: 0;
            opacity: 0.7;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-subtitle {
            display: inline-block;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
            padding: 10px 25px;
            background: rgba(109, 93, 73, 0.1);
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .testimonials-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--dark-color);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .testimonials-title span {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
        }

        .testimonials-title span:after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--secondary-color);
            z-index: -1;
            border-radius: 3px;
        }

        .testimonials-intro {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-image {
            width: 40vh;
            height: 25vh;
            overflow: hidden;
            position: relative;
        }

        .testimonial-image img {
            width: 40vh;
            height: 25vh;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .testimonial-card:hover .testimonial-image img {
            transform: scale(1.05);
        }

        /* Estilos para o carrossel */
        .testimonials-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(141, 114, 84, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .testimonials-cta {
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials-cta:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 8s infinite;
        }

        .cta-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta-description {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            background-color: white;
            color: var(--primary-color);
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background-color: var(--secondary-color);
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(200%) rotate(45deg); }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-image {
                height: 200px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .testimonials-cta {
                padding: 40px 25px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonial-content {
                padding: 20px;
            }
            
            .cta-button {
                padding: 14px 25px;
                width: 100%;
                justify-content: center;
            }
        
        :root {
            --primary-color: #8d7254;
            --secondary-color: #e8cda4;
            --accent-color: #d4b483;
            --dark-color: #5a4a3a;
            --light-color: #f9f5f0;
            --text-color: #333;
            --text-light: #777;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Nunito', sans-serif;
            --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
            --shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .testimonials-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f0e6d8 100%);
            overflow: hidden;
        }

        .testimonials-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(212, 184, 150, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(165, 143, 118, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 40% 80%, rgba(109, 93, 73, 0.1) 0%, transparent 20%);
            z-index: 0;
            opacity: 0.7;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-subtitle {
            display: inline-block;
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
            padding: 10px 25px;
            background: rgba(109, 93, 73, 0.1);
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .testimonials-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--dark-color);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .testimonials-title span {
            position: relative;
            display: inline-block;
            color: var(--primary-color);
        }

        .testimonials-title span:after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--secondary-color);
            z-index: -1;
            border-radius: 3px;
        }

        .testimonials-intro {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;

            margin-bottom: 60px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
            border: 1px solid rgba(255, 255, 255, 0.6);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-image {
            width: 40vh;
            height: 25vh;
            overflow: hidden;
            position: relative;
        }

        .testimonial-image img {
            width: 40vh;
            height: 25vh;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .testimonial-card:hover .testimonial-image img {
            transform: scale(1.05);
        }

        .testimonial-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            color: white;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .testimonial-content {
            padding: 25px;
        }

        .testimonial-text {
            color: var(--text-color);
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }

        .testimonial-text:before {
            content: "";
            font-family: Georgia, serif;
            font-size: 4rem;
            color: var(--secondary-color);
            position: absolute;
            left: -10px;
            top: -20px;
            opacity: 0.3;
            line-height: 1;
        }

        .testimonial-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(109, 93, 73, 0.1);
            padding-top: 20px;
        }

        .testimonial-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .testimonial-rating {
            display: flex;
            gap: 5px;
        }

        .rating-star {
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .testimonials-cta {
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            padding: 60px 40px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials-cta:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 8s infinite;
        }
        .carousel-nav{
            margin-bottom: 3%;
         }
        .cta-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta-description {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            background-color: white;
            color: var(--primary-color);
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 2;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            background-color: var(--secondary-color);
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(200%) rotate(45deg); }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 0;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-image {
                height: 200px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .testimonials-cta {
                padding: 40px 25px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonial-content {
                padding: 20px;
            }
            
            .cta-button {
                padding: 14px 25px;
                width: 100%;
                justify-content: center;
            }
        }
        
 /* blog */
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        .blog-section {
            padding: 5rem 2rem;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c63ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .blog-subtitle {
            display: block;
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-title {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .blog-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .blog-intro {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary-color);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-content {
            padding: 1.8rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-date {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .card-title {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
            height: 70px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .card-excerpt {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-excerpt p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        /* Corrige estilos de títulos dentro do conteúdo */
        .card-excerpt h1,
        .card-excerpt h2,
        .card-excerpt h3,
        .card-excerpt h4,
        .card-excerpt h5,
        .card-excerpt h6 {
            font-family: 'Poppins', sans-serif !important;
            font-size: 1.1rem !important;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            margin-top: auto;
        }

        .read-more:hover {
            gap: 0.8rem;
            color: var(--secondary-color);
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            grid-column: 1 / -1;
        }

        .view-all-container {
            text-align: center;
            margin-top: 2rem;
        }

        .view-all-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-color);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .view-all-button:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .posts-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 4rem 1.5rem;
            }
            
            .blog-title {
                font-size: 2.3rem;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .card-title {
                height: auto;
            }
        }

        @media (max-width: 480px) {
            .blog-section {
                padding: 3rem 1rem;
            }
            
            .blog-title {
                font-size: 2rem;
            }
            
            .card-content {
                padding: 1.5rem;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
        }

