/* Agro-SaaS Modern Website Styles */
:root {
    --primary-green: #28a745;
    --dark-green: #1e7e34;
    --light-bg: #f8fafb;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

/* Navbar */
#navbar {
    background: linear-gradient(to bottom, rgba(40, 167, 69, 0.95), rgba(40, 167, 69, 0.9)) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

#navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: 0.3px;
    color: white !important;
}

.navbar-brand-block {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    gap: 0.9rem;
}

.navbar-tagline {
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 420px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: 60px;
}

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

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

.hero-text h1 {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-text .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-buttons {
    margin-top: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
}

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


/* Modern form enhancements for representacao */
.form-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,251,249,0.98));
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(11, 84, 14, 0.06);
    border: 1px solid rgba(34,139,34,0.06);
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.form-section-title .icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(40,167,69,0.12), rgba(30,126,52,0.08));
    color: var(--primary-green);
    font-size: 18px;
}
.muted-note { color: #6c757d; font-size: .9rem; }
.btn-gradient {
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
}
.input-help { font-size: 0.85rem; color: #6c757d; }

/* Select search wrapper */
.select-search { position: relative; }
.select-search .search-input { margin-bottom: 6px; }

/* Multi-select tag hint */
.multi-hint { font-size: 0.82rem; color: #5a6637; margin-top: 6px; }

/* File input box */
.file-box { display:flex; align-items:center; gap:10px; padding:10px; border-radius:8px; background:#fbfdfb; border:1px dashed rgba(40,167,69,0.08); }
.file-box .file-info { font-size:0.9rem; color:#4b5a3b; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

@media (max-width: 991px) {
    .hero-card { padding: 16px; }
}
/* Value Section */
.value-section {
    background: var(--light-bg);
}

.value-brand-column {
    padding-top: 18px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #1e7e34, #28a745);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.highlight-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.highlight-word {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin: 20px 0 30px 0;
    letter-spacing: 3px;
    animation: pulse-scale 2s ease-in-out infinite;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.highlight-subtext {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-style: italic;
}

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

.value-section {
    background: var(--light-bg);
}

.value-list {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.value-item h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Features Section */
.features-section {
    background: white;
}

.feature-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.animate-card {
    animation: slideInUp 0.6s ease-out;
}

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

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 80px 0;
}

.ai-benefits {
    margin-top: 30px;
}

.benefit-item {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-list li i {
    color: var(--primary-green);
    margin-right: 10px;
}

.pricing-list li.disabled {
    opacity: 0.5;
}

/* Coverage Section */
.coverage-section {
    background: linear-gradient(135deg, #f8fafb 0%, #eef5f0 100%);
    padding: 80px 0;
}

.coverage-subsection {
    margin-bottom: 60px;
}

.coverage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-green);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
}

.coverage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.coverage-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.coverage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.coverage-card.in-development {
    opacity: 0.85;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
}

.coverage-card.in-development:hover {
    opacity: 0.95;
}

.coverage-card .badge {
    font-size: 0.75rem;
    padding: 3px 8px;
    font-weight: 600;
}

/* Trial Section */
.trial-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 80px 0;
}

.trial-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.trial-card h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.cta-form input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

.cta-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #bbb;
}

.footer h5 {
    color: white;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-green);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #bbb;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-2px);
}

.startup-badge-img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    object-fit: contain;
}

/* Early Access Section */
.trial-section {
    background: linear-gradient(135deg, #f8fafb 0%, #eef5f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.early-access-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 2px solid var(--primary-green);
    animation: slideInUp 0.8s ease-out;
}

.early-access-badge {
    text-align: center;
    margin-bottom: 30px;
}

.early-access-badge .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    font-weight: 600;
}

.benefit-box {
    background: #f0f8f4;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.benefit-box h5 {
    color: var(--primary-green);
}

.benefit-box ul {
    list-style: none;
    padding: 0;
}

.benefit-box li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.benefit-box li:last-child {
    border-bottom: none;
}

.eligibility-box {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(30, 126, 52, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed var(--primary-green);
}

.eligibility-box h5 {
    color: var(--primary-green);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.eligibility-box .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    margin-bottom: 8px;
}

.support-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
    padding: 30px;
    border-radius: 15px;
}

.support-box h5 {
    color: var(--primary-green);
}

.support-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.support-box ul {
    list-style: none;
    padding: 0;
}

.support-box li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-form-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.cta-form-section h4 {
    color: white;
}

.cta-form {
    margin-top: 25px;
}

.cta-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cta-form .form-control:focus {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    color: var(--text-dark);
}

.cta-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.availability-note {
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(30, 126, 52, 0.05) 100%);
    border: 2px dashed var(--primary-green);
    border-radius: 10px;
    text-align: center;
}

.availability-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.availability-note strong {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    #navbar .container {
        align-items: flex-start;
    }

    #navbar .navbar-collapse {
        width: 100%;
        margin-top: 0.65rem;
        padding: 0.85rem 1rem 0.9rem;
        border-radius: 14px;
        background: rgba(20, 95, 44, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    #navbar .navbar-nav {
        width: 100%;
        gap: 0.2rem;
    }

    #navbar .navbar-nav .nav-link {
        font-size: 1.03rem;
        line-height: 1.25;
        padding: 0.5rem 0.2rem;
    }

    .navbar-brand-block {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.15rem;
        max-width: calc(100% - 74px);
        padding: 0.2rem 0;
        min-width: 0;
    }

    .navbar-brand {
        font-size: 1.15rem;
        white-space: nowrap;
    }

    .navbar-tagline {
        font-size: 0.72rem;
        line-height: 1.15;
        max-width: 100%;
        margin-left: 0;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        display: block;
    }

    .navbar-toggler {
        margin-top: 0.2rem;
    }

    #navbar .nav-cta-item .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0.45rem 0 0 !important;
        padding: 0.55rem 0.8rem !important;
    }

    #navbar .nav-login-item {
        margin-left: 0 !important;
    }

    #navbar .nav-login-item .nav-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 0.45rem;
        border-color: rgba(255, 255, 255, 0.5) !important;
        padding: 0.55rem 0.8rem !important;
    }

    #navbar .nav-social-item {
        margin: 0.55rem 0 0 !important;
        width: 100%;
        justify-content: center !important;
        gap: 0.9rem !important;
        padding-top: 0.55rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    #navbar .nav-social-item a {
        opacity: 0.95 !important;
    }

    .hero-section {
        min-height: 70vh;
        margin-top: 0;
    }

    .hero-slider .slide {
        /* On mobile, fixed backgrounds crop incorrectly on many browsers */
        background-attachment: scroll !important;
        background-position: center 68% !important;
        background-size: 140% auto !important;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .startup-badge-img {
        max-width: 180px;
    }

    .hero-content,
    .hero-text,
    .hero-text h1,
    .hero-text .lead,
    .cta-buttons {
        text-align: center;
    }

    .hero-text .lead {
        font-size: 1.1rem;
    }

    .highlight-section {
        padding: 56px 0;
    }

    .highlight-content {
        padding: 0 14px;
    }

    .highlight-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .highlight-word {
        font-size: 2.15rem;
        line-height: 1.15;
        letter-spacing: 1px;
        margin: 14px 0 18px 0;
        animation: none;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .highlight-subtext {
        font-size: 1.05rem;
    }

    .value-brand-column {
        padding-top: 52px;
        margin-bottom: 1.5rem !important;
    }

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

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

    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }

    .trial-card {
        padding: 30px;
    }

}

