/* Reset e configurações base */
:root {
    /* Cores RGB especificadas */
    --color-black: rgb(0, 0, 0);
    --color-blue: rgb(59, 110, 216);
    --color-blue-dark: rgb(45, 85, 165);
    --color-pink: rgb(59, 110, 216);
    --color-pink-dark: rgb(45, 85, 165);
    --color-white: rgb(255, 255, 255);
    --color-light-gray: #f5f5f5;
    --color-alert: rgb(231, 76, 60);
    
    /* Cores derivadas */
    --color-black-transparent: rgba(0, 0, 0, 0.8);
    --color-blue-transparent: rgba(59, 110, 216, 0.1);
    --color-pink-transparent: rgba(59, 110, 216, 0.1);
    --color-white-transparent: rgba(255, 255, 255, 0.9);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    --gradient-hero: linear-gradient(135deg, var(--color-blue), var(--color-blue-dark));
    --gradient-text: linear-gradient(45deg, var(--color-blue), var(--color-blue-dark));
}

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

html {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    overflow-x: hidden;
}

/* Prevenir overflow horizontal global */
* {
    max-width: 100%;
}

*:not(html):not(body) {
    max-width: 100%;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header.scrolled .logo-image {
    height: 65px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    color: var(--color-blue);
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-blue) !important;
}

.client-area-btn {
    background: var(--color-white);
    color: var(--color-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid var(--color-blue);
    transition: all 0.3s ease;
}

.client-area-btn:hover {
    background: var(--color-blue-dark);
    color: var(--color-white) !important;
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
}

.client-area-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.nav-toggle.active {
    background: var(--color-blue);
}

.nav-toggle.active span {
    background-color: var(--color-white);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 55vh;
    padding: 6rem 0;
    padding-top: calc(6rem + 80px);
    display: flex;
    align-items: center;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}


.hero {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero.blog-hero .hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-blue);
}

.gradient-text {
    color: var(--color-blue);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-black);
    line-height: 1.6;
    opacity: 0.8;
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-portrait:hover {
    transform: scale(1.02);
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 110, 216, 0.3);
}

.btn-secondary {
    background: var(--color-blue);
    color: var(--color-white);
    border: 2px solid var(--color-blue);
    padding: 12px 24px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    text-decoration: none;
}



/* Seções gerais */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-black);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
}

/* About Section - Features */
.about {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

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

.feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.feature-card p {
    color: var(--color-black);
    line-height: 1.6;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-blue);
}

.budget-calculator .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.service-card p {
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    flex-grow: 1;
}

.service-link {
    background: var(--color-white);
    color: var(--color-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid var(--color-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
}

.service-link:hover {
    background: var(--color-blue-dark);
    color: var(--color-white) !important;
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.services-cta {
    text-align: center;
}

/* Business Segments Section */
.segments {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

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

.segment-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-blue);
}

.segment-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.segment-card p {
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    flex-grow: 1;
}

.segment-link {
    background: var(--color-white);
    color: var(--color-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid var(--color-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
}

.segment-link:hover {
    background: var(--color-blue-dark);
    color: var(--color-white) !important;
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.segments-cta {
    text-align: center;
}

/* ===== SEÇÃO DE DEPOIMENTOS MODERNA ===== */

.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 30%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    border: 1px solid rgba(59, 110, 216, 0.08);
    backdrop-filter: blur(20px);
    overflow: hidden;
    /* Acessibilidade e UX */
    will-change: opacity, transform;
}

.testimonial-card:focus-within {
    outline: 3px solid rgba(59, 110, 216, 0.5);
    outline-offset: 4px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 32px 32px 0 0;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(59, 110, 216, 0.05);
    font-family: serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-card.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-content {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote .fa-quote-left {
    font-size: 2rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-quote .fa-quote-right {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-top: 1.5rem;
    float: right;
    opacity: 0.7;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-black);
    margin: 0;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--color-blue);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.2);
}

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

.testimonial-card:hover .author-image img {
    transform: scale(1.1);
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.author-company {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 0.25rem;
}

.author-role {
    display: block;
    font-size: 0.95rem;
    color: var(--color-black);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.testimonial-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.result-item {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue);
    border: 1px solid rgba(59, 110, 216, 0.2);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.prev-btn, .next-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid rgba(59, 110, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    color: var(--color-blue);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-weight: bold;
    /* Acessibilidade */
    outline: none;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 110, 216, 0.3);
}

.prev-btn:focus-visible, .next-btn:focus-visible {
    outline: 3px solid rgba(59, 110, 216, 0.6);
    outline-offset: 4px;
}

.prev-btn:active, .next-btn:active {
    transform: translateY(-1px) scale(1.05);
    transition: transform 0.1s ease;
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta .btn-link {
    background: var(--color-white);
    color: var(--color-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid var(--color-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.testimonials-cta .btn-link:hover {
    background: var(--color-blue-dark);
    color: var(--color-white) !important;
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== SEÇÃO DE CASOS DE ESTUDO ===== */

.case-studies {
    padding: 8rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 110, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.case-studies .container {
    position: relative;
    z-index: 2;
}

.case-studies .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.case-studies .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.case-studies .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.case-study-card {
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    border-radius: 24px 24px 0 0;
}

.case-study-card:hover::before {
    transform: scaleX(1);
}

.case-study-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 0;
    margin-bottom: 2rem;
}

.case-study-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(59, 110, 216, 0.2);
    flex-shrink: 0;
}

.case-study-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.case-study-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blue);
    background: rgba(59, 110, 216, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
}

.case-study-content {
    padding: 0 2.5rem 2rem;
}

.case-study-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 1rem;
}

.case-study-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.case-study-content h4:first-of-type {
    margin-top: 0;
}

.case-study-content p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.case-study-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.case-study-content li {
    padding: 0.5rem 0;
    color: var(--color-black);
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.case-study-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-white);
    font-weight: bold;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.case-study-results .result-item {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(59, 110, 216, 0.1);
    transition: all 0.3s ease;
}

.case-study-results .result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.1);
}

.result-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-black);
    opacity: 0.7;
    margin-bottom: 0.5rem;
    display: block;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-blue);
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-cta {
    padding: 0 2.5rem 2.5rem;
    text-align: center;
}

.case-study-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* ===== SEÇÃO DE DEPOIMENTOS POR SEGMENTO ===== */

.testimonials-by-segment {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 50%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-by-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-by-segment .container {
    position: relative;
    z-index: 2;
}

.testimonials-by-segment .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-by-segment .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.testimonials-by-segment .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.segments-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.segment-tab {
    background: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(59, 110, 216, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--color-blue);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.segment-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: 1;
}

.segment-tab:hover::before,
.segment-tab.active::before {
    left: 0;
}

.segment-tab:hover,
.segment-tab.active {
    color: var(--color-white);
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

.segment-tab span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.segment-tab i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.segment-tab:hover i,
.segment-tab.active i {
    transform: scale(1.2);
}

.segment-content {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.segment-content.active {
    display: block;
}

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

.segment-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.segment-testimonial {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.segment-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.segment-testimonial:hover::before {
    transform: scaleX(1);
}

.segment-testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.segment-testimonial .testimonial-text {
    margin-bottom: 2rem;
    position: relative;
}

.segment-testimonial .testimonial-text::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: rgba(59, 110, 216, 0.1);
    font-family: serif;
    line-height: 1;
}

.segment-testimonial .testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-black);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding-left: 1rem;
}

.segment-testimonial .testimonial-author {
    font-weight: 700;
    color: var(--color-blue);
    font-size: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.segment-testimonial .testimonial-author::before {
    content: '👤';
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* ===== SEÇÃO DE DEPOIMENTOS EM VÍDEO ===== */

.video-testimonials {
    padding: 8rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.video-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 110, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.video-testimonials .container {
    position: relative;
    z-index: 2;
}

.video-testimonials .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.video-testimonials .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.video-testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(59, 110, 216, 0.15);
}

.video-placeholder {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.video-placeholder .fa-play-circle {
    font-size: 5rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.video-item:hover .fa-play-circle {
    transform: scale(1.2);
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(59, 110, 216, 0.8);
}

.video-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.video-item:hover .video-placeholder h3 {
    color: var(--color-blue);
}

.video-placeholder p {
    font-size: 1rem;
    color: var(--color-black);
    opacity: 0.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.video-duration {
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.video-item:hover .video-placeholder {
    background: linear-gradient(135deg, var(--color-blue) 0%, rgba(255, 165, 0, 0.8) 100%);
}

.video-item:hover .video-placeholder h3,
.video-item:hover .video-placeholder p {
    color: var(--color-white);
}

/* ===== SEÇÃO CTA APRIMORADA ===== */

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-blue) 0%, rgba(255, 165, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--color-white);
    color: var(--color-blue);
    border: 2px solid var(--color-white);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-articles h3,
.free-materials h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-black);
}

.articles-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.article-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-blue);
}

.article-category {
    display: inline-block;
    background: var(--color-blue-transparent);
    color: var(--color-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-black);
    line-height: 1.4;
}

.article-card p {
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

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

.article-link:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
}

/* ===== SEÇÃO DE MATERIAIS GRATUITOS APRIMORADA ===== */

.free-materials {
    padding: 6rem 0;
    /* background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%); */
    position: relative;
    overflow: hidden;
}

.free-materials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.03) 0%, transparent 50%); */
    pointer-events: none;
}

.free-materials .container {
    position: relative;
    z-index: 2;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.material-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(59, 110, 216, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.material-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.material-card:hover::before {
    transform: scaleX(1);
}

.material-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.material-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 5px 10px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.material-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.material-card:hover .material-icon {
    transform: scale(1.1) rotateY(15deg);
}

.material-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.material-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.material-card:hover h3::after {
    width: 80px;
}

.material-card p {
    color: var(--color-black);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.material-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.material-features li {
    padding: 0.75rem 0;
    color: var(--color-black);
    position: relative;
    padding-left: 2rem;
    opacity: 0.85;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    margin: 0.5rem 0;
}

.material-features li:hover {
    opacity: 1;
    padding-left: 2.5rem;
}

.material-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(59, 110, 216, 0.3);
    transition: all 0.3s ease;
}

.material-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-weight: bold;
    font-size: 0.7rem;
    z-index: 1;
}

.material-features li:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.4);
}

.material-card .btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    overflow: hidden;
}

