/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #4a5568;
    font-size: 1.8rem;
    font-weight: bold;
    text-indent: -999em;
    background-image: url('/images/logo.png');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 178px;
  height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-item{
	border-bottom: 3px solid transparent;
}

.nav-item:hover{
	border-bottom: 3px solid #059669;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bot
}

.nav-link:hover {
    color: #2d3748;
}

.contratar-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.planos-btn {
    background-color: #ebebeb;
    color: #666 !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-btn {
    background-color: #4a5568;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #2d3748;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #4a5568;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
}

.cta-button:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 15rem;
    color: #4a5568;
    opacity: 0.7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #f7fafc;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #4a5568;
    min-width: 30px;
}

.benefit-item span {
    color: #2d3748;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #4a5568;
    color: white;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #edf2f7;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-icon {
        font-size: 8rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .feature-card,
    .benefit-item {
        padding: 1.5rem;
    }
}


/* Estilos específicos para páginas internas */
.page-header {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-section {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a5568;
}

.content-section.full-width {
    grid-column: 1 / -1;
}

.content-section h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.content-section p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* How it works styles */
.how-it-works-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-card {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #4a5568;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background-color: #4a5568;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-card h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    margin-top: 1rem;
}

.step-card p, .step-card ul {
    color: #4a5568;
    line-height: 1.7;
}

.step-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.step-card li {
    margin-bottom: 0.5rem;
}

/* Compatibility section */
.compatibility-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.brand-card h4 {
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.brand-card p {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Pricing styles */
.pricing-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #4a5568;
    background-color: #4a5568;
    color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured p {
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}



.pricing-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    color: #4a5568;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 25px;
    
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4a5568;
    position: absolute;
	top: 15px;
	left: 0px;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .pricing-features i {
    color: white;
}



/* FAQ styles */
.faq-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 0.5rem;
}

.faq-item {
    background-color: #f7fafc;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    background-color: #4a5568;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #2d3748;
}

.faq-answer {
    padding: 0rem;
    color: #4a5568;
    line-height: 1.7;
    display: block;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Contact styles */

/* Mensagem de retorno do formulário (AJAX) */
#msg-retorno { margin-top: 15px; font-weight: 600; }
#msg-retorno.sucesso { color: #108a00; }
#msg-retorno.erro { color: #c00000; }

/* Cartão de resumo na mensagem de sucesso */
.success-summary {
    background: #f0fff4;
    border: 1px solid #16a34a33;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.success-summary .s-name { font-weight: 800; font-size: 1rem; display:block; }
.success-summary .s-price { font-weight: 700; font-size: .95rem; display:block; }
.success-summary .s-pay { font-weight: 600; font-size: .9rem; color:#334155; display:block; }

/* Grupo de planos com radios bonitos */
.plan-group { display: grid; gap: 12px; margin-bottom: 18px; }
.plan-options { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .plan-options { grid-template-columns: repeat(3, 1fr); } }
.plan-card {
    display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px;
    border: 2px solid #e6e6e6; border-radius: 12px; padding: 16px;
    cursor: pointer; transition: box-shadow .2s, border-color .2s, background-color .2s;
    background: #fff;
}
.plan-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.plan-card input[type="radio"] { appearance: none; width: 0; height: 0; position: absolute; opacity: 0; }
.plan-icon {
    width: 32px; height: 32px; border-radius: 999px; display: grid; place-items: center;
    border: 2px solid #16a34a; color: #fff; background: #16a34a;
    flex: 0 0 32px;
}
.plan-card .fa-check { font-size: 18px; }
.plan-content { display: grid; gap: 4px; }
.plan-name   { font-weight: 800; font-size: 1.15rem; line-height: 1.2; }
.plan-price  { font-weight: 700; font-size: 1rem; color: #0f172a; }
.plan-pay    { font-weight: 600; font-size: .93rem; color: #334155; }
.plan-card.selected { border-color: #16a34a; background: #f0fff4; }

/* Badge do plano ao lado do botão */
.plan-badge {
    display: inline-flex;
	  align-items: center;
	  gap: 6px;
	  background: #f0fff4;
	  border: 1px solid #16a34a33;
	  color: #065f46;
	  padding: 14px;
	  border-radius: 999px;
	  font-weight: 700;
	  font-size: 1rem;
	  margin-left: 10px;
}

.inline-grid { display: grid; gap: 12px; }
@media (min-width: 720px) { .inline-grid { grid-template-columns: 1fr 1fr; } }
.inline-grid-3 { display: grid; gap: 12px; }
@media (min-width: 720px) { .inline-grid-3 { grid-template-columns: 2fr 1fr 2fr; } }

.form-group { margin-bottom: 14px; }
label { display:block; margin-bottom:6px; font-weight:600; }
input, select, textarea {
    width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 8px; font-size: 15px;
}
textarea { resize: vertical; min-height: 120px; }

/* Container do botão + badge em linha */
.actions-row { display:flex; align-items:center; flex-wrap:wrap; gap:8px; }


.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #4a5568;
}

.contact-method h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-method p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a5568;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #4a5568;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2d3748;
}

/* Login styles */
.login-content {
    padding: 120px 0;
    background-color: #f7fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.login-header p {
    color: #4a5568;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.forgot-password {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #2d3748;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    color: #4a5568;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.login-divider span {
    background-color: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.create-account-btn {
    width: 100%;
    background-color: transparent;
    color: #4a5568;
    border: 2px solid #4a5568;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.create-account-btn:hover {
    background-color: #4a5568;
    color: white;
}

/* Responsive adjustments for internal pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .step-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compatibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section,
    .value-card,
    .step-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .login-container {
        margin: 0 20px;
        padding: 2rem;
    }
}


/* Novos estilos para Home mais ilustrativa */
.hero-new {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-new {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.cta-button-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.cta-button-secondary {
    background: transparent;
    color: #4a5568;
    padding: 1rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
}

.hero-image-new {
    animation: slideInRight 0.8s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Quick Demo Section */
.quick-demo {
    padding: 5rem 0;
    background: white;
}

.demo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.demo-step {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #f7fafc;
    transition: all 0.3s ease;
    position: relative;
}

.demo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-image {
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
}

.step-number-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.demo-step h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-step p {
    color: #4a5568;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Features Section New */
.features-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-new {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.feature-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-new i {
    font-size: 1.5rem;
    color: white;
}

.feature-card-new h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card-new p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #059669;
    gap: 1rem;
}

/* Benefits Section New */
.benefits-new {
    padding: 5rem 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item-new {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #4a5568;
    line-height: 1.6;
}

.benefits-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-link {
    color: #10b981;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    font-weight: 600;
}

/* Testimonial Section New */
.testimonial-new {
    padding: 5rem 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.testimonial-content-new {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-text cite {
    font-style: normal;
    opacity: 0.9;
}

.testimonial-stats {
    margin-top: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stars {
    color: #fbbf24;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.8;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Como Funciona - Novos estilos */
.how-it-works-hero {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Video Demo Section */
.video-demo {
    padding: 4rem 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #10b981;
    transform: scale(1.1);
}

.video-description {
    text-align: center;
    margin-top: 2rem;
    color: #4a5568;
    font-size: 1.1rem;
}

/* Steps Section New */
.steps-section-new {
    padding: 1rem 0;
    background: #f7fafc;
}

.step-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-container-new.reverse {
    direction: rtl;
}

.step-container-new.reverse > * {
    direction: ltr;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.step-content-new h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.step-content-new > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #4a5568;
    line-height: 1.6;
}

.step-image-new {
    display: flex;
    justify-content: center;
}

.image-container {
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Compatibility Section */
.compatibility-section {
    padding: 5rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 3rem;

    margin-left: auto;
    margin-right: auto;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.brand-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.brand-icon i {
    color: white;
    font-size: 1.5rem;
}

.brand-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.brand-card p {
    color: #4a5568;
    font-size: 0.9rem;
}

.compatibility-note {
    background: #e6fffa;
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.compatibility-note p {
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
}

.compatibility-note i {
    color: #10b981;
    margin-right: 0.5rem;
}

.cta-content-center {
    text-align: center;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .step-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .step-container-new.reverse {
        direction: ltr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .compatibility-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Estilos para formulários de contato */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.contact-method h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-method i {
    color: #10b981;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Estilos para login */
.login-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: #f7fafc;
}

.login-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #4a5568;
}

.login-form {
    margin-bottom: 2rem;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.forgot-password {
    color: #10b981;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.create-account-btn {
    background: transparent;
    color: #10b981;
    border: 2px solid #10b981;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.create-account-btn:hover {
    background: #10b981;
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-container {
        margin: 1rem;
        padding: 2rem;
    }
}


/* Novos estilos para todas as páginas com design aprimorado */

/* Hero sections aprimoradas */
.about-hero, .pricing-hero, .faq-hero, .contact-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before, .pricing-hero::before, .faq-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 3rem;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-text p {
    color: #4a5568;
    line-height: 1.6;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vision-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.vision-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vision-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #10b981, #059669);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #10b981;
}

.timeline-date {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.team-member h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background: #2d3748;
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #2d3748;
}

.text-green {
    color: #10b981;
}

.text-gray {
    color: #a0aec0;
}

/* Value Section */
.value-section {
    padding: 6rem 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

.value-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.value-stats span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4a5568;
}

/* FAQ Styles */
.faq-categories {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

.category-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.category-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.category-card a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-card a:hover {
    color: #059669;
}

.faq-section {
    padding: 4rem 0;
}

.faq-section:nth-child(even) {
    background: #f7fafc;
}

.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h3 {
    color: #2d3748;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #10b981;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f7fafc;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-align: center;
}

.support-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.support-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-option {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.support-icon {
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.support-option h4 {
    margin-bottom: 0.5rem;
}

.support-option p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.support-option span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Styles */
.contact-methods {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
}

.contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details strong {
    color: #2d3748;
    font-size: 1.1rem;
}

.contact-details span {
    color: #10b981;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    padding: 6rem 0;
    background: #f7fafc;
}

.form-container {
    display: grid;

    gap: 4rem;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-content h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-content p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #4a5568;
}

.submit-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.form-info {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
}

.form-info h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: #10b981;
}

.info-item span {
    color: #4a5568;
}

.contact-cta {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.contact-cta h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.phone-cta {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* FAQ Quick */
.faq-quick {
    padding: 4rem 0;
    background: white;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-quick-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.faq-quick-item h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-quick-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Office Info */
.office-info {
    padding: 6rem 0;
    background: #f7fafc;
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.office-text h2 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.office-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.office-detail i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-detail strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.3rem;
}

.office-detail p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.office-map {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    color: #4a5568;
}

.map-placeholder i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

/* Login Styles */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    padding: 2rem 0;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.login-form-container {
    padding: 3rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #4a5568;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 1rem;
    color: #a0aec0;
    z-index: 1;
}

.input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-container input:focus {
    outline: none;
    border-color: #10b981;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    z-index: 1;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: #10b981;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #059669;
}

.login-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.social-button:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.social-button.google {
    color: #db4437;
}

.social-button.linkedin {
    color: #0077b5;
}

.signup-link {
    text-align: center;
    margin-top: 1rem;
}

.signup-link p {
    color: #4a5568;
}

.signup-btn {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.signup-btn:hover {
    color: #059669;
}

.login-info {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
}

.info-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.feature-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-info {
    text-align: center;
}

.security-badge {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.security-badge i {
    font-size: 1.2rem;
}

.security-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Login Benefits */
.login-benefits {
    padding: 6rem 0;
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.benefit-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.5;
}

/* Corporate Specific Styles */
.corporate-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.video-demo {
    padding: 6rem 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-button {
    background: rgba(255,255,255,0.9);
    color: #10b981;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-description {
    text-align: center;
    margin-top: 2rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.savings-analysis {
    padding: 1rem 0;
    background: #f7fafc;
}

.savings-content {
    display: grid;

    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.savings-chart img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.savings-details h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.savings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.savings-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.savings-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.savings-text h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.savings-text p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

.sustainability-section {
    padding: 6rem 0;
    background: white;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-text h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.sustainability-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sustainability-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.sustainability-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

#tag-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-container {
	    padding: 0px;
	}
	
	.contact-form {
		padding: 20px;
	}
	
	.nav-item:hover{
		border-bottom: 3px solid transparent;
	}
    
    .hero-image-new {
        order: -1;
    }
    
    .step-container-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-container-new.reverse {
        grid-template-columns: 1fr;
    }
    
    .step-image-new {
        order: -1;
    }
    
    .mission-content,
    .story-content,
    .savings-content,
    .sustainability-content,
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .login-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .contact-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .login-form-container,
    .login-info {
        padding: 2rem;
    }
}

