/* ============================================
   FORTIS SOLUÇÕES - SITE DEMONSTRAÇÃO
   Design Premium com Animações Impressionantes
   ============================================ */

:root {
    /* Cores Fortis Soluções */
    --primary: #1565c0;
    --primary-dark: #0d47a1;
    --primary-light: #42a5f5;
    --secondary: #ff6f00;
    --secondary-dark: #e65100;
    --accent: #00acc1;
    
    /* Neutros */
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #666;
    --gray-light: #999;
    --gray-lighter: #e0e0e0;
    --white: #ffffff;
    --bg: #f8f9fa;
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    /* Esconde scrollbar no Chrome, Safari e Edge */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge antigo */
}

/* Esconde scrollbar no Chrome, Safari e Edge */
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    /* Esconde scrollbar no Chrome, Safari e Edge */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge antigo */
}

/* Esconde scrollbar no Chrome, Safari e Edge */
body::-webkit-scrollbar {
    display: none;
}

/* Previne overflow horizontal em todos os elementos */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Garante que containers não ultrapassem a largura */
section, div, article, aside, header, footer, nav, main {
    max-width: 100%;
    overflow-x: hidden;
}

/* Esconde scrollbars em todos os elementos */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge antigo */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Edge */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.loader-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 10px 40px rgba(21, 101, 192, 0.4));
}

.loader-logo span {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-lighter);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 0%;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Garantir que header não bloqueie menu mobile */
@media (max-width: 768px) {
    .header {
        z-index: 999;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(21, 101, 192, 0.2));
}

.logo:hover .logo-img {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 6px 20px rgba(21, 101, 192, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 50%, #1a237e 100%);
    opacity: 0.95;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 20s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffd700, #ff6f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffd700, #ff6f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.arrow span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: arrow 2s infinite;
}

@keyframes arrow {
    0%, 100% { opacity: 0; transform: rotate(45deg) translateY(-5px); }
    50% { opacity: 1; transform: rotate(45deg) translateY(0); }
}

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

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(21, 101, 192, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   SLOGAN SECTION
   ============================================ */

.slogan-section {
    background: linear-gradient(135deg, #77B3F7 0%, #42a5f5 50%, #1565c0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.slogan-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.slogan-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite;
}

.slogan-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.slogan-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROCESSO
   ============================================ */

.processo {
    background: var(--white);
    padding: 100px 0;
}

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

.processo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

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

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: var(--bg);
    padding: 30px;
    border-radius: 20px;
    margin: 0 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(21, 101, 192, 0.15);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   TECNOLOGIAS
   ============================================ */

.tecnologias {
    background: var(--bg);
    padding: 100px 0;
}

.tecnologias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary);
    transition: var(--transition);
}

.tech-item:hover .tech-icon {
    transform: scale(1.2) rotate(5deg);
}

.tech-item span {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

/* ============================================
   GARANTIAS
   ============================================ */

.garantias {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 100px 0;
}

.garantias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.garantia-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.garantia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(21, 101, 192, 0.1), transparent);
    transition: var(--transition);
}

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

.garantia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
}

.garantia-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
    transition: var(--transition);
}

.garantia-card:hover .garantia-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(21, 101, 192, 0.4);
}

.garantia-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.garantia-card p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    background: var(--white);
    padding: 100px 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(21, 101, 192, 0.15);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(21, 101, 192, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
    background: var(--bg);
    padding: 80px 0;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   SERVIÇOS
   ============================================ */

.servicos {
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.servico-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
}

.servico-card.featured {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.05), rgba(66, 165, 245, 0.05));
    border-color: var(--primary);
    transform: scale(1.05);
}

.servico-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(21, 101, 192, 0.3);
}

.servico-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.servico-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.servico-list {
    list-style: none;
    margin-bottom: 30px;
}

.servico-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark);
    font-size: 14px;
}

.servico-list i {
    color: var(--primary);
    font-size: 12px;
}

.servico-price {
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-lighter);
}

