/* Fontes Open Sans */
@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('font/Tipografia Auxiliar/OpenSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Reset e Variáveis */
:root {
    --color-primary: #254434;
    --color-bg-light: #F5F6FA;
    --color-text-dark: #2B2D33;
    --color-green: #ceb26f;
    --color-secondary: #ceb26f;
    --color-topbar: #254434;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--color-text-dark);
    line-height: 1.2;
    background-color: #fff;
}

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

/* Top Bar */
.top-bar {
    background-color: #fff;
    color: #000;
    padding: 10px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
}

/* Header */
.header {
    background-color: var(--color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .header {
        z-index: 99998;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    opacity: 1;
}

.nav-menu a:hover {
    color: #ceb26f;
    opacity: 1;
}

.btn-primary {
    background-color: #987a46;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary .whatsapp-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-primary:hover {
    transform: scale(1.03);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a2a 100%);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}


.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 150px 30px 30px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-y: auto;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.mobile-menu-list li {
    margin-bottom: 10px;
}

.mobile-menu-list a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #987a46;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 30px;
    color: #ceb26f;
}

.mobile-menu-list a:hover::before,
.mobile-menu-list a:active::before {
    transform: scaleY(1);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #987a46;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.mobile-menu-btn:hover {
    background: #b89d5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(152, 122, 70, 0.4);
}

.mobile-menu-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-text);
    font-size: 14px;
}

.btn-large {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
}

.btn-green {
    background-color: #254434;
    color: #fff;
    border: 2px solid #254434;
}

.btn-green:hover {
    background-color: #fff;
    color: #254434;
    border: 2px solid #254434;
}

.btn-ghost {
    background-color: #254434;
    color: #fff;
    border: 2px solid #254434;
}

.btn-ghost:hover {
    background-color: #fff;
    color: #254434;
    border: 2px solid #254434;
}

.btn-white {
    background-color: #254434;
    color: #fff;
    border: 2px solid #254434;
}

.btn-white:hover {
    background-color: #fff;
    color: #254434;
    border: 2px solid #254434;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background-image: url('images/fundohome.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 600;
    color: #1e1f1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    color: #1e1f1f;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: none;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('images/fundohomemobile.jpg');
        background-position: center center;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }
    
    .hero-text h1 {
        color: #ffffff;
    }
    
    .hero-text p {
        color: #ffffff;
    }
}

/* Section Title */
.section-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 600;
    color: #1e1f1f;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #F5F6FA;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #254434;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 3%;
    right: 3%;
    height: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
    border-radius: 0 0 12px 12px;
    filter: blur(6px);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 35px;
    line-height: 1;
    display: block;
}

.benefit-card h3 .title-top {
    font-weight: 400;
    display: block;
    font-size: 20px;
    line-height: 5px;
    margin-bottom: 0;
}

.benefit-card h3 .title-bold {
    font-weight: 700;
    display: block;
    font-size: 24px;
    line-height: 5px;
    margin-top: 0;
}

.benefit-card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.95;
}

.benefit-card .btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.benefit-card .btn .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.process-title {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 600;
    color: #1e1f1f;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-intro {
    font-size: 16px;
    color: var(--color-text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
}

.process-tabs::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #254434, transparent);
    opacity: 0.3;
}

.process-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #fff;
    color: #254434;
    border: 2px solid #254434;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-text);
    position: relative;
}

.process-tab::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #254434;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.process-tab:hover {
    background-color: rgba(37, 68, 52, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 68, 52, 0.15);
}

.process-tab:hover::after {
    width: 60%;
}

.process-tab.active {
    background-color: #254434;
    color: #fff;
    border-color: #254434;
    box-shadow: 0 4px 12px rgba(37, 68, 52, 0.25);
}

.process-tab.active::after {
    width: 80%;
    background-color: #987a46;
}

.process-tab svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.process-tab:hover svg {
    transform: scale(1.1);
}

.process-tab.active svg {
    transform: scale(1.1);
}

.process-steps {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

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

.process-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-dark);
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.step-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@media (max-width: 968px) {
    .step-content::before {
        display: none;
    }
}

.step-item {
    text-align: center;
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #254434;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 3;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background-color: #987a46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    z-index: 4;
    border: 3px solid #fff;
}

.step-item h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    color: #1e1f1f;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.5;
}