.material-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.material-card .btn:hover::before {
    left: 100%;
}

.material-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

/* CTA dos Materiais */
.materials-cta {
    text-align: center;
    margin-top: 3rem;
}

.materials-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-white);
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.materials-cta .btn:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

.material-card p {
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.materials-cta {
    text-align: center;
}

/* Homepage Contact Section */
.homepage-contact {
    padding: 6rem 0;
    background: var(--color-white);
}

.homepage-contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.homepage-contact .contact-form-container {
    background: var(--color-white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
}

.homepage-contact .contact-form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.75rem;
    text-align: center;
}

.homepage-contact .contact-form-header p {
    color: var(--color-black);
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
}

.homepage-contact .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.02) 0%, rgba(255, 165, 0, 0.01) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(59, 110, 216, 0.08);
}

.homepage-contact .contact-info-header {
        grid-column: 1 / -1;
    text-align: center;
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(59, 110, 216, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
        border-radius: 16px;
        border: 1px solid rgba(59, 110, 216, 0.15);
        margin-bottom: 1rem;
}

.homepage-contact .contact-info-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.homepage-contact .contact-info-header p {
    color: var(--color-black);
    opacity: 0.7;
    font-size: 1rem;
    line-height: 1.5;
}

.homepage-contact .contact-items {
        display: contents;
}

.homepage-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid rgba(59, 110, 216, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-height: 85px;
    position: relative;
}

.homepage-contact .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-blue);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.homepage-contact .contact-item:hover::before {
    opacity: 1;
}

.homepage-contact .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.homepage-contact .contact-icon {
    width: 42px;
    height: 42px;
    background: var(--color-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.3);
    margin-top: 2px;
}

.homepage-contact .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 42px;
}

.homepage-contact .contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.homepage-contact .contact-details p {
    color: var(--color-black);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}

.homepage-contact .contact-details small {
    color: var(--color-black);
    opacity: 0.65;
    font-size: 0.8rem;
    line-height: 1.3;
    font-style: italic;
}

.homepage-contact .social-links {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.08) 0%, rgba(255, 165, 0, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 110, 216, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.homepage-contact .social-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
}

.homepage-contact .social-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.homepage-contact .social-links p {
    color: var(--color-black);
    opacity: 0.7;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
}

.homepage-contact .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.homepage-contact .social-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    background: var(--color-white);
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.homepage-contact .social-link:hover {
    background: var(--color-blue-dark);
    color: var(--color-white);
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 110, 216, 0.3);
    text-decoration: none;
}

.homepage-contact .social-link i {
    transition: all 0.3s ease;
}

.homepage-contact .social-link:hover i {
    transform: scale(1.1);
}

.homepage-contact .social-link span {
    display: none;
}

/* Contact Section - Fallback para outros contextos */
.contact {
    padding: 6rem 0;
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Formulário de Contato */
.contact-form-container {
    background: var(--color-white);
    padding: 3.5rem 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-form-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    color: var(--color-black);
    opacity: 0.6;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.form-group {
    display: flex !important;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1 !important;
}

.form-group.half-width {
    grid-column: span 1 !important;
}

.form-group label {
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.65rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #667eea;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.1rem 1.35rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #667eea;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group input.is-invalid,
.form-group textarea.error,
.form-group textarea.is-invalid,
.form-group select.error,
.form-group select.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus,
.form-group select.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background: #f0fff4;
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: var(--color-success);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-error,
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.35rem;
    font-weight: 500;
    display: block;
}

.form-error.show {
    opacity: 1;
}

/* Character count */
.character-count {
    display: block;
    text-align: right;
    color: #999;
    font-size: 0.875rem;
    margin-top: 0.35rem;
}

.character-count span {
    font-weight: 700;
    color: #667eea;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s;
}

.checkbox-group:hover {
    background: #e9ecef;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-group label {
    margin: 0 !important;
    font-size: 1.05rem !important;
    color: #666;
    cursor: pointer;
    user-select: none;
    font-weight: 500 !important;
}

/* Honeypot field */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Checkbox personalizado - APENAS para homepage */
.homepage-contact .checkbox-group {
    margin-top: 0.5rem;
}

.homepage-contact .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.8;
}

.homepage-contact .checkbox-label input[type="checkbox"] {
    display: none;
}

.homepage-contact .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    background: var(--color-white);
}

.homepage-contact .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.homepage-contact .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-white);
    font-size: 0.7rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-form .btn,
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.contact-form .btn:hover,
.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.contact-form .btn:active,
.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

.contact-form .btn:disabled,
.contact-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-form .btn.loading,
.contact-form button[type="submit"].loading {
    pointer-events: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.8;
}

/* Spinner animation */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contact-form .btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--color-white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-header {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.contact-info-header p {
    color: var(--color-black);
    opacity: 0.6;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: rgba(59, 110, 216, 0.04);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--color-white);
}

.contact-icon i {
    color: var(--color-white);
    font-size: 1.1rem;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--color-black);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contact-details small {
    color: var(--color-black);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Redes Sociais */
.social-links {
    text-align: left;
    padding: 1.5rem;
    background: var(--color-light-gray);
    border-radius: 12px;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.social-links p {
    color: var(--color-black);
    opacity: 0.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-link:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-1px);
}

.social-link i {
    font-size: 1.25rem;
}

.social-link span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* WhatsApp Section - Homepage */
.homepage-contact .whatsapp-section {
    border-top: 2px solid rgba(59, 110, 216, 0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
    position: relative;
}

.homepage-contact .whatsapp-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.homepage-contact .whatsapp-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.homepage-contact .whatsapp-section h4::before {
    content: '💬';
    font-size: 1rem;
}

.homepage-contact .whatsapp-section p {
    color: var(--color-black);
    opacity: 0.7;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
}

.homepage-contact .whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.homepage-contact .whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.homepage-contact .whatsapp-btn:hover::before {
    left: 100%;
}

.homepage-contact .whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--color-white);
}

.homepage-contact .whatsapp-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.homepage-contact .whatsapp-btn:hover i {
    transform: scale(1.1) rotate(10deg);
}

