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

html {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 29, 149, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(15, 32, 39, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Hero Form Styles */

/* Header */
header {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(76, 29, 149, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
    color: #a855f7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 50%, #4c1d95 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.7) 0%, rgba(107, 70, 193, 0.6) 50%, rgba(76, 29, 149, 0.8) 100%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 4;
}

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

.hero-text {
    text-align: left;
    padding-right: 2rem;
    position: relative;
    overflow: visible;
    z-index: 5;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #a855f7;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-form-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
    overflow: visible;
    padding-bottom: 0.1rem;
}

.hero-form-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
}

.hero-form {
    position: relative;
    z-index: 2;
}

.hero-form-fields {
    display: grid;
    gap: 1.5rem;
}

.hero-form-fields input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-form-fields input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form-fields input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hero-form-fields .iti--allow-dropdown input {
    width: 100%;
}

/* Estilos específicos para textarea do hero form */
.hero-form-fields textarea {
    padding: 16px 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3)) 1;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    height: 100px;
    min-height: 100px;
    max-height: 180px;
    resize: vertical;
    line-height: 1.5;
}

.hero-form-fields textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.hero-form-fields textarea:hover {
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5)) 1;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%),
        rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.01);
}

.hero-form-fields textarea:focus {
    outline: none;
    border-image: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)) 1;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%),
        rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.2),
        0 16px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.hero-form-fields textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

/* Scrollbar para textarea do hero */
.hero-form-fields textarea::-webkit-scrollbar {
    width: 6px;
}

.hero-form-fields textarea::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hero-form-fields textarea::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-form-fields textarea::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
}

.hero-form-btn {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4c1d95;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.hero-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.btn-rocket {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-form-btn:hover .btn-rocket {
    transform: translateX(5px);
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: 
        slideInScale 1.2s ease forwards,
        titleGlow 3s ease-in-out infinite 1.5s;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transform-origin: left center;
    overflow: visible;
    padding-bottom: 0.2rem;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 40%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    overflow: visible;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 3.8rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideInScale 1s ease 0.3s forwards;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    transform-origin: left center;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

/* Features Section - Futuristic Design */
.features {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(255, 255, 255, 0.01) 100px,
        rgba(255, 255, 255, 0.01) 102px
    );
    pointer-events: none;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: translateX(0) translateY(0); }
    50% { opacity: 0.8; transform: translateX(10px) translateY(-10px); }
}

.features .container {
    position: relative;
    z-index: 3;
}

.features .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.09), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.11), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { 
        transform: translateY(0);
        opacity: 1;
    }
    25% { 
        transform: translateY(-10px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px);
        opacity: 1;
    }
    75% { 
        transform: translateY(-15px);
        opacity: 0.6;
    }
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.services-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.7;
}

.services-description strong {
    color: #a855f7;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #4c63d2 0%, #9333ea 50%, #c026d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Services Grid - Futuristic Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 0;
    perspective: 1000px;
}

