/* Reset e Variáveis Ultra Premium */
:root {
    --primary-color: #0a0e17;
    --secondary-color: #1a1f2e;
    --accent-color: #2d3748;
    --accent-gold: #c9a96e;
    --accent-gold-light: #e6d7b8;
    --text-color: #2d3748;
    --text-light: #718096;
    --background-color: #fefefe;
    --background-alt: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Scrollbar Elegante */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-color));
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ========== HEADER ULTRA ELEGANTE ========== */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.04);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.08);
    padding: 0.2rem 0;
}

.navbar {
    padding: 1.5rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 1rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
    transition: width 0.4s ease;
}

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

.logo-link:hover {
    transform: translateY(-2px);
}

.logo {
    height: 70px;
    margin-right: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
    transition: width 0.4s ease;
    border-radius: 2px;
}

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

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

.nav-link.login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 6px 20px rgba(10, 14, 23, 0.25);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.nav-link.login-btn::before {
    display: none;
}

.nav-link.login-btn::after {
    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;
}

.nav-link.login-btn:hover::after {
    left: 100%;
}

.nav-link.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 14, 23, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ========== HERO SECTION ULTRA PREMIUM ========== */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 50%, #2d3748 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    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(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 55, 72, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(10, 14, 23, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 50% 50%;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    letter-spacing: 0.01em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Botões Ultra Premium */
.btn {
    padding: 1.2rem 3rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: inherit;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #d4b87a, #f4e4b8);
    color: var(--primary-color);
    box-shadow: 0 10px 35px rgba(201, 169, 110, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* REMOVIDO: Floating Cards Section */

/* ========== SEÇÕES PREMIUM ========== */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ========== ICONES PREMIUM ========== */
/* Garantir que todos os ícones sejam visíveis e estilizados corretamente */
.service-icon i,
.feature-icon i,
.contact-icon i,
.whatsapp-icon i,
.chat-icon i,
.footer-contact .contact-icon i,
.chat-feature span i,
.btn i {
    font-size: inherit;
    color: inherit;
    transition: all 0.3s ease;
}

/* Ícones com gradiente premium */
.service-icon i {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-icon i {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animações para ícones */
.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    transform: translateY(-3px);
}

.btn:hover i {
    transform: translateX(3px);
}

/* ========== SERVICES ULTRA LUXUOSOS ========== */
.services {
    background: linear-gradient(135deg, var(--background-alt) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.service-card {
    background: white;
    padding: 4rem 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color), var(--accent-gold));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.service-features li:before {
    content: "✦";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.service-features li:hover:before {
    transform: scale(1.2) rotate(15deg);
}

/* ========== ABOUT ULTRA SOFISTICADO ========== */
.about {
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(45, 55, 72, 0.03) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    animation: fadeInUp 0.8s ease-out;
}

.about-description {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.features-list {
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--background-alt), rgba(248, 249, 250, 0.5));
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    transition: left 0.6s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateX(15px) translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.2rem;
    padding: 0.75rem;
    border-radius: 14px;
    flex-shrink: 0;
    border: 2px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    border-color: rgba(201, 169, 110, 0.4);
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, var(--background-alt), white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
}

.stat:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.stat h3 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat p {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* ========== PROCESSO ULTRA ELEGANTE ========== */
.process {
    background: linear-gradient(135deg, var(--background-alt) 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 55, 72, 0.05) 0%, transparent 50%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 4rem 2.5rem;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-gold), var(--accent-color));
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.08), transparent);
    transition: left 0.6s;
}

.process-step:hover::after {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 30px rgba(58, 80, 107, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 16px 40px rgba(58, 80, 107, 0.5);
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* ========== CTA ULTRA ELEGANTE ========== */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,1000 0,1000"/></svg>');
    background-size: cover;
    animation: gradientShift 10s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

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

.cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #f4e4b8);
    color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.5);
    font-size: 1.2rem;
    padding: 1.5rem 3.5rem;
}

.cta .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.7);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    font-size: 1.2rem;
    padding: 1.5rem 3.5rem;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========== CONTACT SECTION ULTRA ELEGANTE ========== */
.contact {
    background: var(--background-alt);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

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

.contact-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-color));
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    transition: left 0.6s;
}

.contact-item:hover::after {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-item .contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Botões de Contato Ultra Elegantes */
.btn-chat {
    background: linear-gradient(135deg, var(--accent-color), #4a6572);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(58, 80, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-chat::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;
}

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

.btn-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(58, 80, 107, 0.5);
}

.btn-call {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-call::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;
}

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

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.5);
}

.btn-email {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-email::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;
}

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

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.5);
}

/* WhatsApp Ultra Elegante */
.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1.8rem 4rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    border: none;
    cursor: pointer;
    margin-bottom: 2rem;
    animation: pulsePremium 2s infinite;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    position: relative;
    overflow: hidden;
}

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

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

.btn-whatsapp-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
    font-size: 2rem;
    color: white;
}