.homepage-contact .whatsapp-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Animação de pulso para chamar atenção */
.homepage-contact .whatsapp-btn {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.1);
    }
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--color-white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    background: var(--color-blue);
    color: var(--color-white);
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    background: var(--color-blue-dark);
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
    line-height: 1.2;
}

.footer-logo h3 span {
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-logo p {
    color: var(--color-white);
    opacity: 0.9;
    line-height: 1.6;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
}

.footer-newsletter p {
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter .btn {
    background: var(--color-white);
    color: var(--color-blue);
    padding: 0.75rem 1rem;
    width: auto;
    align-self: flex-start;
    font-size: 0.9rem;
    border: 2px solid var(--color-blue);
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-newsletter .btn:hover {
    background: var(--color-blue-dark);
    color: var(--color-white);
    border-color: var(--color-blue-dark);
    transform: translateY(-2px);
}

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

.copyright p {
    color: var(--color-white);
    opacity: 0.8;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 2rem;
}

.footer-policies a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-policies a:hover {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #9E9E9E;
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #757575;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Reset para largura total */
    * {
        box-sizing: border-box;
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Prevenir overflow em todos os containers */
    .container,
    .hero-container,
    .contact-content,
    .contact-form-container,
    .contact-info,
    .form-row,
    .form-group {
        max-width: 100%;
        overflow: hidden;
    }
    /* Container e Largura Total */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Header e Navegação */
    .nav-container {
        padding: 1rem 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--color-white) 0%, #f8f9fa 100%);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        padding: 120px 2rem 2rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }

    .nav-menu a {
        font-size: 1.3rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        display: block;
        color: var(--color-black);
        text-decoration: none;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 110, 216, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .nav-menu a:hover::before {
        left: 100%;
    }

    .nav-menu a:hover {
        background: var(--color-blue-transparent);
        color: var(--color-blue);
        transform: translateX(10px);
        box-shadow: 0 4px 15px rgba(59, 110, 216, 0.2);
    }

    .nav-menu a.active {
        background: var(--color-blue);
        color: var(--color-white);
        box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
    }

    .nav-menu a::after {
        display: none;
    }

    /* Overlay do menu mobile */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    /* Hero Section */
    .hero {
        padding: 4rem 0;
        padding-top: calc(4rem + 80px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 10px;
        width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 15px 30px;
        font-size: 1rem;
    }

    .hero-portrait {
        max-width: 100%;
        height: auto;
        width: 100%;
    }

    /* Seções Gerais */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
        opacity: 0.8;
    }

    /* Grids Responsivos */
    .services-grid,
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    /* Cards */
    .budget-calculator .service-card,
    .segment-card,
    .feature-card {
        width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
    }

    /* Títulos dos Cards */
    .budget-calculator .service-card h3,
    .segment-card h3,
    .feature-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    /* Blog */
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .article-card,
    .material-card {
        width: 100%;
        margin: 0;
    }

    /* Depoimentos */
    .testimonial-card {
        width: 100%;
        margin: 0;
        padding: 2rem 1.5rem;
    }

    .testimonials-controls {
        gap: 1.5rem;
    }

    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Homepage Contact Tablet */
    .homepage-contact {
        padding: 4rem 0;
    }
    
    .homepage-contact .contact-content {
            gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .homepage-contact .contact-form-container {
        padding: 2.5rem;
    }
    
        .homepage-contact .contact-info {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 2rem 1.5rem;
        }
    
    /* Contact Form Responsiveness */
    .contact-form-container {
        padding: 2rem 1.5rem !important;
        border-radius: 16px;
        max-width: 100%;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-header p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.95rem 1.1rem;
        font-size: 1rem;
    }
    
    .contact-form .btn,
    .contact-form button[type="submit"] {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
    
    .checkbox-group {
        padding: 1rem 1.25rem;
    }
    
    /* Contact Info */
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .homepage-contact .contact-form-header h3 {
        font-size: 1.75rem;
    }
    
    .homepage-contact .contact-item {
        padding: 1rem;
        gap: 0.875rem;
        min-height: 75px;
    }
    
    .homepage-contact .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .homepage-contact .contact-details {
        min-height: 38px;
    }
    
    .homepage-contact .social-links {
        padding: 1.25rem;
    }
    
    .homepage-contact .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        padding: 8px;
        border: 2px solid var(--color-blue);
    }
    
    .homepage-contact .whatsapp-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* Contato Geral */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        padding: 0 10px;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .contact-form-container,
    .contact-info {
        width: 100%;
        margin: 0;
        padding: 1.5rem 1rem;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }

    /* Inputs responsivos */
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        box-sizing: border-box;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 8px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        width: 100%;
        padding: 0 20px;
    }

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

@media (max-width: 480px) {
    /* Reset total para telas pequenas */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Container e Espaçamentos - Largura Total */
    .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .section {
        padding: 3rem 0;
        width: 100%;
    }

    /* Header */
    .nav-container {
        padding: 1rem 15px;
    }

    /* Hero Section - Largura Total */
    .hero {
        padding: 3rem 0;
        padding-top: calc(3rem + 80px);
        padding-left: 10px;
        padding-right: 10px;
        min-height: auto;
        width: 100%;
    }

    .hero-container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: none;
    }

    /* Títulos e Subtítulos */
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: center;
        opacity: 0.8;
        margin-bottom: 1.25rem;
    }

    /* Botões - Largura Total */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: none;
    }

    .budget-calculator .service-link,
    .segment-link {
        width: 100%;
        text-align: center;
    }

    /* Grids - Largura Total */
    .services-grid,
    .segments-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        margin: 0;
    }

    /* Cards - Largura Total */
    .budget-calculator .service-card,
    .segment-card,
    .feature-card {
        padding: 1.5rem;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    /* Títulos dos Cards - Mobile Pequeno */
    .budget-calculator .service-card h3,
    .segment-card h3,
    .feature-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    /* Blog - Largura Total */
    .blog-content {
        width: 100%;
        margin: 0;
    }

    .article-card,
    .material-card {
        width: 100%;
        margin: 0;
        padding: 1.5rem;
    }

    /* Homepage Contact Mobile Pequeno */
    .homepage-contact {
        padding: 2rem 0;
    }
    
    .homepage-contact .contact-content {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .homepage-contact .contact-form-container {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .homepage-contact .contact-form-header h3 {
        font-size: 1.25rem;
    }
    
    .homepage-contact .contact-item {
        padding: 0.875rem;
        border-radius: 10px;
        gap: 0.625rem;
        min-height: 65px;
        align-items: flex-start;
    }
    
    .homepage-contact .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
        margin-top: 2px;
    }
    
    .homepage-contact .contact-details {
        min-height: 32px;
    }
    
    .homepage-contact .contact-details h4 {
        font-size: 1rem;
    }
    
    .homepage-contact .contact-details p {
        font-size: 0.9rem;
    }
    
    .homepage-contact .social-links {
        padding: 0.875rem;
        border-radius: 12px;
    }
    
    .homepage-contact .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        padding: 4px;
        border-radius: 8px;
        border: 2px solid var(--color-blue);
    }
    
    .homepage-contact .social-icons {
        gap: 0.625rem;
        margin-bottom: 1rem;
    }
    
    .homepage-contact .whatsapp-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 10px;
    }
    
    .homepage-contact .whatsapp-btn i {
        font-size: 1rem;
    }

    /* Homepage Contact Mobile */
    .homepage-contact {
        padding: 3rem 0;
    }
    
    .homepage-contact .contact-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .homepage-contact .contact-form-container {
        padding: 2rem;
        border-radius: 12px;
    }
    
    .homepage-contact .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .homepage-contact .contact-form-header p {
        font-size: 1rem;
    }
    
    .homepage-contact .contact-item {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: row;
        text-align: left;
        min-height: 70px;
        align-items: flex-start;
    }
    
    .homepage-contact .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        margin-top: 2px;
    }
    
    .homepage-contact .contact-details {
        min-height: 36px;
    }
    
    .homepage-contact .contact-details h4 {
        font-size: 0.8rem;
    }
    
    .homepage-contact .contact-details p {
        font-size: 0.9rem;
    }
    
    .homepage-contact .contact-details small {
        font-size: 0.75rem;
    }
    
    .homepage-contact .social-links {
        padding: 1rem;
    }
    
    .homepage-contact .social-icons {
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .homepage-contact .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        padding: 6px;
        border-radius: 8px;
        border: 2px solid var(--color-blue);
    }
    
    .homepage-contact .whatsapp-btn {
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .homepage-contact .whatsapp-btn i {
        font-size: 1.1rem;
    }
    
    /* Form responsivo */
    .homepage-contact .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .homepage-contact .form-group input,
    .homepage-contact .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Contato Geral - Largura Total */
    .contact-content {
        gap: 1rem;
        padding: 0 10px;
        max-width: 100%;
    }

    /* Formulário - Largura Total */
    .contact-form-container {
        padding: 1rem;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    /* Contato Info */
    .contact-info {
        width: 100%;
        margin: 0;
        padding: 1rem;
    }

    /* Footer - Largura Total */
    .footer-content {
        padding: 0 15px;
        width: 100%;
    }

    .footer-newsletter .newsletter-form {
        gap: 1rem;
        width: 100%;
    }

    /* WhatsApp */
    .whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Hero Section */
    .hero-container {
        gap: 2rem;
    }

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

    /* Grids */
    .services-grid,
    .segments-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    /* Blog */
    .blog-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Contato */
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-policies {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    /* Formulário responsivo */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
    
    .form-group.half-width {
        grid-column: 1 / -1 !important;
    }
    
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        min-width: 70px;
        padding: 0.75rem;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave para links internos */
html {
    scroll-padding-top: 80px;
}

/* ===== ESTILOS PARA PÁGINAS INTERNAS ===== */

/* Breadcrumbs Aprimorados */
.breadcrumbs {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 1.2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid rgba(59, 110, 216, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.breadcrumbs::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.breadcrumbs-link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.7;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.breadcrumbs-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.breadcrumbs-link:hover {
    color: var(--color-white);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.3);
}

.breadcrumbs-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.breadcrumbs-current {
    color: var(--color-blue);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 110, 216, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 110, 216, 0.2);
}

.breadcrumbs-separator {
    color: var(--color-blue);
    opacity: 0.5;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.breadcrumbs-item:hover .breadcrumbs-separator {
    transform: rotate(90deg);
}

/* Hero Section para Páginas Internas Aprimorada */
.hero.internal {
    min-height: 50vh;
    padding: 5rem 0;
    padding-top: calc(5rem + 80px);
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero.internal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 110, 216, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero.internal .container {
    position: relative;
    z-index: 2;
}

.hero.internal .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.hero.internal .hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--color-black);
    opacity: 0.85;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero.internal .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero.internal .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 110, 216, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero.internal .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 110, 216, 0.15);
    border-color: rgba(59, 110, 216, 0.3);
}

.hero.internal .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.hero.internal .stat-label {
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Timeline Aprimorada para Páginas Internas */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 110, 216, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.4);
    border: 3px solid var(--color-white);
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.timeline-year:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 110, 216, 0.5);
}

.timeline-content {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 450px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-blue);
}

.timeline-content h3 {
    color: var(--color-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-content p {
    color: var(--color-black);
    line-height: 1.7;
    opacity: 0.85;
    font-size: 1rem;
}

.timeline-content .timeline-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
}

/* Setas de conexão da timeline */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--color-white);
    filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--color-white);
    filter: drop-shadow(2px 0 3px rgba(0, 0, 0, 0.1));
}