.service-card {
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    transform: translateZ(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.service-card:hover {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

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

.service-card:hover::after {
    opacity: 0;
}

/* Keyframe removido - sem gradientes coloridos */

.service-card-inner {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
}

.service-card-inner img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    margin: 0 auto 2.5rem auto;
    border: none;
    background: none;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-inner img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: none;
    transition: none;
}

.service-card:hover img {
    border: none;
    box-shadow: none;
    transform: scale(1.05);
}

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

/* Features Grid - Futuristic Why Choose */
.why-choose .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.why-choose .feature-card {
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateZ(0);
}

.why-choose .feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.why-choose .feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.why-choose .feature-card:hover {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.why-choose .feature-card:hover::before {
    opacity: 0;
}

.why-choose .feature-card:hover::after {
    opacity: 0;
}

/* Services Icon - Para seção de serviços */
.service-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 20px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .feature-icon {
    box-shadow: 
        0 15px 35px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Feature Icon - Futuristic Why Choose */
.why-choose .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 100%);
    border-radius: 20px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose .feature-card:hover .feature-icon {
    transform: scale(1.1) rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Service Content - Futuristic Typography */
.feature-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    position: relative;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.service-card:hover .feature-content h3::after {
    width: 80px;
}

.feature-content p {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-card:hover .feature-content p {
    opacity: 1;
    color: #f1f5f9;
}

.feature-content p strong {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Feature Card Content - Futuristic Why Choose */
.why-choose .feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    position: relative;
}

.why-choose .feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.why-choose .feature-card:hover h3::after {
    width: 80px;
}

.why-choose .feature-card p {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.why-choose .feature-card:hover p {
    opacity: 1;
    color: #f1f5f9;
}

.why-choose .feature-card p strong {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: 
        linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        0 4px 12px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 16px;
}

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

.service-cta:hover::after {
    opacity: 0;
}

.service-cta:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-cta span,
.cta-arrow {
    position: relative;
    z-index: 5;
}

/* Fallback para feature-cards não específicos */
.features-grid:not(.why-choose .features-grid) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card:not(.why-choose .feature-card) {
    background: rgba(30, 41, 59, 0.8);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(246, 173, 85, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card:not(.why-choose .feature-card)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:not(.why-choose .feature-card):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(246, 173, 85, 0.2);
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(246, 173, 85, 0.3);
}

.feature-card:not(.why-choose .feature-card):hover::before {
    transform: scaleX(1);
}

.feature-icon:not(.why-choose .feature-icon) {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 100%);
    border-radius: 20px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(76, 29, 149, 0.2);
}

.feature-card:not(.why-choose .feature-card) h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #f1f5f9;
    font-weight: 700;
}

.feature-card:not(.why-choose .feature-card) p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-card:not(.why-choose .feature-card) p strong {
    color: #a855f7;
    font-weight: 700;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: all 0.6s ease;
    font-style: normal;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-cta:hover .cta-arrow {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* About Section */
.about {
    padding: 120px 0;
    background: rgba(30, 41, 59, 0.3);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(107, 70, 193, 0.1) 0%, transparent 70%);
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}



.about-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.about-text p strong {
    color: #a855f7;
    font-weight: 700;
}

.read-more-btn {
    display: inline-block;
    background: transparent;
    color: #a855f7;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #a855f7;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.read-more-btn:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.about-image {
    background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 100%);
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(76, 29, 149, 0.2);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: rgba(15, 23, 42, 0.9);
    position: relative;
    border-top: 1px solid rgba(246, 173, 85, 0.1);
    border-bottom: 1px solid rgba(246, 173, 85, 0.1);
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(246, 173, 85, 0.03) 0%, transparent 70%);
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(246, 173, 85, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 173, 85, 0.3);
    box-shadow: 0 15px 35px rgba(246, 173, 85, 0.1);
}

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

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #a855f7;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(246, 173, 85, 0.3);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.3rem;
}

.stat-sublabel {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Why Choose Us Section - Futuristic Design */
.why-choose {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(255, 255, 255, 0.01) 100px,
        rgba(255, 255, 255, 0.01) 102px
    );
    pointer-events: none;
    z-index: 1;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    animation: backgroundShift 8s ease-in-out infinite;
}

.why-choose .container {
    position: relative;
    z-index: 3;
}

.why-choose .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.09), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, 0.11), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.why-choose .section-title {
    color: #f1f5f9;
}

.why-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 1.8rem;
    color: #a855f7;
    margin-bottom: 4rem;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #a855f7;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

.rating-text {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0 0 2rem 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #a855f7;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    font-family: 'Inter', sans-serif;
}

.author-title {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    border-radius: 20px;
    color: white;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.testimonials-btn {
    display: inline-block;
    background: white;
    color: #4c1d95;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.testimonials-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    background: #f8fafc;
}

/* FAQ Section - Futuristic Design */
.faq {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        rgba(255, 255, 255, 0.01) 100px,
        rgba(255, 255, 255, 0.01) 102px
    );
    pointer-events: none;
    z-index: 1;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
    animation: backgroundShift 8s ease-in-out infinite;
}

.faq .container {
    position: relative;
    z-index: 3;
}

.faq .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 25% 35%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 80% 70%, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.09), transparent);
    background-size: 180px 180px, 280px 280px, 120px 120px, 220px 220px;
    animation: sparkle 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.faq .section-title {
    color: #f1f5f9;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.faq-item {
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: translateZ(0);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 20px;
}

