/* ==================== */
/* VARIÁVEIS E RESET - ATUALIZADO */
/* ==================== */
:root {
    /* Paleta de cores principal - Foco no #854b3f e #612117 */
    --primary: #854b3f;
    --primary-dark: #612117;
    --primary-light: #a67c74;
    --primary-rgb: 133, 75, 63;
    --primary-dark-rgb: 97, 33, 23;
    
    /* Cores secundárias harmonizadas */
    --secondary: #692f02;
    --secondary-light: #8b3d03;
    --accent: #854b3f;
    --accent-dark: #612117;
    
    /* Cores neutras */
    --white: #ffffff;
    --light: #f8f5f0;
    --light-gray: #e8e5e0;
    --dark: #333333;
    --text-dark: #2a2a2a;
    --footer-bg: #2a2315;
    --footer-dark: #1a150c;
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-special: 'Montserrat', sans-serif;
    
    /* Sombras com cores primárias */
    --shadow-sm: 0 2px 8px rgba(var(--primary-rgb), 0.08);
    --shadow-md: 0 4px 16px rgba(var(--primary-rgb), 0.12);
    --shadow-lg: 0 8px 24px rgba(var(--primary-rgb), 0.16);
    --shadow-xl: 0 12px 32px rgba(var(--primary-rgb), 0.2);
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== */
/* LOADING SCREEN - ATUALIZADO */
/* ==================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    max-width: 90%;
    text-align: center;
}

.loading-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    animation: subtleBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(var(--primary-rgb), 0.1));
}

.loading-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.loading-spinner {
    position: relative;
    width: 70px;
    height: 70px;
}

.spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid var(--primary);
    border-right: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.spinner-circle::before,
.spinner-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.spinner-circle::before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-top: 4px solid var(--primary-dark);
    border-right: 4px solid var(--primary-dark);
    animation: spin 2s linear infinite reverse;
}

.spinner-circle::after {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-top: 4px solid var(--primary-light);
    border-right: 4px solid var(--primary-light);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes subtleBounce {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 10px 20px rgba(var(--primary-rgb), 0.1));
    }
    50% { 
        transform: translateY(-15px) scale(1.02) rotate(2deg);
        filter: drop-shadow(0 15px 30px rgba(var(--primary-rgb), 0.2));
    }
}

/* ==================== */
/* HEADER E NAVEGAÇÃO - ATUALIZADO */
/* ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    border-bottom-color: transparent;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    gap: 1rem;
}

.logo-image {
    height: 70px;
    width: 70px;
    border-radius: 12px;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.logo:hover .logo-image {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary);
}

/* Navegação Principal */
.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-special);
    font-weight: 600;
    text-decoration: none;
    color: var(--primary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Ações do Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-links a:hover::before {
    left: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== */
/* MENU MOBILE - ATUALIZADO */
/* ==================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    transition: var(--transition-slow);
    border-radius: 3px;
}

.toggle-line:nth-child(1) { top: 6px; }
.toggle-line:nth-child(2) { top: 14px; }
.toggle-line:nth-child(3) { top: 22px; }

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary-dark);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary-dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-nav-item {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu.active .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link {
    font-size: 1.3rem;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-special);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-dark);
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(10px);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

/* ==================== */
/* SEÇÃO HERO - ATUALIZADA */
/* ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, rgba(var(--primary-rgb), 0.03) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-special);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line.line-1 { 
    font-size: 2.8rem;
    color: var(--primary-dark);
    animation-delay: 0.2s;
}

.title-line.line-2 { 
    font-size: 4rem;
    color: var(--primary);
    animation-delay: 0.4s;
    margin: 0.5rem 0;
}

.title-line.line-3 { 
    font-size: 3.2rem;
    color: var(--primary-dark);
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-dark-rgb), 0.1));
    z-index: -1;
    transform: scaleX(0.9) skewX(-15deg);
    transition: var(--transition-slow);
    border-radius: 4px;
}

.title-line.line-2::after {
    height: 0.5em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-dark);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.1em;
    right: -0.1em;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition);
}

.highlight-text:hover::after {
    height: 0.6em;
    bottom: 0;
}

/* Stats */
.stats-container {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.stats-item {
    text-align: center;
    position: relative;
}

.stats-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1.5rem;
    height: 100%;
    width: 1px;
    background: rgba(var(--primary-rgb), 0.2);
}

.stats-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-special);
    font-weight: 800;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    gap: 0.5rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary::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: var(--transition-slow);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition-slow);
    z-index: -1;
}