/* Cards de Serviços Detalhados Aprimorados */
.service-details {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 110, 216, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.service-details .container {
    position: relative;
    z-index: 2;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-detail-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleX(1);
}

.service-detail-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-detail-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-blue);
}

.service-detail-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.service-detail-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--color-black);
    position: relative;
    z-index: 2;
}

.service-detail-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.service-detail-card:hover h3::after {
    width: 80px;
}

.service-detail-card p {
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.85;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--color-black);
    position: relative;
    padding-left: 2rem;
    opacity: 0.85;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    margin: 0.5rem 0;
}

.service-features li:hover {
    opacity: 1;
    padding-left: 2.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(59, 110, 216, 0.3);
    transition: all 0.3s ease;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-weight: bold;
    font-size: 0.7rem;
    z-index: 1;
}

.service-features li:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.4);
}

/* Seção de Valores Aprimorada */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateX(0deg);
    transform-style: preserve-3d;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 110, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.value-card:hover {
    transform: perspective(1000px) translateY(-12px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-blue);
}

.value-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    display: inline-block;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotateY(15deg);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--color-black);
    position: relative;
    z-index: 3;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.value-card:hover h3::after {
    width: 60px;
}

.value-card p {
    color: var(--color-black);
    line-height: 1.8;
    opacity: 0.85;
    position: relative;
    z-index: 3;
    font-size: 1.05rem;
}

/* Seção de Equipe */
.team-section {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

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

.team-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-blue);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--color-blue);
    transition: all 0.3s ease;
}