.faq-item:hover {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    background: 
        linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.faq-item:hover::before {
    opacity: 0;
}

.faq-item:hover::after {
    opacity: 0;
}

.faq-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    position: relative;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.faq-item:hover h3::after {
    width: 60px;
}

.faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-item:hover p {
    opacity: 1;
    color: #f1f5f9;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(76, 29, 149, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact .section-title {
    color: white;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-wrapper {
    position: relative;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

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

.contact-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-details h3 {
    font-family: 'Inter', sans-serif;
    color: #a855f7;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    font-family: 'Inter', sans-serif;
    color: #e2e8f0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    font-family: 'Inter', sans-serif;
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    position: relative;
    z-index: 2;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #f1f5f9;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Textarea tem estilos específicos definidos separadamente */

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Placeholder do textarea tem estilos específicos definidos separadamente */

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 0 3px rgba(168, 85, 247, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Focus para textarea é definido separadamente abaixo com estilos avançados */

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e1b4b;
    color: white;
    padding: 10px;
}

/* Estilo original para textarea do contact form */
.contact-form .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 120px;
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 0 3px rgba(168, 85, 247, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.btn-text {
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d1b69 0%, #4c1d95 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(76, 29, 149, 0.7) 50%, rgba(45, 27, 105, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 10;
}

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

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #a855f7;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a855f7;
}

.footer-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-section .contact-item i {
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    padding: 0.3rem 0;
}

.social-links a:hover {
    color: #a855f7;
    transform: translateX(5px);
}

/* Garantir que todos os links do footer sejam clicáveis */
.footer-section a {
    position: relative;
    z-index: 15;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

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

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.3);
        filter: brightness(1.1);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(76, 29, 149, 0.95);
        flex-direction: column;
        padding: 2rem;
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 0 100px;
    }

    .hero-video,
    .footer-video {
        object-position: center center;
    }

    .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
        line-height: 1.15;
        padding-bottom: 0.1rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle::after {
        width: 80px;
        height: 3px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    .services-subtitle {
        font-size: 1.5rem;
    }

    .services-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .why-subtitle {
        font-size: 1.4rem;
        margin-bottom: 3rem;
    }

    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 40px;
    }

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

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-quote::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }

    .testimonial-rating {
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.8rem;
    }

    .testimonials-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .testimonials-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        perspective: none;
    }

    .why-choose .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        perspective: none;
    }

    .features-header {
        margin-bottom: 3rem;
    }

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

    .services-subtitle {
        font-size: 1.3rem;
    }

    .services-description {
        font-size: 1.1rem;
    }

    .service-card {
        border-radius: 16px;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 8px 20px rgba(0, 0, 0, 0.2);
        /* Removido rotateX e rotateY no mobile */
    }

    .service-card-inner {
        padding: 2rem 1.5rem;
    }

    .service-card-inner img {
        width: 150px;
        height: 120px;
        margin-bottom: 2rem;
    }

    .service-card:hover img {
        transform: scale(1.05);
        /* Simplificado para mobile */
    }

    .why-choose .feature-card,
    .faq-item {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .why-choose .feature-card:hover,
    .faq-item:hover {
        transform: translateY(-8px);
        /* Removido rotateX e rotateY no mobile */
    }

    .why-choose .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 2rem;
    }

    .why-choose .feature-card:hover .feature-icon {
        transform: scale(1.08);
        /* Simplificado para mobile */
    }

    .feature-icon-img {
        width: 35px;
        height: 35px;
    }

    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .service-cta:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 10px 20px rgba(0, 0, 0, 0.3),
            0 4px 8px rgba(0, 0, 0, 0.2);
        /* Efeito mais sutil no mobile */
    }

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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .services-subtitle {
        font-size: 1.5rem;
    }

    .about-header {
        margin-bottom: 3rem;
        max-width: 100%;
        padding: 0 1rem;
    }

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

    .social-links {
        justify-content: center;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 2rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .faq-item p {
        font-size: 0.95rem;
    }

    /* Fallback responsivo para feature-cards originais */
    .features-grid:not(.why-choose .features-grid) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card:not(.why-choose .feature-card) {
        padding: 2rem 1.5rem;
    }

    .feature-icon:not(.why-choose .feature-icon) {
        width: 70px;
        height: 70px;
        margin-bottom: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact .section-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
        border-radius: 20px;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .btn-text {
        font-size: 1rem;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

    /* Hero Form Responsive */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
        order: 1;
    }

    .hero-form-wrapper {
        order: 2;
    }

    .hero-text::before {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 150px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2.5rem;
    }

    .stat-highlight {
        align-items: center;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-form-wrapper {
        padding: 2rem;
        border-radius: 20px;
    }

    .hero-form-header h3 {
        font-size: 1.3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff 0%, #a855f7 40%, #c084fc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        letter-spacing: -0.02em;
        line-height: 1.2;
        animation: titleGlow 3s ease-in-out infinite;
    }

    .hero-form-header p {
        font-size: 0.95rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-form-fields {
        gap: 1.2rem;
    }

    .hero-form-fields input {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    /* Textareas responsivos */
    .hero-form-fields textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
        height: 90px;
        min-height: 90px;
        max-height: 150px;
        border-radius: 12px;
    }

    .hero-form-fields textarea:hover,
    .hero-form-fields textarea:focus {
        transform: translateY(-1px) scale(1.01);
    }

    /* Responsivo para contact form textarea */
    .contact-form .form-group textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
        height: 100px;
        min-height: 100px;
        max-height: 160px;
        border-radius: 16px;
    }

    .contact-form .form-group textarea:focus {
        transform: translateY(-1px);
    }

    .hero-form-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-rocket {
        font-size: 1.1rem;
    }
}

/* Modal de Sucesso */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
}

.success-modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: successPulse 2s ease-in-out infinite;
}