.price-from {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

/* ============================================
   SOBRE
   ============================================ */

.sobre {
    background: var(--bg);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text .section-badge {
    margin-bottom: 20px;
}

.sobre-features {
    margin: 40px 0;
}

.sobre-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.sobre-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.sobre-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.sobre-feature p {
    color: var(--gray);
    line-height: 1.8;
}

.sobre-image {
    position: relative;
    height: 500px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-card {
    position: absolute;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 200px;
    transition: var(--transition);
}

.image-card i {
    font-size: 40px;
    color: var(--primary);
}

.image-card span {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 0;
    left: 0;
    animation: floatCard 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: floatCard 3s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCard 3s ease-in-out infinite 1s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

/* ============================================
   PORTFÓLIO
   ============================================ */

.portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-item {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.2);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 101, 192, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transform: scale(0);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(21, 101, 192, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.portfolio-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.portfolio-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.portfolio-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.portfolio-stats i {
    color: var(--primary);
}

/* ============================================
   TESTEMUNHOS
   ============================================ */

.testemunhos {
    background: var(--bg);
}

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

.testemunho-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.testemunho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.15);
}

.testemunho-rating {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 20px;
}

.testemunho-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testemunho-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   DIFERENCIAIS
   ============================================ */

.diferenciais {
    background: var(--bg);
    padding: 100px 0;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(21, 101, 192, 0.15);
    border-color: var(--primary);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.3);
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
}

.diferencial-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.diferencial-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   CONTATO
   ============================================ */

.contato {
    background: var(--white);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contato-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark);
}

.contato-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contato-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.contato-item p {
    color: var(--gray);
}

.contato-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contato-item a:hover {
    color: var(--primary-dark);
}

.contato-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contato-social a {
    width: 45px;
    height: 45px;
    background: var(--bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}

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

.contato-form-wrapper {
    background: var(--bg);
    padding: 40px;
    border-radius: 24px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(21, 101, 192, 0.3));
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-slogan {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.slogan-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light);
    font-style: italic;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseFloat 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

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

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        max-width: 900px;
        padding: 0 30px;
        width: 100%;
        overflow-x: hidden;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .sobre-content,
    .contato-content {
        gap: 40px;
    }

    .processo-timeline {
        padding: 0 40px;
    }

    .timeline-item {
        gap: 40px;
    }

    .tecnologias-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Overlay escuro quando menu está aberto */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        max-width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: var(--white) !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
        transition: left 0.3s ease !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

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

    .nav-menu li {
        width: 100%;
        margin-bottom: 10px;
        list-style: none;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
        color: var(--dark) !important;
        font-weight: 600;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--primary) !important;
        background: rgba(21, 101, 192, 0.05);
        padding-left: 30px;
    }

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

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

    .hero-stats {
        gap: 30px;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

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

    .servico-card.featured {
        transform: scale(1);
    }

    /* Processo Timeline Mobile */
    .processo-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .timeline-content {
        margin: 0;
        padding: 20px;
    }

    /* Tecnologias Mobile */
    .tecnologias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tech-item {
        padding: 20px 10px;
    }

    .tech-icon {
        font-size: 36px;
    }

    .tech-item span {
        font-size: 12px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    /* Garantias Mobile */
    .garantias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .garantia-card {
        padding: 30px 20px;
    }

    .garantia-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat {
        width: 100%;
    }

    .contato-form {
        padding: 30px 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Regras globais para prevenir overflow horizontal */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.hero, .servicos, .portfolio, .diferenciais, .sobre, .contato, 
.processo, .tecnologias, .faq, .garantias, .features {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Garante que grids e flex não causem overflow */
.servicos-grid, .portfolio-grid, .diferenciais-grid, .blog-grid,
.tecnologias-grid, .garantias-grid, .features-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Textos longos quebram corretamente */
h1, h2, h3, h4, h5, h6, p, span, a, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Previne overflow em elementos com position absolute */
.header, .navbar, .nav-menu {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .servico-card {
        padding: 30px 20px;
    }

    .servico-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .servico-card h3 {
        font-size: 1.2rem;
    }

    .servico-card p {
        font-size: 0.9rem;
    }

    .portfolio-item {
        padding: 20px;
    }

    .portfolio-item h3 {
        font-size: 1.3rem;
    }

    .diferencial-card {
        padding: 25px 20px;
    }

    .diferencial-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .contato-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }

    .processo-timeline {
        padding: 0 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .tecnologias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tech-item {
        padding: 15px 10px;
    }

    .tech-icon {
        font-size: 32px;
    }

    .tech-item span {
        font-size: 11px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 18px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .garantias-grid {
        gap: 15px;
    }

    .garantia-card {
        padding: 25px 15px;
    }

    .garantia-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .garantia-card h3 {
        font-size: 1.1rem;
    }

    .garantia-card p {
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