.cta-button.secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.secondary:hover::before {
    left: 0;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    transition: var(--transition-slow);
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 3;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05) contrast(1.1);
}

.image-frame {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: 1;
    transition: var(--transition-slow);
}

.image-pattern {
    position: absolute;
    bottom: -35px;
    left: -35px;
    width: 180px;
    height: 180px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23854b3f' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 2;
    transition: var(--transition-slow);
}

.image-highlight {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--primary-rgb), 0) 70%);
    z-index: 0;
    transition: var(--transition-slow);
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.image-wrapper:hover .main-image {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(var(--primary-rgb), 0.2);
}

.image-wrapper:hover .image-frame {
    transform: translate(10px, 10px);
}

.image-wrapper:hover .image-pattern {
    transform: rotate(10deg) scale(1.1);
}

.image-wrapper:hover .image-highlight {
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.indicator-text {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.indicator-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow {
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    transform: rotate(45deg);
    margin: -5px 0;
    opacity: 0;
    animation: arrow-wave 2s infinite;
    border-radius: 2px;
}

.arrow:nth-child(1) { animation-delay: 0.1s; }
.arrow:nth-child(2) { animation-delay: 0.2s; }
.arrow:nth-child(3) { animation-delay: 0.3s; }

@keyframes arrow-wave {
    0% { 
        opacity: 0; 
        transform: rotate(45deg) translateY(-15px); 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        opacity: 0; 
        transform: rotate(45deg) translateY(15px); 
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0.1;
    border-radius: 50%;
    animation: float 20s infinite linear;
    filter: blur(1px);
}

.shape-1 {
    width: 250px;
    height: 250px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 30%;
    animation-delay: 10s;
    animation-duration: 15s;
}

@keyframes float {
    0% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translate(30px, 30px) rotate(5deg) scale(1.1);
    }
    50% { 
        transform: translate(0, 60px) rotate(0deg) scale(1);
    }
    75% { 
        transform: translate(-30px, 30px) rotate(-5deg) scale(0.9);
    }
    100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* ==================== */
/* SEÇÃO SOBRE - ATUALIZADA */
/* ==================== */
.about-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
    overflow: hidden;
}

.about-deco {
    position: absolute;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.deco-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
}

.deco-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    padding: 2.5rem;
}

.about-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    filter: brightness(1.05) contrast(1.1);
}

.image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: 1;
    transform: translate(20px, 20px);
    transition: var(--transition-slow);
}

.exp-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    z-index: 3;
    box-shadow: var(--shadow-xl);
    transform: rotate(5deg);
    transition: var(--transition-bounce);
    text-align: center;
}

.exp-badge:hover {
    transform: rotate(0deg) scale(1.1);
}

.exp-number {
    font-family: var(--font-special);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
    display: block;
}

.exp-text {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 500;
}

.pattern-dots {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.15;
    z-index: 0;
}

.about-content {
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
}

.title-deco {
    display: block;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    position: relative;
}

.professional-card {
    display: flex;
    align-items: center;
    background-color: var(--light);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pro-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    font-size: 1.2rem;
}