.modal-icon::before {
    content: '✓';
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(16, 185, 129, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(16, 185, 129, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

.modal-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

.modal-contact-info {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-close-btn {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(168, 85, 247, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(168, 85, 247, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #9333ea 0%, #6b21a8 100%);
}

.modal-close-btn:active {
    transform: translateY(0);
}

/* Responsivo para o modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        border-radius: 16px;
        width: 95%;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .modal-icon::before {
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-contact-info {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Ensure responsive behavior with explicit width/height */
img[width][height] {
    max-width: 100%;
    height: auto;
}

/* Specific responsive adjustments for images with explicit dimensions */
.logo-img[width][height] {
    max-width: 200px;
    height: auto;
}

.about-img[width][height] {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.service-card-inner img[width][height] {
    width: 200px;
    height: 150px;
    max-width: 100%;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .logo-img[width][height] {
        max-width: 150px;
        height: auto;
    }
    
    .service-card-inner img[width][height] {
        width: 150px;
        height: 120px;
        max-width: 100%;
    }
    
    .about-img[width][height] {
        max-width: 100%;
        height: auto;
    }
} 

/* Estilos para o seletor de DDI (intl-tel-input) */
.iti {
    width: 100%;
}

.iti.iti--container {
    width: 100%;
}

.iti__country-list {
    background-color: #1e1b4b; /* Fundo escuro */
    border: 1px solid #4c1d95;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #e2e8f0; /* Texto claro */
}

.iti__country {
    padding: 10px 15px;
}

.iti__country:hover, .iti__country.iti__highlight {
    background-color: #312e81; /* Cor de fundo ao passar o mouse */
}

.iti__dial-code {
    color: #a855f7; /* Cor de destaque para o código do país */
}


.iti__search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #4c1d95;
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 15px;
    width: calc(100% - 20px);
}

.iti__dropdown-content input.iti__search-input {
    background-color: rgba(30, 27, 75, 0.8) !important;
}

.iti__search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}