/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background-color: #141414;
    overflow-x: hidden;
}


/* Color Variables */
:root {
    --primary: #22c55e;
    --primary-light: #4ade80;
    --primary-dark: #16a34a;
    --background: #141414;
    --card-bg: #1f1f1f;
    --muted: #666666;
    --border: #333333;
    --white: #f1f5f9;
    --black: #0f0f0f;
}

.contact-link a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-link a:hover {
  text-decoration: underline;
  color: #15803d; /* verde um pouco mais escuro */
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.12);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary {
    color: var(--primary);
}

.text-primary-bold {
    color: var(--primary);
    font-weight: 600;
}

.text-white {
    color: var(--white);
}

.desktop-only {
    display: block;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px var(--primary); }
    to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
}

.arrow {
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--background), #2d2d2d);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 128px);
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 32px);
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-item span {
    font-size: 14px;
    color: var(--muted);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 80px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    filter: blur(40px);
}

.floating-2 {
    bottom: 80px;
    right: 40px;
    width: 128px;
    height: 128px;
    background: rgba(34, 197, 94, 0.05);
    filter: blur(80px);
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(32px, 5vw, 80px);
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: clamp(16px, 2vw, 24px);
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--background), #2d2d2d);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--background);
}

.featured-product {
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, var(--card-bg), #2d2d2d);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.product-content {
    padding: 48px;
}

.product-title {
    font-size: clamp(24px, 4vw, 64px);
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
}

.product-description {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.check {
    color: var(--primary);
    font-size: 20px;
}

.feature span:last-child {
    color: var(--white);
}

.product-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-visual {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
    padding: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-icon {
    font-size: 64px;
    color: var(--primary);
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-visual h4 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: bold;
}

.product-visual p {
    color: var(--muted);
}

.cta-section {
    text-align: center;
    margin-top: 48px;
}

.cta-section p {
    color: var(--muted);
    margin-bottom: 24px;
    font-size: 16px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #2d2d2d, var(--background));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text h3 {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-check {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
}

.about-feature span {
    color: var(--white);
    font-size: 16px;
}

.values-section {
    margin-top: 64px;
}

.values-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-card {
    background: linear-gradient(135deg, var(--card-bg), #2d2d2d);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.value-icon {
    font-size: 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--background), #2d2d2d);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}


.contact-form {
    background: linear-gradient(135deg, var(--card-bg), #2d2d2d);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-methods {
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-method h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--muted);
}

.cta-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.cta-box h4 {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 16px;
}


.value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.25);
}

.value-card h4 {
  margin-bottom: 8px;
  color: #fff;
}


/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-company h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-company p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-detail .icon {
    font-size: 16px;
    color: var(--primary);
}

.contact-detail span:last-child {
    color: var(--muted);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-separator {
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content,
    .product-visual,
    .contact-form {
        padding: 24px;
    }
    
    .about-text h3,
    .values-title {
        font-size: 32px;
    }
}