.team-card:hover .team-photo {
    border-color: var(--color-blue);
    transform: scale(1.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.team-role {
    color: var(--color-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-card p {
    color: var(--color-black);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-light-gray);
    color: var(--color-black);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Seção de Estatísticas */
.stats-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Seção de FAQ Aprimorada */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid rgba(59, 110, 216, 0.08);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    border-color: var(--color-blue);
    box-shadow: 0 15px 40px rgba(59, 110, 216, 0.15);
    transform: translateY(-5px);
}

.faq-item.active {
    border-color: var(--color-blue);
    box-shadow: 0 20px 50px rgba(59, 110, 216, 0.2);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    box-shadow: 0 6px 20px rgba(59, 110, 216, 0.4);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-blue) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
}

.faq-item.active .faq-answer::before {
    opacity: 1;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--color-black);
    line-height: 1.8;
    opacity: 0.85;
    margin: 0;
    font-size: 1.05rem;
    transform: translateY(10px);
    transition: transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    transform: translateY(0);
}

/* Seção de CTA para Páginas Internas */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsividade para Páginas Internas */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.75rem 0;
        margin-top: 70px;
    }
    
    .breadcrumbs-container {
        padding: 0 1rem;
    }
    
    .breadcrumbs-list {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .hero.internal {
        min-height: 35vh;
        padding: 3rem 0;
        padding-top: calc(3rem + 70px);
    }
    
    .hero.internal .hero-title {
        font-size: 2rem;
    }
    
    .hero.internal .hero-description {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 40px;
    }
    
    .timeline-year {
        position: absolute;
        left: -60px;
        top: 0;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .budget-calculator .service-details-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .budget-calculator .service-detail-card,
    .value-card,
    .team-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-container {
        padding: 0 0.75rem;
    }
    
    .hero.internal {
        padding: 2rem 0;
        padding-top: calc(2rem + 70px);
    }
    
    .hero.internal .hero-title {
        font-size: 1.8rem;
    }
    
    .timeline-item {
        margin-left: 30px;
    }
    
    .timeline-year {
        left: -50px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .budget-calculator .service-detail-card,
    .value-card,
    .team-card {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== ESTILOS PARA PÁGINA DE BLOG ===== */

/* Hero Section do Blog */
.hero.blog-hero {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero.blog-hero .hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Categorias do Blog */
.blog-categories {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.blog-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 110, 216, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.blog-categories .container {
    position: relative;
    z-index: 2;
}

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

.category-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotateY(15deg);
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.category-count {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Artigos do Blog */
.blog-articles {
    padding: 6rem 0;
    position: relative;
}

.blog-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    pointer-events: none;
}

.blog-articles .container {
    position: relative;
    z-index: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
}

.article-meta i {
    color: var(--color-blue);
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
    line-height: 1.4;
}

.article-excerpt {
    color: var(--color-black);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.article-tag {
    background: rgba(59, 110, 216, 0.1);
    color: var(--color-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 110, 216, 0.2);
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

.read-more {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    transform: translateX(5px);
}

/* ===== ESTILOS PARA PÁGINA DE DEPOIMENTOS ===== */

/* Hero Section dos Depoimentos */
.hero.testimonials-hero {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero.testimonials-hero .hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ESTATÍSTICAS DE SUCESSO APRIMORADAS ===== */

.success-stats {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.success-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 110, 216, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 165, 0, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(59, 110, 216, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.success-stats .container {
    position: relative;
    z-index: 2;
}

.success-stats .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.success-stats .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.success-stats .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.stat-item {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    border-radius: 24px 24px 0 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.05) 0%, rgba(255, 165, 0, 0.03) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.stat-item:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 35px 70px rgba(59, 110, 216, 0.2);
    border-color: var(--color-blue);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(59, 110, 216, 0.1);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.stat-description {
    color: var(--color-black);
    opacity: 0.75;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Depoimentos em Destaque */
.testimonials-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
}

.testimonials-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-showcase .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(59, 110, 216, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-blue);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.author-info .company {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== ESTILOS PARA PÁGINA DE CONTATO ===== */

/* Hero Section do Contato */
.hero.contact-hero {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero.contact-hero .hero-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SEÇÃO DE ESPECIALISTAS DISPONÍVEIS ===== */

.contact-specialists {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-specialists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 110, 216, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 165, 0, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.contact-specialists .container {
    position: relative;
    z-index: 2;
}

.contact-specialists .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-specialists .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-specialists .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.specialist-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    text-align: center;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    border-radius: 24px 24px 0 0;
}

.specialist-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.specialist-card:hover::before {
    transform: scaleX(1);
}

.specialist-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.specialist-card:hover {
    transform: translateY(-15px) rotateX(3deg);
    box-shadow: 0 35px 70px rgba(59, 110, 216, 0.2);
    border-color: var(--color-blue);
}

.specialist-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-blue);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.2);
    position: relative;
    z-index: 2;
}

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

.specialist-card:hover .specialist-avatar img {
    transform: scale(1.1);
}

.specialist-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.specialist-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.specialist-description {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.specialist-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.specialist-btn {
    flex: 1;
    max-width: 120px;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.specialist-btn:not(.whatsapp) {
    background: var(--color-blue);
    color: var(--color-white);
    border: 2px solid var(--color-blue);
}

.specialist-btn.whatsapp {
    background: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
}

.specialist-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.specialist-btn:not(.whatsapp):hover {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
}

.specialist-btn.whatsapp:hover {
    background: #1ea952;
    border-color: #1ea952;
}

/* ===== CALCULADORA DE ORÇAMENTO ===== */

.budget-calculator {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 50%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.budget-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 20%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.budget-calculator .container {
    position: relative;
    z-index: 2;
}

.budget-calculator .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.budget-calculator .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.budget-calculator .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.calculator-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.calculator-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.calculator-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calculator-form .form-group {
    margin-bottom: 0;
}

.calculator-form .form-group:last-child {
    grid-column: span 2;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
    font-size: 1.1rem;
}

.calculator-form select {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid rgba(59, 110, 216, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b6ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.calculator-form select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(59, 110, 216, 0.1);
    transform: translateY(-2px);
}

/* Estilos modernos dos checkboxes - APENAS para página de contato interna */
.budget-calculator .budget-calculator .services-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.budget-calculator .checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(59, 110, 216, 0.02) 100%);
    border: 2px solid rgba(59, 110, 216, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.budget-calculator .checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 16px 16px 0;
}

.budget-calculator .checkbox-label:hover::before {
    transform: scaleY(1);
}

.budget-calculator .checkbox-label:hover {
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(59, 110, 216, 0.08) 100%);
    border-color: var(--color-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.15);
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked {
    display: none;
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked + .checkmark + span {
    color: var(--color-blue);
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked ~ * {
    color: var(--color-blue);
}

.budget-calculator .checkbox-label input[type="checkbox"] {
    display: none;
}

.budget-calculator .checkmark {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--color-blue);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: var(--color-white);
    box-shadow: 0 2px 6px rgba(59, 110, 216, 0.1);
}

.checkbox-label:hover .checkmark {
    border-color: var(--color-blue-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.2);
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-blue);
    border-color: var(--color-blue);
    transform: scale(1.05);
    animation: checkmarkPulse 0.4s ease;
    box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
    position: relative;
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked + .checkmark::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 8px;
    opacity: 0;
    animation: checkmarkShine 0.6s ease 0.2s;
}

@keyframes checkmarkShine {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

@keyframes checkmarkPulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 2px 6px rgba(59, 110, 216, 0.1);
    }
    50% { 
        transform: scale(1.15); 
        box-shadow: 0 6px 20px rgba(59, 110, 216, 0.4);
    }
    100% { 
        transform: scale(1.05); 
        box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
    }
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid var(--color-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    opacity: 0;
    animation: checkmarkDraw 0.3s ease 0.1s forwards;
}

@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked {
    & + .checkmark + * {
        color: var(--color-blue);
        font-weight: 700;
    }
}

/* Efeito especial quando selecionado */
.checkbox-label:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-color: var(--color-blue);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.2);
}

.checkbox-label:has(input[type="checkbox"]:checked)::before {
    transform: scaleY(1);
}

.checkbox-label:has(input[type="checkbox"]:checked) span:not(.checkmark) {
    color: var(--color-blue);
    font-weight: 700;
}

.budget-calculator .service-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.budget-calculator .service-icon {
    font-size: 1.25rem;
    color: var(--color-blue);
    opacity: 0.7;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 0.5rem;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.budget-calculator .service-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.checkbox-label:hover .service-icon {
    opacity: 1;
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.2);
}

.checkbox-label:hover .service-text {
    color: var(--color-blue);
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked ~ .service-content .service-icon {
    opacity: 1;
    color: var(--color-blue);
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 110, 216, 0.3);
}

.budget-calculator .checkbox-label input[type="checkbox"]:checked ~ .service-content .service-text {
    color: var(--color-blue);
    font-weight: 700;
}

.calculator-result {
    position: sticky;
    top: 2rem;
}

.result-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.result-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.price-estimate {
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(59, 110, 216, 0.2);
    position: relative;
    z-index: 2;
}

.price-estimate .price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.price-estimate .period {
    font-size: 1rem;
    color: var(--color-black);
    opacity: 0.7;
    font-weight: 600;
}

.result-features {
    margin: 2rem 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.result-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(59, 110, 216, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-features .feature:hover {
    background: rgba(59, 110, 216, 0.1);
    transform: translateX(5px);
}

.result-features .feature i {
    color: var(--color-blue);
    font-size: 1.1rem;
    font-weight: 900;
}

.result-features .feature span {
    color: var(--color-black);
    font-weight: 600;
}

.result-card .btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* ===== FORMULÁRIO DE CONTATO PRINCIPAL ===== */

.contact-form-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-form-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-form-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.contact-form-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-form-main .contact-form-container {
    background: var(--color-white);
    padding: 4rem 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.contact-form-main .contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
    animation: shimmer 3s infinite;
}

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

.contact-form-main .contact-form-container::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.contact-form-main .contact-form-container:hover::after {
    opacity: 1;
    transform: scale(1);
}

.contact-form-main .contact-form-container:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 35px 80px rgba(59, 110, 216, 0.2);
}

.contact-form-main .contact-form-container h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--color-black);
    text-align: center;
    position: relative;
    z-index: 2;
}

.enhanced-form-group {
    margin-bottom: 2rem;
    position: relative;
}

.enhanced-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.enhanced-form-group label::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.enhanced-form-group:focus-within label::after {
    width: 100%;
}

.enhanced-form-group input,
.enhanced-form-group textarea,
.enhanced-form-group select {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(59, 110, 216, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.4s ease;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.enhanced-form-group input:focus,
.enhanced-form-group textarea:focus,
.enhanced-form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(59, 110, 216, 0.1);
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(59, 110, 216, 0.02) 100%);
}

.enhanced-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.enhanced-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.enhanced-submit-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.enhanced-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.enhanced-submit-btn:hover::before {
    left: 100%;
}

.enhanced-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 110, 216, 0.4);
}

.contact-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-enhanced .info-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-enhanced .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.contact-info-enhanced .info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 110, 216, 0.15);
}

.contact-info-enhanced .info-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-enhanced .info-card h4 i {
    font-size: 1.6rem;
    color: var(--color-blue);
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 0.75rem;
    border-radius: 12px;
}

.contact-info-enhanced .info-card p,
.contact-info-enhanced .info-card a {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-enhanced .info-card a:hover {
    color: var(--color-blue);
    opacity: 1;
}

.contact-info-enhanced .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-info-enhanced .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-info-enhanced .social-link:hover {
    background: var(--color-blue-dark);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 110, 216, 0.3);
}

/* ===== SEÇÃO DE INFORMAÇÕES DE CONTATO (CARDS) ===== */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-info-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    text-align: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    border-radius: 24px 24px 0 0;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.contact-info-card:hover {
    transform: translateY(-15px) rotateX(3deg);
    box-shadow: 0 35px 70px rgba(59, 110, 216, 0.2);
    border-color: var(--color-blue);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--color-white);
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.contact-secondary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    opacity: 0.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-details small {
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.6;
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* ===== SEÇÃO DE WHATSAPP E REDES SOCIAIS ===== */

.social-contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 50%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.social-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.social-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.whatsapp-section {
    background: var(--color-white);
    padding: 1rem 1rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    border-radius: 24px 24px 0 0;
}

.whatsapp-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 3rem;
    color: var(--color-white);
}

.whatsapp-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.whatsapp-info p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #1ea952 0%, #0f6b5c 100%);
}

.social-links-section {
    text-align: center;
}

.social-links-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.social-links-section p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.social-icons .social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border: 2px solid rgba(59, 110, 216, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    justify-content: flex-end;
}

.social-icons .social-link:hover {
    /* border-color: var(--color-blue); */
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 110, 216, 0.2);
}

.social-icons .social-link i {
    font-size: 1.5rem;
    /* color: var(--color-blue); */
    padding: 0.75rem;
    border-radius: 10px;
}

.social-icons .social-link span {
    font-size: 1rem;
}

/* ===== SEÇÃO DE LOCALIZAÇÃO E MAPA ===== */

.location-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.location-section .container {
    position: relative;
    z-index: 2;
}

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

.location-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.location-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

.location-info {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.location-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.location-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(59, 110, 216, 0.2);
}

.location-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(59, 110, 216, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(59, 110, 216, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.location-item:hover {
    background: rgba(59, 110, 216, 0.08);
    border-color: var(--color-blue);
    transform: translateX(10px);
}

.location-item i {
    font-size: 1.5rem;
    color: var(--color-blue);
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 0.75rem;
    border-radius: 12px;
    margin-top: 0.25rem;
}

.location-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 1rem;
}

.location-cta {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.location-cta .btn {
    flex: 1;
    text-align: center;
    padding: 1.25rem 2rem;
    font-weight: 700;
}

.location-map {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    position: relative;
    min-height: 500px;
    transition: all 0.5s ease;
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(59, 110, 216, 0.15);
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    color: var(--color-black);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.2);
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.7;
    color: var(--color-black);
}

/* ===== DEPOIMENTOS SOBRE ATENDIMENTO ===== */

.contact-testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 50%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.contact-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-testimonials .container {
    position: relative;
    z-index: 2;
}

.contact-testimonials .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-testimonials .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0.5;
}

.testimonial-quote {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-quote i.fas.fa-quote-left {
    font-size: 2rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-black);
    font-weight: 500;
    font-style: italic;
    margin: 2rem 0;
    position: relative;
}

.testimonial-quote i.fas.fa-quote-right {
    font-size: 2rem;
    color: var(--color-blue);
    margin-top: 1rem;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(59, 110, 216, 0.1);
    position: relative;
    z-index: 2;
}

.author-info h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.author-company {
    font-size: 1rem;
    color: var(--color-blue);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
    font-weight: 600;
}

.author-rating {
    display: flex;
    gap: 0.25rem;
}

.author-rating i {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.prev-btn,
.next-btn {
    width: 60px;
    height: 60px;
    background: var(--color-blue);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--color-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 110, 216, 0.4);
}

.testimonials-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 110, 216, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-blue);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.4);
}

/* ===== CANAIS DE ATENDIMENTO RÁPIDO ===== */

.quick-contact-channels {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 50%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.quick-contact-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.quick-contact-channels .container {
    position: relative;
    z-index: 2;
}

.quick-contact-channels .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.quick-contact-channels .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.quick-contact-channels .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.quick-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.quick-channel {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    text-align: center;
}

.quick-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transform: scaleX(0);
    transition: transform 0.6s ease;
    border-radius: 24px 24px 0 0;
}

.quick-channel.urgent::before {
    background: linear-gradient(90deg, #ff4757 0%, #ff3838 100%);
}

.quick-channel.normal::before {
    background: var(--gradient-primary);
}

.quick-channel.appointment::before {
    background: linear-gradient(90deg, #5f27cd 0%, #341f97 100%);
}

.quick-channel::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.quick-channel.urgent::after {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 56, 56, 0.05) 100%);
}

.quick-channel.normal::after {
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.quick-channel.appointment::after {
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.1) 0%, rgba(52, 31, 151, 0.05) 100%);
}