@keyframes pulsePremium {
    0% { 
        transform: scale(1); 
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 16px 50px rgba(37, 211, 102, 0.7);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
    }
}

/* Chat Promo Ultra Elegante */
.chat-promo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,1000 1000,500 1000,1000"/></svg>');
    background-size: cover;
}

.chat-icon {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-promo h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.chat-promo p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    line-height: 1.7;
    max-width: 450px;
    letter-spacing: 0.01em;
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.chat-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.chat-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.25);
}

.chat-feature span {
    font-size: 2rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.chat-feature p {
    margin: 0;
    text-align: left;
    font-size: 1.2rem;
    opacity: 0.9;
}

.chat-note {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

/* ========== FOOTER ULTRA ELEGANTE ========== */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--accent-gold);
}

.footer-section h4 {
    margin-bottom: 2rem;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(8px);
    color: var(--accent-gold-light);
}

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.footer-contact .contact-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    opacity: 0.7;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

/* ========== ANIMAÇÕES PREMIUM ========== */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-30px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

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

/* ========== MEDIA QUERIES ULTRA RESPONSIVAS ========== */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .chat-promo {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .process-step,
    .stat,
    .contact-item {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .btn-whatsapp-large {
        padding: 1.5rem 2.5rem;
        font-size: 1.2rem;
    }
}

/* Performance Otimizada */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .btn-whatsapp-large {
        animation: none;
    }
}
/* Ajustes da versão corrigida */
.contact-content{align-items:start}.contact-form-card .btn{width:100%}.nav-chat-button{padding:.5rem 0}.footer-chat-link{color:inherit;text-align:left}.footer-chat-link:hover{color:var(--accent-gold)}

/* =====================================================
   CORREÇÕES DE LAYOUT, TEXTOS E PÁGINAS INTERNAS — v6
   ===================================================== */
:root{--header-offset:120px}
html{scroll-padding-top:calc(var(--header-offset) + 24px)}
body{overflow-x:hidden}
main{padding-top:var(--header-offset);min-height:60vh}
section[id]{scroll-margin-top:calc(var(--header-offset) + 24px)}
img,svg,video{max-width:100%}
h1,h2,h3,h4,p,a,button,label,span,small{overflow-wrap:break-word;word-break:normal}
.hero-title,.section-title,.page-title,.cta-content h2{text-wrap:balance}
.hero-description,.page-subtitle,.about-description,.testimonial-content p{max-width:100%}
.section-title-left{text-align:left}.section-title-left::after{left:0;transform:none}
.logo-link,.footer-logo{min-width:0}.logo-text{line-height:1.12;max-width:320px}.logo-image-only .logo{margin-right:0;max-width:290px;width:auto;object-fit:contain}
.nav-logo{min-width:0}.nav-menu{min-width:0}.nav-chat-button{background:none;border:0;font:inherit;cursor:pointer}
.hero{min-height:calc(100vh - var(--header-offset));padding:100px 0}.hero-title{font-size:clamp(2.6rem,5vw,4.5rem)}
.section-title{font-size:clamp(2.15rem,4vw,3.5rem)}.cta-content h2{font-size:clamp(2.3rem,4.5vw,4rem)}
.service-card,.feature,.contact-item,.testimonial-card{min-width:0}
.services-grid{grid-template-columns:repeat(auto-fit,minmax(min(100%,310px),1fr))}
.contact-content{grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:start}
.contact-info,.contact-form-card{min-width:0}
.contact-item p,.footer-contact p{overflow-wrap:anywhere}