@media (max-width: 968px) {
    .step-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .process-tab {
        justify-content: center;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.about-highlights {
    list-style: none;
    font-size: 16px;
    line-height: 2;
    color: #1e1f1f;
    font-weight: 500;
}

.about-highlights li {
    position: relative;
    padding-left: 25px;
}

.about-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #987a46;
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(37, 68, 52, 0.3),
        0 0 0 1px rgba(152, 122, 70, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: visible;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        rgba(152, 122, 70, 0.8) 0%, 
        rgba(152, 122, 70, 0.3) 25%,
        rgba(152, 122, 70, 0.1) 50%,
        rgba(152, 122, 70, 0.3) 75%,
        rgba(152, 122, 70, 0.8) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.frame-line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 5px;
    background: linear-gradient(to bottom, #987a46 0%, rgba(152, 122, 70, 0.3) 30%, rgba(152, 122, 70, 0.3) 70%, #987a46 100%);
    border-radius: 3px;
    z-index: 2;
}

.frame-line-left {
    left: 15px;
}

.frame-line-right {
    right: 15px;
}

.frame-s {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #987a46 0%, #b89d5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(152, 122, 70, 0.5);
    z-index: 3;
    border: 5px solid #fff;
    padding: 8px;
    overflow: hidden;
}

.frame-s-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text .section-title {
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
    width: 100%;
}

.service-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
    max-width: calc((100% - 60px) / 3);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #254434;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 68, 52, 0.3);
}

.carousel-btn:hover {
    background-color: #987a46;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 68, 52, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background-color: #254434;
}

/* Tablet - 2 cards */
@media (max-width: 968px) and (min-width: 769px) {
    .service-card {
        flex: 0 0 calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
    
    .services-carousel-wrapper {
        padding: 0 60px;
    }
}

/* Mobile - 1 card */
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-carousel-wrapper {
        padding: 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}


.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--color-bg-light);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder svg {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    color: #1e1f1f;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: var(--color-text-dark);
    line-height: 1.5;
    font-size: 16px;
    flex-grow: 1;
}

/* Simples Nacional Section */
.simples-nacional {
    position: relative;
    padding: 120px 0;
    min-height: 600px;
    background-image: url('images/fundo-simples-nacional.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.simples-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.simples-nacional .container {
    position: relative;
    z-index: 2;
}

.simples-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.simples-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.simples-title strong {
    color: #11C26B;
}

.simples-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.simples-description {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
}

.simples-content .btn {
    margin-top: 10px;
}

@media (max-width: 968px) {
    .simples-nacional {
        padding: 80px 0;
        min-height: 500px;
        background-attachment: scroll;
    }

    .simples-title {
        font-size: 36px;
    }

    .simples-subtitle {
        font-size: 20px;
    }

    .simples-description {
        font-size: 16px;
    }

    .simples-content {
        padding: 0 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #e8eaed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: left;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a2a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 24px;
    height: 24px;
}

.testimonial-author {
    font-weight: 500;
    font-size: 14px;
    color: #1e1f1f;
    margin: 0;
}

/* CTA Main Section */
.cta-main {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-topbar) 0%, #1e3a2a 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-text);
    font-size: 18px;
    font-weight: 600;
    color: #1e1f1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--color-bg-light);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    color: #987a46;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.5;
    padding-top: 10px;
}

/* Footer */
/* Footer */
.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    display: block;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.footer-instagram-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-instagram-link:hover {
    transform: scale(1.1);
}

.footer-instagram-link .footer-icon {
    width: 20px;
    height: 20px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-crc {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
    color: #fff;
}

.footer-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
    color: #fff;
    flex: 1;
}

.footer-phone {
    font-size: 16px;
    margin-top: auto;
    color: #fff;
}

.footer-phone strong {
    color: #11C26B;
}

.btn-whatsapp {
    background-color: #987a46;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-size: 14px;
    margin-top: 10px;
    width: fit-content;
}

.btn-whatsapp:hover {
    transform: scale(1.03);
}

.btn-whatsapp .whatsapp-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    width: fit-content;
    margin-top: auto;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #1e2d3b;
}

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

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
    margin: 0;
    color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #11C26B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(17, 194, 107, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #0ea55a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(17, 194, 107, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .footer-contact-item {
        justify-content: center;
        align-items: center;
    }

    .footer-instagram-link {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-whatsapp,
    .btn-outline-white {
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}


