/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas em tons automotivos profissionais */
    --primary-color: #1976d2;
    --primary-dark: #004ba0;
    --primary-light: #63a4ff;
    --secondary-color: #1a1a1a;
    --accent-color: #4caf50;
    --accent-light: #80e27e;
    --accent-dark: #087f23;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

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

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

/* Header */
.header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(249, 252, 255, 0.96) 50%,
        rgba(245, 250, 255, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(76, 175, 80, 0.08),
                inset 0 -2px 0 rgba(25, 118, 210, 0.1);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, 
        rgba(25, 118, 210, 0.2), 
        rgba(76, 175, 80, 0.2), 
        rgba(25, 118, 210, 0.2)) 1;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: headerGradient 4s ease infinite;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(245, 250, 255, 0.6));
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(76, 175, 80, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.2),
                0 4px 12px rgba(76, 175, 80, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
}

.logo-container:hover::before {
    opacity: 1;
}

.logo {
    height: 5rem;
    width: auto;
    object-fit: contain;
}

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

.logo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 14px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(250, 252, 255, 0.5));
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.12), rgba(76, 175, 80, 0.12));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 14px;
}

.nav-icon {
    font-size: 1.6rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(25, 118, 210, 0.2));
}

.nav-link:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.8), rgba(245, 252, 255, 0.9));
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.18),
                0 3px 10px rgba(76, 175, 80, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover .nav-icon {
    transform: scale(1.3) rotate(-8deg);
    filter: drop-shadow(0 4px 12px rgba(25, 118, 210, 0.4))
            drop-shadow(0 0 20px rgba(76, 175, 80, 0.3));
}

.btn-nav-cta {
    text-decoration: none;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        #1565c0 50%,
        var(--accent-color) 100%);
    background-size: 200% 100%;
    color: white;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.35),
                0 4px 12px rgba(76, 175, 80, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-left: 12px;
}

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

.btn-nav-cta::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        var(--accent-color), 
        var(--primary-light), 
        var(--accent-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
}

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

.btn-nav-cta:hover::after {
    opacity: 1;
}

.btn-nav-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 36px rgba(25, 118, 210, 0.45),
                0 6px 18px rgba(76, 175, 80, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-icon {
    font-size: 1.2rem;
    animation: ctaPulse 2s ease infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(25, 118, 210, 0.1);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    height: 650px;
    background: linear-gradient(135deg, #0d47a1 0%, var(--primary-color) 50%, #1565c0 100%);
    background-size: 200% 200%;
    animation: heroGradient 8s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 -100px 80px -50px rgba(0, 0, 0, 0.3);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.4;
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(-50px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 164, 255, 0.2) 0%, transparent 50%);
    animation: overlayPulse 6s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4),
                 0 0 40px rgba(76, 175, 80, 0.3);
    letter-spacing: -1px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(76, 175, 80, 0.3); }
    50% { text-shadow: 2px 4px 25px rgba(0, 0, 0, 0.5), 0 0 60px rgba(76, 175, 80, 0.5); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease 0.3s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s ease 0.6s backwards;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    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(--accent-color), var(--accent-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4),
                0 5px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.5),
                0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), #0d47a1);
    color: white;
    width: 100%;
    font-size: 1.15rem;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(25, 118, 210, 0.5),
                0 0 40px rgba(76, 175, 80, 0.3);
    cursor: pointer;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
    animation: lineExpand 1s ease 0.3s backwards;
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 100px; }
}

/* Produtos Section */
.produtos-section {
    padding: 120px 0;
    background: var(--bg-white);
    overflow: visible;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    padding: 40px 20px;
}

.produto-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(25, 118, 210, 0.15);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.05), transparent 70%);
    opacity: 1;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
}

.produto-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(25, 118, 210, 0.6), 
        rgba(76, 175, 80, 0.6), 
        rgba(99, 164, 255, 0.6));
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientMove 4s ease infinite;
    filter: blur(12px);
    pointer-events: none;
}

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

.produto-card:hover::before {
    opacity: 0;
}

.produto-card:hover::after {
    opacity: 1;
}

.produto-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(25, 118, 210, 0.25),
                0 15px 40px rgba(76, 175, 80, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.08),
                inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(25, 118, 210, 0.3);
    z-index: 10;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(245, 250, 255, 1) 50%,
        rgba(255, 255, 255, 1) 100%);
}

.produto-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: grayscale(0) drop-shadow(0 4px 12px rgba(25, 118, 210, 0.15));
    position: relative;
    z-index: 2;
}

.produto-card:hover .produto-icon {
    transform: scale(1.4) rotate(360deg) translateY(-8px);
    filter: grayscale(0) 
            drop-shadow(0 10px 25px rgba(76, 175, 80, 0.4))
            drop-shadow(0 0 35px rgba(25, 118, 210, 0.35));
}

.produto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.produto-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.08);
    text-shadow: 0 5px 20px rgba(25, 118, 210, 0.25);
    font-weight: 700;
}

.produto-card p {
    color: var(--text-light);
    line-height: 1.7;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.produto-card:hover p {
    color: #424242;
    transform: translateY(-2px) scale(1.03);
    font-weight: 500;
}

/* Benefícios Section */
.beneficios-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
}

.beneficios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
}

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

.beneficio-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.beneficio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.2),
                0 10px 25px rgba(76, 175, 80, 0.15);
}

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

.beneficio-numero {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.beneficio-item:hover .beneficio-numero {
    opacity: 0.6;
    transform: scale(1.1);
}

.beneficio-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.beneficio-item:hover h3 {
    color: var(--primary-color);
}

.beneficio-item p {
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.beneficio-item:hover p {
    color: var(--text-dark);
}

/* Orçamento Section */
.orcamento-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fbff 100%);
    position: relative;
}

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

.orcamento-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

.orcamento-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.orcamento-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.orcamento-info p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.info-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.2),
                0 4px 15px rgba(76, 175, 80, 0.15);
    border-left-color: var(--accent-color);
}

.info-item:hover::before {
    transform: scaleY(1);
}

.info-item:nth-child(1) .info-icon {
    background: linear-gradient(135deg, #1976d2, #2196f3);
}

.info-item:nth-child(2) .info-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.info-item:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #ff9800, #ffa726);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: white;
}

.info-item:hover .info-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4),
                0 0 30px rgba(76, 175, 80, 0.3);
}

.info-item > div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Formulário */
.orcamento-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #fff5f8 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(25, 118, 210, 0.2), 
                0 5px 20px rgba(76, 175, 80, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.orcamento-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(25, 118, 210, 0.08), 
        rgba(76, 175, 80, 0.08),
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.orcamento-form-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.orcamento-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.3), 
                0 10px 30px rgba(76, 175, 80, 0.2);
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInUp 0.6s ease backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary-color);
    transform: translateX(5px);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 3px solid #e8f0fe;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0e3ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(25, 118, 210, 0.15),
                0 8px 25px rgba(25, 118, 210, 0.25);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231976d2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    animation: slideIn 0.5s ease;
}

.success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: var(--bg-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-color));
    background-size: 200% 100%;
    animation: footerGlow 3s ease infinite;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    margin-bottom: 25px;
    color: var(--accent-light);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid rgba(25, 118, 210, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-link, .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }

    .logo-text {
        display: none;
    }

    .logo-container {
        padding: 5px 10px;
    }

    .hero {
        height: 500px;
        margin-top: 80px;
    }

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

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

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

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

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

    .orcamento-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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

    .orcamento-form-container {
        padding: 25px;
    }
}