.quick-channel:hover::before {
    transform: scaleX(1);
}

.quick-channel:hover::after {
    opacity: 1;
    transform: scale(1);
}

.quick-channel:hover {
    transform: translateY(-15px) rotateX(3deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.quick-channel.urgent:hover {
    border-color: #ff4757;
    box-shadow: 0 35px 70px rgba(255, 71, 87, 0.2);
}

.quick-channel.normal:hover {
    border-color: var(--color-blue);
    box-shadow: 0 35px 70px rgba(59, 110, 216, 0.2);
}

.quick-channel.appointment:hover {
    border-color: #5f27cd;
    box-shadow: 0 35px 70px rgba(95, 39, 205, 0.2);
}

.channel-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.quick-channel.urgent .channel-icon {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
}

.quick-channel.normal .channel-icon {
    background: var(--gradient-primary);
}

.quick-channel.appointment .channel-icon {
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
}

.channel-icon i {
    font-size: 2.5rem;
    color: var(--color-white);
}

.quick-channel h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.quick-channel p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.channel-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quick-btn {
    flex: 1;
    max-width: 140px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.quick-btn.phone {
    background: #ff4757;
    color: var(--color-white);
    border-color: #ff4757;
}

.quick-btn.whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

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

.quick-btn.email {
    background: #7b68ee;
    color: var(--color-white);
    border-color: #7b68ee;
}

.quick-btn.calendar {
    background: #5f27cd;
    color: var(--color-white);
    border-color: #5f27cd;
}

.quick-btn.video {
    background: #341f97;
    color: var(--color-white);
    border-color: #341f97;
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quick-btn.phone:hover {
    background: #ff3838;
    border-color: #ff3838;
}

.quick-btn.whatsapp:hover {
    background: #1ea952;
    border-color: #1ea952;
}

.quick-btn.primary:hover {
    background: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
}

.quick-btn.email:hover {
    background: #6c5ce7;
    border-color: #6c5ce7;
}

.quick-btn.calendar:hover {
    background: #341f97;
    border-color: #341f97;
}

.quick-btn.video:hover {
    background: #2d3436;
    border-color: #2d3436;
}

.quick-channel small {
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.6;
    font-weight: 600;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* ===== SEÇÃO FAQ ===== */

.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-white) 50%, var(--color-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(59, 110, 216, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

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

.faq-section .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.faq-item {
    background: var(--color-white);
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(59, 110, 216, 0.02) 100%);
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 20px 20px 0;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--color-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(59, 110, 216, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    color: var(--color-black);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 1rem 0 0;
    font-weight: 500;
}

/* Estatísticas do Hero */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 110, 216, 0.1);
    min-width: 100px;
}

.hero-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-blue);
    display: block;
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--color-black);
    opacity: 0.7;
    font-weight: 600;
}

/* Métodos de Contato */
.hero-contact-methods {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 110, 216, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.2);
}

.contact-method i {
    color: var(--color-blue);
    font-size: 1.1rem;
}

.contact-method span {
    color: var(--color-black);
    font-weight: 500;
}

/* Seção de Informações de Contato */
.contact-info-section {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 110, 216, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.contact-info-section .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    backdrop-filter: blur(10px);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-black);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(59, 110, 216, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(59, 110, 216, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.half-width {
    grid-column: span 1;
}

.form-group.full-width {
    grid-column: span 2;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.3);
}

/* Informações de Contato */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 110, 216, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--color-black);
    opacity: 0.8;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item-content a:hover {
    color: var(--color-blue);
}

