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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #002480;
    background-color: #ffffff;
}

/* Adicione ao final do arquivo */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
    color: #fff;
}

/* CSS Variables */
:root {
    --primary-color: #24c1a6;
    --secondary-color: #f0894b;
    --text-color: #002480;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 48rem;
    margin: 0 auto;
}

.section-description.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1fa390;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e07537;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 1rem 1rem;
    font-size: 1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--text-color);
    margin: 0.125rem 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

.mobile-nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(36 193 166 / 43%) 0%, rgba(255, 255, 255, 1) 50%, rgb(240 137 75 / 49%) 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 5rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    background-color: rgba(36, 193, 166, 0.1);
}

.element-2 {
    bottom: 8rem;
    left: 4rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(240, 137, 75, 0.1);
    animation-delay: -2s;
}

.element-3 {
    top: 50%;
    right: 33%;
    width: 4rem;
    height: 4rem;
    background-color: rgba(36, 193, 166, 0.05);
    animation-delay: -4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(36, 193, 166, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.rocket-icon {
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-circle {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 5s ease-in-out infinite;
    font-size: 8rem;
}

.floating-icon {
    position: absolute;
    width: 4rem;
    height: 4rem;
    /* background-color: var(--white); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow-lg); */
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: -1rem;
    right: 1rem;
    animation-delay: -1s;
}

.icon-2 {
    bottom: -2rem;
    left: 4rem;
    animation-delay: -3s;
}

.icon-3 {
    top: 50%;
    left: -1rem;
    animation-delay: -5s;
}

.icon-4 {
    top: 50%;
    right: 3rem;
    animation-delay: -5s;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-paragraph {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.value-icon.primary {
    background-color: rgba(36, 193, 166, 0.1);
}

.value-icon.secondary {
    background-color: rgba(240, 137, 75, 0.1);
}

.value-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-visual {
    position: relative;
}

.about-card {
    background: linear-gradient(135deg, rgba(36, 193, 166, 0.1) 0%, rgba(240, 137, 75, 0.1) 100%);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
}

.about-card-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    space-y: 0.75rem;
}

.about-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.list-bullet {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.list-bullet.primary {
    background-color: var(--primary-color);
}

.list-bullet.secondary {
    background-color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50) 0%, var(--white) 100%);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    text-align: center;
    margin-bottom: 1rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-content {
    text-align: center;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.feature-bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-text.white {
    color: rgba(255, 255, 255, 0.9);
}

/* Metrics Section */
.metrics {
    padding: 5rem 0;
    background: var(--primary-color);
}

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

.metric-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.metric-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.metric-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.5rem 0;
}

.metric-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.metrics-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-container {
    max-width: 64rem;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 2rem;
}

.gallery-main-image {
    width: 100%;
    height: 24rem;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-caption {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: var(--text-color);
}

.gallery-nav:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-thumb:hover {
    border-color: rgba(36, 193, 166, 0.5);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.25);
}

.indicator:hover {
    background-color: rgba(36, 193, 166, 0.5);
}

/* Case Studies Section */
.case-studies {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50) 0%, var(--white) 100%);
}

.case-study-container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
}

.case-study-card {
    display: none;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
}

.case-study-card.active {
    display: grid;
}

.case-content {
    padding: 3rem;
}

.case-badge {
    background-color: rgba(36, 193, 166, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.case-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.case-details {
    margin-bottom: 2rem;
}

.case-detail {
    margin-bottom: 1.5rem;
}

.case-detail h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.case-detail p {
    color: var(--text-light);
}

.result-highlight {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
}

.case-investment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.investment-item {
    background-color: rgba(36, 193, 166, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    text-align: center;
}

.investment-item:last-child {
    background-color: rgba(240, 137, 75, 0.05);
}

.investment-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.investment-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
}

.investment-value.secondary {
    color: var(--secondary-color);
}

.case-metrics {
    background: linear-gradient(135deg, rgba(36, 193, 166, 0.05) 0%, rgba(240, 137, 75, 0.05) 100%);
    padding: 3rem;
}

.metrics-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.metric-item {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metric-text {
    color: var(--text-light);
}

.metric-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-icon {
    font-size: 1.25rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.case-cta {
    margin-top: 2rem;
    text-align: center;
}

.case-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
    color: var(--text-color);
}

.case-nav:hover {
    background-color: var(--gray-50);
    transform: translateY(-50%) scale(1.1);
}

.case-prev {
    left: 1rem;
}

.case-next {
    right: 1rem;
}

.case-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.case-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.25);
}

.case-indicator:hover {
    background-color: rgba(36, 193, 166, 0.5);
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.clients-scroll {
    position: relative;
    margin: 2rem 0;
}

.clients-scroll::before,
.clients-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    width: 8rem;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.clients-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.clients-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: slide-left 30s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-lg);
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    background-color: var(--gray-100);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* padding: 1rem; */
}

.clients-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--gray-50) 0%, var(--white) 100%);
}

.testimonial-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(36, 193, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    font-size: 1.5rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-photo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid rgba(36, 193, 166, 0.2);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-position {
    color: var(--text-light);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
    color: var(--text-color);
}

.testimonial-nav:hover {
    background-color: var(--gray-50);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 1rem;
}

.testimonial-next {
    right: 1rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.25);
}

.testimonial-indicator:hover {
    background-color: rgba(36, 193, 166, 0.5);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.contact-method {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-cta {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.form-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
    text-align: center;
}

.styled-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-xl);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(36, 193, 166, 0.2);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(36, 193, 166, 0.8);
    transform: scale(1.1);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

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

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.footer-tagline {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-circle {
        width: 16rem;
        height: 16rem;
        font-size: 6rem;
    }

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

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

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

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-card {
        grid-template-columns: 1fr;
    }

    .case-nav {
        display: none;
    }

    .testimonial-nav {
        display: none;
    }

    .gallery-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

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

    .hero-buttons {
        flex-direction: row;
        width: 100%; 
    }

    .btn-lg {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: .8rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

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

    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-thumbnails {
        justify-content: flex-start;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for horizontal scroll elements */
.gallery-thumbnails::-webkit-scrollbar,
.clients-track::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnails,
.clients-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}