.pro-content h3 {
    font-family: var(--font-special);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.pro-content p {
    font-size: 0.9rem;
    color: var(--primary-light);
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.specialties-list {
    list-style: none;
    margin: 1.5rem 0;
}

.specialties-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.specialties-list i {
    width: 30px;
    height: 30px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.specialties-list span {
    font-weight: 500;
    color: var(--primary-dark);
}

.about-cta {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    gap: 2rem;
}

.signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-img {
    height: 100px;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.signature-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-top: -40px;
}

.about-image:hover .about-main-img {
    transform: scale(1.02);
}

.about-image:hover .image-border {
    transform: translate(15px, 15px);
}

/* ==================== */
/* SEÇÃO SERVIÇOS - ATUALIZADA */
/* ==================== */
.services-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--light);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.service-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    background-color: var(--white);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.card-back {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotateY(180deg);
    justify-content: space-between;
    padding: 2rem 1.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
}

.service-card h3 {
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.card-front p {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.flip-indicator {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: auto;
}

.flip-indicator i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Back Card Styles */
.card-back h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    width: 100%;
}

.service-features li {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-price {
    font-family: var(--font-special);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.service-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid transparent;
}

.service-cta:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==================== */
/* SEÇÃO COMING SOON - ATUALIZADA */
/* ==================== */
.coming-soon-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
    z-index: 0;
}

.deco-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

.deco-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.coming-soon-image {
    position: relative;
    padding: 2rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-dark-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    z-index: 3;
}

.floating-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    z-index: 4;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
    animation: float 3s ease-in-out infinite;
}

.coming-soon-content {
    position: relative;
}

.highlight-label {
    display: inline-block;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0.2rem 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.countdown-container {
    margin: 2.5rem 0;
}

.countdown-title {
    font-family: var(--font-special);
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.countdown-item {
    background-color: var(--light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.countdown-number {
    font-family: var(--font-special);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coming-soon-cta {
    margin: 3rem 0;
}

.cta-text {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    max-width: 450px;
}

.notify-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: 50px 0 0 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.notify-form button {
    padding: 0 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    font-family: var(--font-special);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateX(3px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-top: 0.5rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.avatars-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-text {
    font-size: 0.9rem;
}

.stars {
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stars i {
    font-size: 0.8rem;
}

.proof-text p {
    color: var(--primary-light);
}

.proof-text strong {
    color: var(--primary);
    font-weight: 600;
}

.coming-soon-image:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0);
}

/* ==================== */
/* FORMULÁRIO DE CONTATO - ATUALIZADO */
/* ==================== */
.contact-form-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    color: #fff;
    overflow: hidden;
}

.form-deco {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0) 70%);
    z-index: 0;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
}

.form-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23854b3f' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.form-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.section-title-contact {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-deco-contact {
    display: block;
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-subtitle-contact {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.form-column {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.floating-input input,
.floating-select select {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-input input:focus,
.floating-select select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.floating-input label,
.floating-select label {
    position: absolute;
    top: 1.2rem;
    left: 3rem;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-select select:focus + label,
.floating-select select:not([value=""]) + label {
    top: 0.5rem;
    left: 3rem;
    font-size: 0.8rem;
    color: var(--primary);
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.floating-input input:focus ~ .input-icon,
.floating-select select:focus ~ .input-icon {
    color: var(--primary);
}

textarea {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.textarea-icon {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

textarea:focus ~ .textarea-icon {
    color: var(--primary);
}

.form-actions {
    margin-top: 1rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.submit-btn:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.submit-btn:active {
    transform: translateY(1px);
}

.btn-icon, .btn-loader {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.btn-loader {
    opacity: 0;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-icon {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.form-footer {
    margin-top: 1rem;
    text-align: center;
}

.privacy-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.privacy-text i {
    color: var(--primary);
    font-size: 0.9rem;
}

.benefits-column {
    display: flex;
    flex-direction: column;
}

.benefits-card {
    background-color: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 100%;
}

.benefits-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-special);
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.benefits-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-family: var(--font-special);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.benefit-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-image-card {
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.2), rgba(var(--primary-rgb), 0.1));
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

/* ==================== */
/* SEÇÃO BLOG - ATUALIZADA */
/* ==================== */
.blog-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    position: relative;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    background-color: #fff;
}

.blog-section.animated .blog-card {
    opacity: 1;
    transform: translateY(0);
}

.card-inner-blog {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-wrapper-blog {
    position: relative;
    height: 220px;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.blog-section.animated .image-wrapper-blog {
    transform: translateY(0);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-dark-rgb), 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card-content-blog {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date {
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
}

.article-title {
    font-family: var(--font-special);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-excerpt {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-benefits {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-benefits h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.article-benefits h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.article-benefits ul {
    list-style: none;
}

.article-benefits li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.article-benefits i {
    color: var(--primary);
    font-size: 0.8rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.read-more-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: 0.5s;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.view-all-btn:hover::before {
    transform: translateX(100%);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.3);
}

.view-all-btn i {
    transition: all 0.4s ease;
}

.view-all-btn:hover i {
    transform: rotate(-15deg);
}

/* ==================== */
/* SEÇÃO DEPOIMENTOS - ATUALIZADA */
/* ==================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--primary-dark-rgb), 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-dark-rgb), 0.1) 0%, transparent 70%);
    z-index: 0;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(var(--primary-rgb), 0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    padding-right: 30px;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.testimonial-title span {
    color: var(--primary);
    position: relative;
}

.testimonial-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(var(--primary-rgb), 0.2);
    z-index: -1;
}

.marketing-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.highlight-item:hover .highlight-icon {
    background: var(--primary-dark);
    color: var(--light);
    transform: scale(1.1) rotate(5deg);
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.5s ease;
}

.testimonial-slider:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-5px);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(0.95);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(1.0) contrast(1.0) saturate(1.1);
}

.slide.active img {
    transform: scale(1.05);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.slider-button:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    margin: 3px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-dark);
    transform: scale(1.2);
}

.testimonial-slider::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary), var(--primary-dark));
    z-index: -1;
    border-radius: 20px;
    opacity: 0.7;
    filter: blur(20px);
    animation: borderGlow 3s infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 5s infinite;
    z-index: 5;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    20% {
        left: 100%;
        top: 100%;
    }
    100% {
        left: 100%;
        top: 100%;
    }
}

/* ==================== */
/* FOOTER - ATUALIZADO */
/* ==================== */
.footer {
    background: var(--footer-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--primary) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 4rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 10%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-newsletter {
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.footer-links a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--primary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    min-width: 18px;
    font-size: 1rem;
}

.contact-item-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-item-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-content a:hover {
    color: var(--primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-link i {
    font-size: 0.9rem;
}

.footer-map-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.footer-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 35, 21, 0.7), var(--footer-bg));
    pointer-events: none;
    z-index: 2;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(30%) contrast(110%);
}

.map-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(var(--primary-rgb), 0.9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.map-cta:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--primary);
}

/* ==================== */
/* RESPONSIVIDADE - ATUALIZADA */
/* ==================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title .title-line.line-1 { font-size: 2.5rem; }
    .hero-title .title-line.line-2 { font-size: 3.5rem; }
    .hero-title .title-line.line-3 { font-size: 2.8rem; }
}
  .scroll-indicator{
        display: none!important;
    }
@media (max-width: 992px) {
    .hero {
    position: relative;
    min-height:100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, rgba(var(--primary-rgb), 0.03) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-special);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line.line-1 { 
    font-size: 2.8rem;
    color: var(--primary-dark);
    animation-delay: 0.2s;
}

.title-line.line-2 { 
    font-size: 2rem!important;
    color: var(--primary);
    animation-delay: 0.4s;
    margin: 0.5rem 0;
}

.title-line.line-3 { 
    font-size: 3.2rem;
    color: var(--primary-dark);
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-dark-rgb), 0.1));
    z-index: -1;
    transform: scaleX(0.9) skewX(-15deg);
    transition: var(--transition-slow);
    border-radius: 4px;
}

.title-line.line-2::after {
    height: 0.5em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-dark);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.1em;
    right: -0.1em;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition);
}

.highlight-text:hover::after {
    height: 0.6em;
    bottom: 0;
}

    .header-actions,
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero {
        padding-top: 7rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-grid {
        margin-top: 0;
    }
    
    .title-line.line-1 { font-size: 2.2rem; }
    .title-line.line-2 { font-size: 3rem; }
    .title-line.line-3 { font-size: 2.4rem; }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-section,
    .services-section,
    .contact-form-section,
    .coming-soon-section {
        padding: 6rem 0;
    }
    
    
    .hero-cta {
        justify-content: center;
    }
    
    .image-wrapper {
        margin: 0 auto;
    }
    
    .testimonial-content {
        padding-right: 0;
        text-align: center;
    }
     .scroll-indicator{
        display: none!important;
    }
    .testimonial-title {
        font-size: 2.2rem;
    }
    
    .highlight-item {
        justify-content: center;
    }
    
    .slider-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    /* ==================== */
.hero {
    position: relative;
    min-height:100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, rgba(var(--primary-rgb), 0.03) 100%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-special);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line.line-1 { 
    font-size: 2.8rem;
    color: var(--primary-dark);
    animation-delay: 0.2s;
}

.title-line.line-2 { 
    font-size: 2rem!important;
    color: var(--primary);
    animation-delay: 0.4s;
    margin: 0.5rem 0;
}

.title-line.line-3 { 
    font-size: 3.2rem;
    color: var(--primary-dark);
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-dark-rgb), 0.1));
    z-index: -1;
    transform: scaleX(0.9) skewX(-15deg);
    transition: var(--transition-slow);
    border-radius: 4px;
}

.title-line.line-2::after {
    height: 0.5em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-dark);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.1em;
    right: -0.1em;
    height: 0.4em;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-dark-rgb), 0.2));
    z-index: -1;
    border-radius: 4px;
    transition: var(--transition);
}

.highlight-text:hover::after {
    height: 0.6em;
    bottom: 0;
}

    .header-actions,
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero {
        padding-top: 7rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-grid {
        margin-top: 0;
    }
    
    .title-line.line-1 { font-size: 2.2rem; }
    .title-line.line-2 { font-size: 3rem; }
    .title-line.line-3 { font-size: 2.4rem; }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-section,
    .services-section,
    .contact-form-section,
    .coming-soon-section {
        padding: 6rem 0;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-title {
        font-size: 2rem;
    }
    .scroll-indicator{
        display: none!important;
    }
    .slider-container {
        height: 400px;
    }
    .credentials li{
        list-style-type: none!important;
    }
    .testimonial-content h3{
        text-align: center!important;
    }
    .footer .contact-item-content, h3, p, li {
        text-align: left!important;
    }
    .footer-map-container {
        height: 200px;
    }
    
    .map-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .testimonials-grid{
        display: block!important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .title-line.line-1 { font-size: 1.8rem; }
    .title-line.line-2 { font-size: 2.5rem; }
    .title-line.line-3 { font-size: 2rem; }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stats-item::after {
        display: none;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-inner {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-title {
        font-size: 1.8rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide img {
        width: 100%;
        height: 30vh;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .slider-button {
        width: 45px;
        height: 45px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input {
        border-radius: 50px;
        margin-bottom: 0.5rem;
    }
    
    .notify-form button {
        border-radius: 50px;
        justify-content: center;
        padding: 0.8rem;
    }
    
    .social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .avatars-group {
        justify-content: center;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-map-container {
        height: 180px;
    }
    
    .map-cta {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Utilitários */
.text-primary { color: var(--primary); }
.text-primary-dark { color: var(--primary-dark); }
.bg-primary { background-color: var(--primary); }
.bg-primary-dark { background-color: var(--primary-dark); }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-scroll { overflow: hidden; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* RESPONSIVIDADE ESPECÍFICA PARA CELULARES */
/* ==================== */

/* Tablets (768px para baixo) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header Mobile */
    .header {
        padding: 1rem 0;
    }
    
    .header-inner {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .nav-list,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section - Tablet */
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
        margin: 0 auto;
    }
    
    .image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .title-line.line-1 {
        font-size: 2.2rem;
    }
    
    .title-line.line-2 {
        font-size: 3rem;
    }
    
    .title-line.line-3 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .stats-container {
        justify-content: center;
        gap: 2rem;
    }
    
    .stats-item::after {
        right: -1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* About Section - Tablet */
    .about-section {
        padding: 5rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        padding: 1.5rem;
    }
    
    .exp-badge {
        bottom: -15px;
        right: -15px;
        padding: 1rem 1.5rem;
    }
    
    .exp-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Celulares (480px para baixo) */
@media screen and (max-width: 480px) {
    /* Header Mobile - Celular */
    .header.scrolled {
        padding: 0.5rem 0;
    }
    
    .logo-image {
        height: 45px;
        width: 45px;
    }
    
    /* Hero Section - Celular */
    .hero {
        padding: 10rem 0 2rem;
    }
    
    .hero-grid {
        gap: 1.5rem;
    }
    
    .highlight-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .title-line.line-1 {
        font-size: 1.8rem;
    }
    
    .title-line.line-2 {
        font-size: 2.4rem;
        margin: 0.3rem 0;
    }
    
    .title-line.line-3 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-container {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stats-item::after {
        right: -0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Hero Image - Celular */
    .image-wrapper {
        max-width: 320px;
    }
    
    .image-frame {
        top: -15px;
        right: -15px;
    }
    
    .image-pattern {
        bottom: -20px;
        left: -20px;
        width: 120px;
        height: 120px;
    }
    
    .image-highlight {
        top: -40px;
        right: -40px;
        width: 180px;
        height: 180px;
    }
    
    /* Floating Elements - Celular */
    .floating-shape {
        display: none; /* Otimiza performance no mobile */
    }
    
    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }
    
    /* Scroll Indicator - Celular */
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .indicator-text {
        font-size: 0.7rem;
    }
    
    /* About Section - Celular */
    .about-section {
        padding: 4rem 0;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .about-image {
        padding: 1rem;
    }
    
    .image-border {
        transform: translate(10px, 10px);
    }
    
    .exp-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -30px auto 0;
        transform: rotate(0deg);
        max-width: 200px;
    }
    
    .exp-badge:hover {
        transform: scale(1.05);
    }
    
    .pattern-dots {
        top: -20px;
        left: -20px;
        width: 120px;
        height: 120px;
        background-size: 12px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .title-deco {
        font-size: 0.9rem;
    }
    
    .professional-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pro-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
        font-size: 1rem;
    }
    
    .pro-content h3 {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .specialties-list li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }
    
    .about-cta {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        text-align: center;
    }
    
    .signature {
        order: -1;
    }
    
    .signature-img {
        height: 80px;
    }
    
    .signature-text {
        margin-top: -30px;
        font-size: 0.8rem;
    }
    
    /* Mobile Menu Ajustes */
    .mobile-menu-inner {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .mobile-social-links {
        margin: 1.5rem 0;
    }
    
    .mobile-social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Celulares Pequenos (360px para baixo) */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }
    
    /* Hero - Celular Pequeno */
    .title-line.line-1 {
        font-size: 1.6rem;
    }
    
    .title-line.line-2 {
        font-size: 2rem;
    }
    
    .title-line.line-3 {
        font-size: 1.7rem;
    }
    
    .image-wrapper {
        max-width: 280px;
    }
    
    .stats-container {
        gap: 1rem;
    }
    
    .stats-item::after {
        right: -0.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    /* About - Celular Pequeno */
    .section-title {
        font-size: 1.6rem;
    }
    
    .professional-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .pro-icon {
        margin-right: 0;
    }
}

/* ==================== */
/* ORIENTAÇÃO LANDSCAPE */
/* ==================== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 7rem 0 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .hero-content {
        order: 1;
        text-align: left;
    }
    
    .hero-image-container {
        order: 2;
    }
    
    .title-line.line-1 {
        font-size: 1.5rem;
    }
    
    .title-line.line-2 {
        font-size: 2rem;
    }
    
    .title-line.line-3 {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .stats-container {
        margin: 1rem 0;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
        justify-content: flex-start;
    }
    
    .mobile-menu {
        padding: 1rem 0;
    }
    
    .mobile-menu-inner {
        max-height: 80vh;
        overflow-y: auto;
    }
}