/* Mapa */
.contact-map {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== RESPONSIVIDADE PARA PÁGINA DE CONTATO ===== */

@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .calculator-result {
        position: static;
    }
    
    .contact-form-main {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero.contact-hero {
        padding: 4rem 0 2rem;
    }
    
    /* Informações de Contato */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    /* WhatsApp e Redes Sociais */
    .social-contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .whatsapp-section {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .whatsapp-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-icon i {
        font-size: 2.5rem;
    }
    
    .social-icons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 1rem;
    }
    
    /* Localização */
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .location-info {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .location-details {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .location-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .location-map {
        min-height: 300px;
        margin: 0 1rem;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
        padding: 1.5rem;
    }
    
    /* Depoimentos sobre Atendimento */
    .testimonials-slider {
        margin: 0 1rem;
    }
    
    .testimonial-content {
        padding: 3rem 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonials-controls {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .prev-btn,
    .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    /* Canais de Atendimento Rápido */
    .quick-channels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .quick-channel {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .channel-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .channel-icon i {
        font-size: 2rem;
    }
    
    .channel-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-btn {
        max-width: none;
        padding: 1rem;
    }
    
    /* FAQ */
    .faq-content {
        margin: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .hero-stat {
        padding: 0.75rem;
        min-width: auto;
    }
    
    .hero-contact-methods {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    /* Especialistas */
    .contact-specialists {
        padding: 4rem 0;
    }
    
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .specialist-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .specialist-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .specialist-contact {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .specialist-btn {
        max-width: none;
        padding: 1rem;
    }
    
    /* Calculadora */
    .budget-calculator {
        padding: 4rem 0;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .calculator-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .calculator-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .calculator-form .form-group:last-child {
        grid-column: span 1;
    }
    
    .budget-calculator .services-checkboxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .budget-calculator .checkbox-label {
        padding: 1rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .budget-calculator .service-icon {
        font-size: 1rem;
        width: 32px;
        height: 32px;
        padding: 0.375rem;
    }
    
    .budget-calculator .checkmark {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        top: 2px;
        left: 6px;
        width: 5px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }
    
    .budget-calculator .service-text {
        font-size: 0.9rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .price-estimate {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem;
    }
    
    .price-estimate .price {
        font-size: 2rem;
    }
    
    /* Formulário Principal */
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-form-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .contact-form-main .contact-form-container {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .enhanced-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .enhanced-form-group {
        margin-bottom: 1.5rem;
    }
    
    .enhanced-form-group input,
    .enhanced-form-group textarea,
    .enhanced-form-group select {
        padding: 1.25rem;
    }
    
    .contact-info-enhanced {
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .contact-info-enhanced .info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-enhanced .info-card h4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        text-align: left;
    }
    
    .contact-info-enhanced .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero.contact-hero {
        padding: 3rem 0 1.5rem;
    }
    
    /* Informações de Contato */
    .contact-info-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.25rem;
    }
    
    .contact-details h3 {
        font-size: 1.25rem;
    }
    
    .contact-main {
        font-size: 1rem;
    }
    
    /* WhatsApp e Redes Sociais */
    .whatsapp-section {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .whatsapp-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .whatsapp-icon i {
        font-size: 2rem;
    }
    
    .whatsapp-info h3 {
        font-size: 1.5rem;
    }
    
    .whatsapp-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-icons {
        margin: 0 0.5rem;
    }
    
    .social-icons .social-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .social-icons .social-link i {
        font-size: 1.25rem;
        padding: 0.5rem;
    }
    
    /* Localização */
    .location-info {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .location-item h4 {
        font-size: 1rem;
    }
    
    .location-item p {
        font-size: 0.9rem;
    }
    
    .location-map {
        min-height: 250px;
        margin: 0 0.5rem;
    }
    
    .map-placeholder {
        min-height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    /* Depoimentos sobre Atendimento */
    .testimonials-slider {
        margin: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote i.fas.fa-quote-left,
    .testimonial-quote i.fas.fa-quote-right {
        font-size: 1.5rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
    
    .author-company {
        font-size: 0.9rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .author-rating i {
        font-size: 1rem;
    }
    
    .prev-btn,
    .next-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    /* Canais de Atendimento Rápido */
    .quick-channel {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .channel-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .channel-icon i {
        font-size: 1.75rem;
    }
    
    .quick-channel h3 {
        font-size: 1.5rem;
    }
    
    .quick-channel p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    /* FAQ */
    .faq-content {
        margin: 0 0.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .hero-stat {
        padding: 0.75rem 0.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.75rem;
    }
    
    /* Especialistas */
    .contact-specialists {
        padding: 3rem 0;
    }
    
    .specialist-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .specialist-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .specialist-info h3 {
        font-size: 1.25rem;
    }
    
    .specialist-role {
        font-size: 1rem;
    }
    
    .specialist-description {
        font-size: 0.9rem;
    }
    
    /* Calculadora */
    .budget-calculator {
        padding: 3rem 0;
    }
    
    .calculator-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .calculator-form label {
        font-size: 1rem;
    }
    
    .calculator-form select {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .budget-calculator .checkbox-label {
        padding: 0.875rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.625rem;
    }
    
    .budget-calculator .service-content {
        gap: 0.5rem;
    }
    
    .budget-calculator .service-icon {
        font-size: 0.9rem;
        width: 28px;
        height: 28px;
        padding: 0.25rem;
    }
    
    .budget-calculator .checkmark {
        width: 18px;
        height: 18px;
        border-width: 2px;
        border-radius: 4px;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        top: 1px;
        left: 5px;
        width: 4px;
        height: 8px;
        border-width: 0 1.5px 1.5px 0;
    }
    
    .budget-calculator .service-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .result-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .result-card h3 {
        font-size: 1.5rem;
    }
    
    .price-estimate .price {
        font-size: 1.75rem;
    }
    
    .result-features .feature {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Formulário Principal */
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-main .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-form-main .contact-form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .enhanced-form-group label {
        font-size: 1rem;
    }
    
    .enhanced-form-group input,
    .enhanced-form-group textarea,
    .enhanced-form-group select {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .enhanced-submit-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-info-enhanced {
        gap: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-info-enhanced .info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-enhanced .info-card h4 {
        font-size: 1.2rem;
    }
    
    .contact-info-enhanced .info-card h4 i {
        font-size: 1.4rem;
        padding: 0.5rem;
    }
    
    .contact-info-enhanced .info-card p,
    .contact-info-enhanced .info-card a {
        font-size: 1rem;
    }
    
    .contact-info-enhanced .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===== RESPONSIVIDADE PARA PÁGINAS INTERNAS ===== */

/* Responsividade para Materiais Gratuitos */
@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .material-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .material-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .segment-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .material-card h3 {
        font-size: 1.2rem;
    }
    
    .material-features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .materials-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .material-card {
        padding: 1.5rem 1rem;
    }
    
    .material-icon {
        font-size: 2.5rem;
    }
    
    .segment-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .material-card h3 {
        font-size: 1.1rem;
    }
    
    .material-features {
        margin: 1.5rem 0;
    }
    
    .material-features li {
        padding: 0.5rem 0;
        padding-left: 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    /* Blog */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-card {
        margin: 0 1rem;
    }
    
    /* Depoimentos */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        margin: 0 1rem;
    }
    
    /* Contato */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.half-width,
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-contact-methods {
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Blog */
    .category-card {
        padding: 2rem 1.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    /* Depoimentos */
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contato */
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact-methods {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ESTILOS COMPLETOS PARA O BLOG ===== */

/* Seção de Categorias do Blog */
.blog-categories {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.blog-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 110, 216, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.blog-categories .container {
    position: relative;
    z-index: 2;
}

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

.category-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotateY(15deg);
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.category-count {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Seção de Artigos Recentes */
.blog-articles {
    padding: 6rem 0;
    position: relative;
}

.blog-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.blog-articles .container {
    position: relative;
    z-index: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.article-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 2rem;
}

.article-category {
    display: inline-block;
    background: rgba(59, 110, 216, 0.1);
    color: var(--color-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 110, 216, 0.2);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
    flex-wrap: wrap;
}

.article-meta i {
    color: var(--color-blue);
    margin-right: 0.25rem;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
    line-height: 1.4;
}

.article-excerpt {
    color: var(--color-black);
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.article-link {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 0.8rem;
    transform: translateX(5px);
}

/* ===== SEÇÃO DE NEWSLETTER APRIMORADA ===== */

.blog-newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 110, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 110, 216, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.blog-newsletter .container {
    position: relative;
    z-index: 2;
}

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

/* Texto da Newsletter */
.newsletter-text {
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-black);
    line-height: 1.2;
    position: relative;
}

.newsletter-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.newsletter-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-black);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Lista de Benefícios */
.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-benefits li {
    padding: 0.75rem 0;
    color: var(--color-black);
    opacity: 0.9;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.newsletter-benefits li:hover {
    opacity: 1;
    padding-left: 2.5rem;
}

.newsletter-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(59, 110, 216, 0.3);
    transition: all 0.3s ease;
}

.newsletter-benefits li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    font-weight: bold;
    font-size: 0.7rem;
    z-index: 1;
}

.newsletter-benefits li:hover::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(59, 110, 216, 0.4);
}

/* Container do Formulário */
.newsletter-form-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 110, 216, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.newsletter-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.newsletter-form-container:hover::before {
    transform: scaleX(1);
}

.newsletter-form-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 110, 216, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.newsletter-form-container:hover::after {
    opacity: 1;
    transform: scale(1);
}

.newsletter-form-container:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(59, 110, 216, 0.2);
    border-color: var(--color-blue);
}

/* Formulário */
.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
    font-size: 1rem;
    position: relative;
}

.newsletter-form label::after {
    content: ' *';
    color: var(--color-blue);
    font-weight: 800;
}

.newsletter-form input,
.newsletter-form select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(59, 110, 216, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(59, 110, 216, 0.1);
    transform: translateY(-2px);
}

.newsletter-form input::placeholder {
    color: var(--color-black);
    opacity: 0.5;
}

/* Botão da Newsletter */
.newsletter-form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-form .btn:hover::before {
    left: 100%;
}

.newsletter-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 110, 216, 0.4);
}

.newsletter-form .btn:active {
    transform: translateY(-1px);
}

/* Seção de Artigos Populares */
.popular-articles {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-light-gray) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
}

.popular-articles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 110, 216, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.popular-articles .container {
    position: relative;
    z-index: 2;
}

.popular-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.popular-article {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 110, 216, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.popular-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 110, 216, 0.15);
    border-color: var(--color-blue);
}

.popular-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.popular-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-article:hover .popular-article-image img {
    transform: scale(1.1);
}

.popular-article-content {
    padding: 2rem;
}

.popular-article-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
    flex-wrap: wrap;
}

.popular-article-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.popular-article-stats i {
    color: var(--color-blue);
}

/* Seção CTA do Blog */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-blue);
    transform: translateY(-3px);
}

/* Responsividade para o Blog */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .newsletter-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter-text p {
        text-align: center;
    }
    
    .newsletter-benefits {
        text-align: center;
    }
    
    .newsletter-benefits li {
        justify-content: center;
        padding-left: 0;
        padding-right: 2rem;
    }
    
    .newsletter-benefits li::before {
        right: 0;
        left: auto;
    }
    
    .newsletter-benefits li::after {
        right: 4px;
        left: auto;
    }
    
    .newsletter-form-container {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .categories-grid,
    .articles-grid,
    .popular-articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-card,
    .article-card,
    .popular-article {
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .newsletter-content {
        gap: 2rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
    
    .newsletter-benefits li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        padding-right: 1.5rem;
    }
    
    .newsletter-form-container {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .newsletter-form .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .category-card,
    .article-card,
    .popular-article {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ===== RESPONSIVIDADE PARA PÁGINA DE DEPOIMENTOS ===== */

@media (max-width: 768px) {
    /* Estatísticas de Sucesso */
    .success-stats {
        padding: 6rem 0;
    }
    
    .success-stats .section-header {
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .stat-item {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    /* Depoimentos */
    .testimonials {
        padding: 6rem 0;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .testimonial-results {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .result-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .testimonials-controls {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Casos de Estudo */
    .case-studies {
        padding: 6rem 0;
    }
    
    .case-studies .section-header {
        margin-bottom: 3rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .case-study-card {
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .case-study-header {
        padding: 2rem 2rem 0;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .case-study-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .case-study-content {
        padding: 0 2rem 1.5rem;
    }
    
    .case-study-content h4 {
        font-size: 1.1rem;
    }
    
    .case-study-results {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .case-study-results .result-item {
        padding: 0.75rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
    
    .case-study-cta {
        padding: 0 2rem 2rem;
    }
}

@media (max-width: 480px) {
    /* Estatísticas de Sucesso */
    .success-stats {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    /* Depoimentos */
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-slider {
        padding: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .testimonial-card::after {
        font-size: 80px;
        top: 15px;
        right: 20px;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
    
    .author-company {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .testimonial-results {
        gap: 0.4rem;
    }
    
    .result-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .testimonials-controls {
        gap: 1rem;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Casos de Estudo */
    .case-studies {
        padding: 4rem 0;
    }
    
    .case-studies-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .case-study-card {
        margin: 0 0.5rem;
        border-radius: 16px;
    }
    
    .case-study-header {
        padding: 1.5rem 1.5rem 0;
    }
    
    .case-study-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .case-study-info h3 {
        font-size: 1.3rem;
    }
    
    .case-study-category {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
    
    .case-study-content {
        padding: 0 1.5rem 1rem;
    }
    
    .case-study-content h4 {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .case-study-content h4::before {
        width: 3px;
        height: 15px;
    }
    
    .case-study-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .case-study-content li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
    .case-study-content li::before {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .case-study-results {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .case-study-results .result-item {
        padding: 0.5rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .result-value {
        font-size: 1.3rem;
    }
    
    .case-study-cta {
        padding: 0 1.5rem 1.5rem;
    }
    
    .case-study-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Depoimentos por Segmento */
    .testimonials-by-segment {
        padding: 6rem 0;
    }
    
    .segments-selector {
        gap: 0.75rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .segment-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .segment-tab i {
        font-size: 1rem;
    }
    
    .segment-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .segment-testimonial {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .segment-testimonial .testimonial-text p {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .segment-testimonial .testimonial-author {
        font-size: 0.9rem;
    }
    
    /* Depoimentos em Vídeo */
    .video-testimonials {
        padding: 6rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .video-item {
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .video-placeholder {
        height: 240px;
        padding: 1.5rem;
    }
    
    .video-placeholder .fa-play-circle {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .video-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .video-placeholder p {
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    /* Depoimentos por Segmento - Mobile */
    .testimonials-by-segment {
        padding: 4rem 0;
    }
    
    .segments-selector {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        flex-wrap: wrap;
    }
    
    .segment-tab {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 16px;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    .segment-tab i {
        font-size: 0.9rem;
    }
    
    .segment-testimonials-grid {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .segment-testimonial {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .segment-testimonial .testimonial-text::before {
        font-size: 3rem;
        top: -0.75rem;
        left: -0.25rem;
    }
    
    .segment-testimonial .testimonial-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 0.5rem;
    }
    
    .segment-testimonial .testimonial-author {
        font-size: 0.85rem;
    }
    
    .segment-testimonial .testimonial-author::before {
        font-size: 1rem;
    }
    
    /* Depoimentos em Vídeo - Mobile */
    .video-testimonials {
        padding: 4rem 0;
    }
    
    .video-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .video-item {
        margin: 0 0.5rem;
    }
    
    .video-placeholder {
        height: 200px;
        padding: 1rem;
    }
    
    .video-placeholder .fa-play-circle {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .video-placeholder h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .video-placeholder p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .video-duration {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    /* CTA Section - Mobile */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-width: 200px;
    }
} 
/* Materiais Gratuitos - Meta Info */
.material-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.material-downloads,
.material-size {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-black);
    opacity: 0.7;
}

.material-downloads i,
.material-size i {
    color: var(--color-blue);
}

/* Materiais Gratuitos - Stats nos cards */
.material-stats {
    margin: 1rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.material-downloads-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-black);
    opacity: 0.7;
    font-weight: 500;
}

.material-downloads-count i {
    color: var(--color-blue);
}