/* Formulário de contato */
.contact-form-card{background:#fff;padding:clamp(1.5rem,4vw,3rem);border-radius:var(--border-radius-xl);box-shadow:var(--shadow-lg);border:1px solid rgba(10,14,23,.06);position:sticky;top:calc(var(--header-offset) + 24px)}
.contact-form-card h3{font-size:clamp(1.65rem,3vw,2.2rem);color:var(--primary-color);margin:0 0 .55rem;line-height:1.2}
.contact-form-card>p{color:var(--text-light);margin:0 0 1.8rem;line-height:1.65}
.contact-form-card form{display:grid;gap:1.15rem}
.contact-form-card label{display:grid;gap:.5rem;color:var(--primary-color);font-weight:650}
.contact-form-card input,.contact-form-card textarea{width:100%;border:1px solid #d8dee8;border-radius:12px;padding:1rem 1.05rem;font:inherit;color:var(--text-color);background:#fff;transition:border-color .2s,box-shadow .2s;min-width:0}
.contact-form-card input:focus,.contact-form-card textarea:focus{outline:0;border-color:var(--accent-gold);box-shadow:0 0 0 4px rgba(201,169,110,.16)}
.contact-form-card textarea{resize:vertical;min-height:150px}
.contact-form-card .btn{width:100%}.form-feedback{min-height:1.4rem;font-weight:650}.form-feedback.success{color:#237647}.form-feedback.error{color:#a52b2b}

/* Página de depoimentos */
.testimonials-page{padding:72px 0 110px;background:linear-gradient(180deg,#fff 0%,var(--background-alt) 100%);min-height:calc(100vh - var(--header-offset))}
.page-heading{text-align:center;max-width:860px;margin:0 auto 3rem;padding-top:.5rem}
.page-title{font-size:clamp(2.3rem,5vw,4rem);line-height:1.1;color:var(--primary-color);margin:0 0 1rem;letter-spacing:-.035em}
.page-subtitle{font-size:clamp(1.05rem,2vw,1.3rem);color:var(--text-light);line-height:1.7;margin:0}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,320px),1fr));gap:1.7rem;align-items:stretch}
.testimonial-card{background:#fff;border:1px solid rgba(10,14,23,.07);border-radius:var(--border-radius-lg);padding:clamp(1.5rem,3vw,2.25rem);box-shadow:var(--shadow);display:flex;flex-direction:column;position:relative;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}
.testimonial-card::before{content:'';position:absolute;inset:0 auto 0 0;width:5px;background:linear-gradient(var(--accent-gold),var(--secondary-color))}
.testimonial-card:hover{transform:translateY(-7px);box-shadow:var(--shadow-hover)}
.testimonial-quote{font:700 4.5rem/1 Georgia,serif;color:var(--accent-gold);height:2.6rem;opacity:.8}
.testimonial-content{flex:1;padding:.4rem 0 1.6rem}.testimonial-content p{font-size:1.08rem;line-height:1.8;color:var(--text-color);margin:0}
.testimonial-author{display:flex;align-items:center;gap:1rem;padding-top:1.25rem;border-top:1px solid var(--border-color)}
.author-avatar{width:52px;height:52px;flex:0 0 52px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));color:#fff;font-weight:800;font-size:1.15rem}
.author-info{min-width:0}.author-info h2{font-size:1.05rem;line-height:1.3;margin:0 0 .18rem;color:var(--primary-color)}.author-info span{display:block;color:var(--text-light);font-size:.92rem}
.testimonial-empty{grid-column:1/-1;padding:3rem;text-align:center;background:#fff;border-radius:var(--border-radius);color:var(--text-light)}

/* Rodapé com os novos títulos semânticos */
.footer-section h2{margin-bottom:2rem;color:#fff;font-size:1.3rem;font-weight:600;letter-spacing:.02em}
.footer-chat-link{border:0;background:none;padding:0;font:inherit;cursor:pointer;opacity:.8}
.footer-chat-link:hover{opacity:1;transform:translateX(8px);color:var(--accent-gold-light)}

@media(max-width:1100px){
  .nav-menu{gap:1.45rem}.nav-container{padding:0 28px}.logo-text{font-size:1.45rem;max-width:250px}.logo{height:62px}
}
@media(max-width:1180px){
  :root{--header-offset:88px}.navbar{padding:.8rem 0}.header.scrolled .navbar{padding:.7rem 0}.nav-container{padding:0 22px}.logo{height:58px}.logo-text{font-size:1.25rem;max-width:220px}
  .nav-toggle{display:flex}
  .nav-menu{display:flex;position:fixed;top:var(--header-offset);left:0;right:0;max-height:calc(100vh - var(--header-offset));overflow:auto;flex-direction:column;align-items:stretch;gap:0;padding:14px 22px 24px;background:rgba(255,255,255,.99);box-shadow:0 18px 30px rgba(10,14,23,.14);transform:translateY(-130%);opacity:0;visibility:hidden;transition:.25s ease}
  .nav-menu.active{transform:none;opacity:1;visibility:visible}.nav-link,.nav-chat-button{width:100%;padding:13px 4px;text-align:left;border-bottom:1px solid #edf0f3}.nav-link.login-btn{text-align:center;margin-top:10px;padding:.9rem 1.2rem}
  .nav-toggle{border:0;background:transparent}.contact-content{grid-template-columns:1fr}.contact-form-card{position:static}.about-content{grid-template-columns:1fr}.section-title-left{text-align:center}.section-title-left::after{left:50%;transform:translateX(-50%)}
  .hero{padding:76px 0}.testimonials-page{padding-top:55px}
}
@media(max-width:600px){
  :root{--header-offset:78px}.container,.hero-content{padding-left:20px;padding-right:20px}.navbar{padding:.55rem 0}.logo{height:50px;margin-right:9px}.logo-text{font-size:1.05rem;max-width:165px}.nav-menu{top:var(--header-offset);max-height:calc(100vh - var(--header-offset))}
  section{padding:78px 0}.hero{padding:64px 0}.hero-buttons{gap:1rem}.contact-item{padding:2rem 1.4rem}.contact-item .btn{width:100%;padding:1rem 1.1rem}.footer{padding-top:3.5rem}.footer-logo{align-items:flex-start}.footer-logo .logo-text{font-size:1.25rem}.page-heading{margin-bottom:2rem}.testimonials-grid{gap:1.15rem}
}
