/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas na logo AGROV */
    --primary-color: #1B4D3E;        /* Verde escuro da logo */
    --secondary-color: #2D5A4A;      /* Verde médio complementar */
    --accent-color: #4A7C59;         /* Verde mais claro para destaques */
    --dark-green: #0F2F26;           /* Verde muito escuro para contrastes */
    --light-green: #7FB069;          /* Verde claro para elementos secundários */
    --logo-green: #1B4D3E;           /* Verde exato da logo */
    --white: #FFFFFF;
    --off-white: #FAFAFA;            /* Branco ligeiramente acinzentado */
    --light-bg: #F5F7F6;             /* Fundo claro com toque verde */
    --text-dark: #1B4D3E;            /* Texto escuro usando cor da logo */
    --text-medium: #2D5A4A;          /* Texto médio */
    --text-light: #6B7B73;           /* Texto claro */
    --border-color: #D4E0D9;         /* Bordas com toque verde */
    --shadow: 0 4px 20px rgba(27, 77, 62, 0.1);
    --shadow-hover: 0 8px 30px rgba(27, 77, 62, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-light: linear-gradient(135deg, var(--accent-color) 0%, var(--light-green) 100%);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 220px;
    filter:hue-rotate(50deg) saturate(1.1) brightness(1.7) contrast(1.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-demo {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius) !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231B4D3E" opacity="0.08"/><circle cx="75" cy="75" r="1" fill="%232D5A4A" opacity="0.08"/><circle cx="50" cy="10" r="1" fill="%234A7C59" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.highlight {
    color: var(--text-dark);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--light-green);
    opacity: 0.4;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-testnet {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-testnet:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #4a4d5c, #1a3f36);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Dashboard */
.hero-image {
    position: relative;
}

.hero-dashboard {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-dashboard:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.dashboard-header {
    background: var(--gradient);
    padding: 1rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.dashboard-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.progress-bar {
    background: #E0E0E0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress {
    background: var(--gradient);
    height: 100%;
    border-radius: 4px;
    transition: var(--transition);
}

.dashboard-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--white);
}

.solution-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.solution-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.solution-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-card .btn-solution {
    margin-top: auto;
    align-self: flex-start;
}

.finance-card {
    border: 2px solid var(--primary-color);
    position: relative;
}

.finance-benefits {
    margin: 2rem 0;
    flex-grow: 1;
}

.finance-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.finance-benefits .benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.finance-benefits .benefit-icon i {
    font-size: 1rem;
    color: var(--white);
}

.finance-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.finance-benefits p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.finance-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.finance-btn:hover {
    background: var(--accent-color) !important;
    transform: translateY(-2px);
}

.erp-benefits {
    margin: 2rem 0;
    flex-grow: 1;
}

.erp-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.erp-benefits .benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.erp-benefits .benefit-icon i {
    font-size: 1rem;
    color: var(--white);
}

.erp-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.erp-benefits p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.marketplace-benefits {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-solution {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-solution:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.marketplace-btn {
    background: linear-gradient(135deg, #E67E22, #D35400) !important;
}

.marketplace-btn:hover {
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3) !important;
}

/* Integrations Section */
.integrations {
    padding: 80px 0;
    background: var(--light-bg);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.integration-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.integration-icon.embrapa {
    background: var(--primary-color);
}

.integration-icon.satellite {
    background: var(--primary-color);
}

.integration-icon.banking {
    background: var(--primary-color);
}

.integration-icon.finance {
    background: var(--primary-color);
}

.integration-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.integration-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.integration-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon {
    background: #e67e22;
    color: var(--white) !important;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.integration-features {
    list-style: none;
}

.integration-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.integration-features li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.integration-features li:last-child {
    border-bottom: none;
}

.btn-integration {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-integration:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: var(--white);
}

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.audience-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.audience-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.audience-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: -1;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary.large {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary.large:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
}

.btn-secondary.large {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary.large:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #A8B5A8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 170px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #A8B5A8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #A8B5A8;
}

.contact-info i {
    color: var(--light-green);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #A8B5A8;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #A8B5A8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin-top: 2rem;
    }
    
    .erp-dashboard-modern {
        transform: none;
        height: 300px;
        max-width: 100%;
    }
    
    .floating-modules {
        display: none;
    }
    
    .dashboard-container {
        max-width: 100%;
        height: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-cta button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        margin: 2rem 0;
    }
    
    .hero-stats .stat {
        margin: 0.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .audience-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solution-card,
    .integration-card {
        padding: 2rem 1.5rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .solutions,
    .integrations,
    .target-audience,
    .testimonials,
    .final-cta {
        padding: 60px 0;
    }
}


/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-dashboard {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}


/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de foco para acessibilidade */
button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Carregamento suave de imagens */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Melhorias de performance */
.hero-dashboard,
.solution-card,
.integration-card,
.testimonial-card {
    will-change: transform;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-button span {
    white-space: nowrap;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-button i {
        font-size: 20px;
    }
    
    .whatsapp-button span {
        display: none;
    }
}

/* Estados de loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ERP Page Styles */
.erp-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 50%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.erp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b4d3e' fill-opacity='0.02'%3E%3Cpath d='M30 30c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.erp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.available-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.erp-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.erp-dashboard-modern {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(27, 77, 62, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.dashboard-header {
    background: var(--primary-color);
    padding: 1rem;
}

.header-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.dashboard-content {
    padding: 2rem;
}

.metric-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(27, 77, 62, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.metric-info {
    flex: 1;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
}

.metric-trend.up {
    background: rgba(74, 124, 89, 0.1);
    color: var(--accent-color);
}

.progress-section {
    background: var(--off-white);
    border-radius: 12px;
    padding: 1.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.progress-percentage {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.progress-bar {
    height: 8px;
    background: rgba(27, 77, 62, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--gradient);
    border-radius: 10px;
    position: relative;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 75%; }
}

.floating-modules {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.module-card {
    position: absolute;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(27, 77, 62, 0.1);
    animation: moduleFloat 6s ease-in-out infinite;
}

.module-card:nth-child(1) {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.module-card:nth-child(2) {
    bottom: 30%;
    right: -15%;
    animation-delay: 2s;
}

.module-card:nth-child(3) {
    top: 60%;
    left: -10%;
    animation-delay: 4s;
}

@keyframes moduleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.erp-features {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(27, 77, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 77, 62, 0.15);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.2;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-list li:hover {
    background: var(--off-white);
    padding-left: 0.5rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.erp-integrations {
    padding: 80px 0;
    background: var(--white);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 77, 62, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 77, 62, 0.15);
    border-color: var(--accent-color);
}

.integration-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: var(--transition);
}

.embrapa-icon .icon-container {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.satellite-icon .icon-container {
    background: linear-gradient(135deg, #1976D2, #42A5F5);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

.banking-icon .icon-container {
    background: linear-gradient(135deg, #F57C00, #FFB74D);
    box-shadow: 0 10px 30px rgba(245, 124, 0, 0.3);
}

.marketplace-icon .icon-container {
    background: linear-gradient(135deg, #7B1FA2, #BA68C8);
    box-shadow: 0 10px 30px rgba(123, 31, 162, 0.3);
}

.icon-container i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 2;
}

.icon-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
}

.integration-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.integration-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.integration-benefits {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.benefit:hover {
    background: var(--off-white);
    padding-left: 0.75rem;
}

.benefit i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
}

.benefit span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.embrapa-details {
    padding: 80px 0;
    background: var(--light-bg);
}

.embrapa-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.embrapa-feature {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 77, 62, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.embrapa-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.embrapa-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
    border-color: #4CAF50;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-header .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.feature-header .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.embrapa-feature p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
}

.erp-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

/* Finance Page Styles */
.finance-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--text-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.finance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.finance-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.finance-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finance-hero-text .hero-subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.finance-hero-text .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label-index {
    font-size: 0.9rem;
    color: #1b4d3e;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.defi-visualization {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-container {
    position: relative;
    z-index: 2;
}

.vault-icon {
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.vault-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vault-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.flow-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.flow-line {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    top: 50%;
    transform: translateY(-50%);
}

.flow-line.left {
    left: -150px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.flow-line.right {
    right: -150px;
}

.flow-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--accent-color);
}

.flow-line.left .flow-dot {
    left: 0;
}

.flow-line.right .flow-dot {
    right: 0;
}

.flow-label {
    position: absolute;
    top: -30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.flow-line.left .flow-label {
    left: 0;
}

.flow-line.right .flow-label {
    right: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.executive-summary {
    padding: 80px 0;
    background: var(--white);
}

.summary-content {
    max-width: 800px;
    margin: 0 auto;
}

.summary-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.value-proposition {
    padding: 80px 0;
    background: var(--light-bg);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-benefits {
    list-style: none;
    text-align: left;
}

.value-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.value-benefits i {
    color: var(--primary-color);
}

.operation-model {
    padding: 80px 0;
    background: var(--white);
}

.tokens-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.token-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
}

.token-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.token-icon i {
    font-size: 2rem;
    color: var(--white);
}

.token-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.token-type {
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 1rem;
}

.operation-flow {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.operation-flow h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.flow-diagram {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.flow-step {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    transition: var(--transition);
    position: relative;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 77, 62, 0.15);
    border-color: var(--accent-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    animation: pulse 2s infinite;
}

.flow-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 3rem 0;
    position: relative;
}

.flow-separator::after {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.pools-structure {
    padding: 80px 0;
    background: var(--light-bg);
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pool-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.pool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pool-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pool-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.pool-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pool-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: var(--light-bg);
    color: var(--text-medium);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.yield-section {
    padding: 80px 0;
    background: var(--white);
}

.yield-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.yield-card {
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yield-card.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.yield-card.secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--light-green));
    color: var(--white);
}

.yield-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.yield-icon i {
    font-size: 2rem;
    color: var(--white);
}

.yield-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.yield-rate {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #84ff24;
}

.yield-card p {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.yield-benefits {
    list-style: none;
    text-align: left;
}

.yield-benefits li {
    padding: 0.5rem 0;
    opacity: 0.9;
}

.finance-cta {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.finance-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.finance-cta .cta-content {
    position: relative;
    z-index: 2;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .erp-hero-content,
    .finance-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .erp-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .erp-dashboard-modern {
        height: 350px;
    }
    
    .dashboard-container {
        max-width: 320px;
    }
    
    .dashboard-content {
        padding: 1.5rem;
    }
    
    .header-tabs {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .metric-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
    }
    
    .metric-icon i {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .progress-section {
        padding: 1rem;
    }
    
    .module-card {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-card {
        padding: 2rem;
    }
    
    .icon-container {
        width: 80px;
        height: 80px;
    }
    
    .icon-container i {
        font-size: 2rem;
    }
    
    .icon-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .embrapa-features {
        grid-template-columns: 1fr;
    }
    
    .embrapa-feature {
        padding: 2rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-header .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-header .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-header h3 {
        font-size: 1.1rem;
    }
    
    .finance-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .defi-visualization {
        height: 300px;
    }
    
    .vault-icon {
        width: 80px;
        height: 80px;
    }
    
    .vault-icon i {
        font-size: 1.8rem;
    }
    
    .flow-arrows {
        width: 200px;
        height: 200px;
    }
    
    .flow-line {
        width: 100px;
    }
    
    .flow-line.left {
        left: -100px;
    }
    
    .flow-line.right {
        right: -100px;
    }
    
    .floating-card {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid,
    .tokens-section,
    .yield-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .flow-step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .pools-grid {
        grid-template-columns: 1fr;
    }
    
    .operation-flow {
        padding: 2rem;
    }
    
    .operation-flow h3 {
        font-size: 1.8rem;
    }
}
