/* ==================== RESET E VARIÁVEIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #084E7D;
    --primary-dark: #063a5c;
    --primary-light: #0a5d95;
    --secondary: #B5E8FF;
    --secondary-dark: #8dd5ff;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --header-bg: #084E7D;
    --nav-link-color: #ffffff;
    --nav-link-hover: #084E7D;
    --nav-cta-bg: #ffffff;
    --nav-cta-color: #084E7D;
    --nav-cta-hover-bg: #063a5c;
    --nav-cta-hover-color: #ffffff;
    --hero-bg: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --hero-title-text: #1e293b;
    --hero-title-highlight: #084E7D;
    --hero-btn-bg: linear-gradient(135deg, #084E7D 0%, #0a5d95 100%);
    --hero-btn-text: #ffffff;
    --hero-btn-secondary-border: #084E7D;
    --hero-btn-secondary-text: #084E7D;
    --hero-tag-text: #084E7D;
    --gradient-primary: linear-gradient(135deg, #084E7D 0%, #0a5d95 100%);
    --gradient-secondary: linear-gradient(135deg, #B5E8FF 0%, #8dd5ff 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-colored: 0 10px 30px rgba(8, 78, 125, 0.2);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video, canvas {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ==================== BOTÕES ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 78, 125, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
}

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    width: 100%;
}

header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: transform var(--transition-normal);
}

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

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

.nav-link {
    color: var(--nav-link-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

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

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--nav-cta-bg);
    color: var(--nav-cta-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all var(--transition-normal);
    display: inline-block;
}

.nav-cta:hover {
    background: var(--nav-cta-hover-bg);
    color: var(--nav-cta-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 78, 125, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    width: 100%;
}

.ballpit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

#ballpitCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Container do Hero */
.hero-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Título */
.hero-content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--hero-title-text);
}

.hero h1 .highlight {
    color: var(--hero-title-highlight);
    font-weight: 700;
}

/* Blur do Título */
.blur-title {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(25px) saturate(100%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(100%) !important;
    padding: 2rem 3rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(8, 78, 125, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.25rem;
    color: #0f1419;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 700px;
    width: 75%;
}

/* Blur do Subtítulo */
.blur-subtitle {
    background: rgba(105, 203, 255, 0.25) !important;
    backdrop-filter: blur(30px) saturate(50%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(50%) !important;
    padding: 1.05rem 2rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(141, 213, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

/* Botão */
.hero .btn-primary {
    background: var(--hero-btn-bg);
    color: var(--hero-btn-text);
    z-index: 3;
}

.hero .btn-secondary {
    border-color: var(--hero-btn-secondary-border);
    color: var(--hero-btn-secondary-text);
}

.hero .btn-secondary:hover {
    background: var(--hero-btn-secondary-border);
    color: var(--text-white);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--hero-tag-text);
    font-size: 0.9rem;
    font-weight: 500;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-hint svg {
    animation: float 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ==================== STATS SECTION ==================== */
.stats {
    padding: 3rem 0;
    background: white;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    margin-top: 0;
    width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    width: 100%;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(8, 78, 125, 0.1) 0%, rgba(181, 232, 255, 0.2) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

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

.about-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.about-card.featured h3,
.about-card.featured p {
    color: white;
}

.about-card.featured .card-footer {
    color: rgba(255, 255, 255, 0.9);
}

.about-card.featured .highlight {
    color: var(--secondary);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(8, 78, 125, 0.1) 0%, rgba(181, 232, 255, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

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

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: var(--spacing-xl) 0;
    background: white;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.highlight {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.service-card.highlight h3,
.service-card.highlight p,
.service-card.highlight li {
    color: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-card.highlight .service-features li::before {
    color: var(--secondary);
}

/* ==================== PROCESS SECTION ==================== */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    width: 100%;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-colored);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-details span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: white;
    width: 100%;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

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

.quote-icon {
    font-size: 5rem;
    color: var(--secondary);
    line-height: 1;
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

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

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.rating {
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-gray);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    width: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.contact-item a,
.contact-item p {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity var(--transition-fast);
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--bg-light);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

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

/* ==================== ÍCONES LUCIDE ==================== */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: inherit;
}

.icon-large {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    color: inherit;
}

.stat-icon .icon {
    width: 40px;
    height: 40px;
    color: #084E7D;
}

.service-icon .icon-large {
    color: #084E7D;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon .icon-large {
    transform: scale(1.1);
    color: #0a5d95;
}

.service-card.highlight .service-icon .icon-large {
    color: #B5E8FF;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    width: 100%;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary);
}

.footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact ul li .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--secondary);
}

/* ==================== RESPONSIVO ==================== */

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .blur-title {
        padding: 1.75rem 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        width: 75%;
    }
    
    .blur-subtitle {
        padding: 1.1rem 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card.featured {
        transform: scale(1);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telas com altura baixa (notebooks landscape) */
@media (max-width: 900px) and (max-height: 700px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-stack {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .blur-title {
        padding: 1.25rem 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        width: 75%;
    }
    
    .blur-subtitle {
        padding: 0.9rem 1.5rem;
    }
    
    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        width: 100%;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        color: var(--primary);
    }
    
    .nav-cta {
        display: block;
        text-align: center;
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero {
        height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    #ballpitCanvas {
        pointer-events: none;
        touch-action: pan-y;
    }
    
    .hero-stack {
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .blur-title {
        padding: 1.5rem 1.5rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.45) !important;
        backdrop-filter: blur(25px) saturate(100%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(100%) !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        width: 75%;
    }
    
    .blur-subtitle {
        padding: 1rem 1.5rem;
        border-radius: 14px;
        background:rgba(105, 203, 255, 0.25) !important;
        backdrop-filter: blur(30px) saturate(50%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(50%) !important;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-content:hover {
        transform: translateX(0);
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scroll-hint {
        display: none;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .blur-title {
        padding: 1.25rem 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        width: 75%;
    }
    
    .blur-subtitle {
        padding: 0.9rem 1.25rem;
    }
    
    .btn-large {
        font-size: 0.95rem;
        padding: 0.9rem 1.75rem;
    }
}

/* Landscape mobile (celular deitado) */
@media (max-width: 900px) and (max-height: 500px) {
    .hero {
        padding: 3rem 1rem 1rem;
    }
    
    .hero-stack {
        gap: 0.75rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .blur-title {
        padding: 1rem 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        width: 75%;
    }
    
    .blur-subtitle {
        padding: 0.75rem 1.25rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-hint {
        display: none;
    }
}