@media (max-width: 420px) {
    .navbar-brand-block {
        max-width: calc(100% - 74px);
    }

    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-slider .slide {
        background-position: center 72% !important;
        background-size: 140% auto !important;
    }

    .startup-badge-img {
        max-width: 150px;
    }

    .navbar-brand {
        font-size: 1.02rem;
    }

    .navbar-tagline {
        display: block;
        font-size: 0.65rem;
        line-height: 1.15;
        white-space: normal;
    }

    .highlight-word {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .trial-section {
        min-height: auto;
        display: block;
        padding: 56px 0;
    }

    .early-access-card {
        padding: 22px;
        border-radius: 14px;
        overflow: hidden;
    }

    .eligibility-box,
    .support-box,
    .cta-form-section {
        padding: 18px;
    }

    .cta-form-section {
        border-radius: 12px;
    }

    .cta-form .form-control.form-control-lg {
        font-size: 1rem;
        padding: 0.7rem 0.85rem;
    }

    .cta-form .row {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }

    .support-heading {
        width: 100%;
        justify-content: flex-start;
    }

    .support-heading i {
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

    .support-heading span {
        line-height: 1.25;
    }
}

@media (max-width: 420px) {
    .early-access-card {
        padding: 16px;
    }

    .cta-form-section {
        padding: 14px;
    }

    .cta-form-section h4 {
        font-size: 1.2rem;
    }

    .cta-form .btn.btn-lg {
        font-size: 1rem;
        padding: 0.7rem 0.9rem;
    }
}

/* Value Image Centering */
