:root {
    --primary: #6fab36;
    /* Novo Verde da paleta */
    --primary-dark: #5a8c2a;
    --secondary: #0c77b5;
    /* Novo Azul da paleta */
    --secondary-dark: #095e8f;
    --accent: #fafdfb;
    /* Off-white da paleta */
    --bg-dark: #0c77b5;
    /* Fundo solicitado */
    --bg-darker: #194248;
    /* Teal escuro da paleta */
    --text-light: #fafdfb;
    --text-muted: rgba(250, 253, 251, 0.7);
    --glass-bg: rgba(25, 66, 72, 0.4);
    /* Baseado no teal escuro */
    --glass-border: rgba(250, 253, 251, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(111, 171, 54, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(12, 119, 181, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a1419 0%, #194248 100%);
    pointer-events: none;
    z-index: -1;
}

/* Header & Nav - Design Flutuante Premium */
.header {
    padding: 12px 0;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    background: rgba(10, 15, 20, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 253, 251, 0.1);
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.header:hover {
    border-color: var(--secondary); /* Brilho sutil no tom da marca */
    background: rgba(10, 15, 20, 0.85);
}


/*.logo img {
    height: 55px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}
.logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(250, 253, 251, 0.4));
}



.logo {
    display: flex;
    align-items: center;
    text-decoration: none;

}

*/
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    /* Branco para contraste com verde oliva/limão */
    box-shadow: 0 4px 15px rgba(111, 171, 54, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(162, 230, 53, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: rgba(162, 230, 53, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sections Global */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    animation: float 6s infinite ease-in-out;
}

.ai-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: pulse 8s infinite ease-in-out;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.35;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.05);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.pillar-card p {
    color: var(--text-muted);
}

.tech-new {
    padding: 120px 0;

    display: flex;
    justify-content: center;
}

.tech-new .container {
    display: flex;
    justify-content: center;
}

.tech-new-content {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.tech-new-content h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.tech-new-content h2 span {
    color: var(--secondary);
}

.tech-new-list {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 24px;

    align-items: center;
}

.tech-new-item {
    width: 100%;
    max-width: 760px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 28px 30px;
    border-radius: 24px;

    text-align: left;

    backdrop-filter: blur(12px);

    transition: 0.3s ease;
}

.tech-new-item:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.tech-new-item span {
    color: var(--secondary);
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 2px;
}

.tech-new-item p {
    margin: 0;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-size: 1rem;
}

.tech-new-item strong {
    color: #fff;
}

@media (max-width: 768px) {

    .tech-new-content h2 {
        font-size: 2.2rem;
    }

    .tech-new-item {
        padding: 22px;
    }

}

/* Strategy Banner */
.strategy-banner {
    background: linear-gradient(135deg, rgba(142, 198, 65, 0.05) 0%, rgba(0, 124, 180, 0.05) 100%);
    border: 1px solid var(--glass-border);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
}

.strategy-banner h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

/* Pricing Adapted Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.08);
    transform: scale(1.05);
}

.card-tier {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.05;
}

.featured-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

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

.pricing-card .features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-card .features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.pricing-card .features li::before {
    content: '✓';
    color: var(--secondary);
    margin-right: 12px;
}

.pricing-card .features li.limited {
    color: #f87171;
}

.pricing-card .features li.limited::before {
    content: '!';
    color: #f87171;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
}

.faq-item h4 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    padding-bottom: 150px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(142, 198, 65, 0.15) 0%, rgba(0, 124, 180, 0.15) 100%);
    border: 1px solid var(--primary);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding-top: 80px;
    padding-bottom: 40px;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 300px;
}


.footer-links h4,
.footer-contact h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media Queries */
@media (max-width: 968px) {

    .hero-content,
    .tech-layout,
    .faq-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .nav-links {
        display: none;
        /* simple for now */
    }

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

    .strategy-banner,
    .cta-card {
        padding: 40px;
    }

    .cta-card h2 {
        font-size: 2rem;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(15px);
    overflow-y: auto;
    padding-top: 50px;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin: 5% auto;
    padding: 60px;
    width: 80%;
    max-width: 800px;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

.manifesto-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.manifesto-text h2 span {
    color: var(--secondary);
}

.manifesto-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.value-item strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.value-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}


.manifesto-text strong {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 40px 20px;
    }

    .manifesto-text h2 {
        font-size: 2rem;
    }
}

/* Contact Form Styles */
.contact-form {
    margin-top: 30px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(25, 66, 72, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(162, 230, 53, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.manifesto-text h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 1.5rem;
}

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

.country-code {
    font-weight: 600;
    color: #888;
    margin-left: 6px;
    font-size: 0.9em;
}

#telefone {
    flex: 1;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.phone-input .prefix {
    padding: 10px 12px;
    background: #f2f2f2;
    border-right: 1px solid #ccc;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.phone-input input {
    border: none;
    outline: none;
    padding: 10px 12px;
    flex: 1;
    min-width: 0;
}

