:root {
    --primary-gradient: linear-gradient(135deg, #EC407A 0%, #D81B60 100%);
    --secondary-gradient: linear-gradient(135deg, #42A5F5 0%, #1565C0 100%);
    --accent-color: #EC407A;
    --dark-blue: #1565C0;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

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

.btn-primary-custom {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 64, 122, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid #EC407A;
    color: #EC407A;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(236, 64, 122, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(21, 101, 192, 0.1), transparent 40%);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

/* Features */
.features-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(236, 64, 122, 0.1);
    color: var(--accent-color);
}

.feature-card.blue .feature-icon {
    background: rgba(21, 101, 192, 0.1);
    color: var(--dark-blue);
}

/* AI Section */
.ai-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
}

.gemini-badge {
    background: linear-gradient(90deg, #4285F4, #9B72CB, #D96570);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Providers Carousel (Infinite Scroll) */
.providers-section {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.logo-carousel {
    width: 100%;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 100%;
    top: 0;
    z-index: 2;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.logo-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 1rem 0;
}

.logo-track img {
    height: 113px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Workflow Steps */
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

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

footer a:hover {
    color: white;
}

.footer-brand {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    color: white;
}
/* Adições para a seção de Planos */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(236, 64, 122, 0.2);
}

.pricing-card.featured {
    background: #fff;
    border: 2px solid #EC407A;
    box-shadow: 0 10px 30px rgba(236, 64, 122, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(236, 64, 122, 0.1);
    color: #EC407A;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Modal de Contato */
.contact-modal-icon {
    font-size: 3rem;
    color: #1565C0;
    margin-bottom: 1rem;
}

.contact-email-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px dashed #ced4da;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2c3e50;
    transition: all 0.2s;
}

.contact-email-box:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #1565C0;
}