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

.bg-green-500 { background-color: #F9B129; }
.hover\:bg-green-600:hover { background-color: #e09e20; }

:root {
    --vixcloud-orange: #F9B129;
    --vixcloud-gray: #676867;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
}

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

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Compensar header fixo ao navegar por âncoras */
section[id] {
    scroll-margin-top: 110px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--vixcloud-orange);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--vixcloud-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #e09a1f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--vixcloud-gray);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--vixcloud-gray);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--vixcloud-gray) 0%, var(--vixcloud-orange) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.banner-slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}

.banner-slide.active {
    display: block;
}

.banner-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-slide h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.banner-slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--vixcloud-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* About */
.about {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

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

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

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--vixcloud-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vixcloud-gray);
}

/* Plans */
.plans {
    padding: 80px 0;
}

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

.plan-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan-card.popular {
    border: 3px solid var(--vixcloud-orange);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vixcloud-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--vixcloud-gray);
    margin-bottom: 1rem;
}

/* Billing toggle */
.billing-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 2.5rem;
    gap: 0.75rem;
}

.billing-switcher {
    position: relative;
    display: inline-flex;
    background: #efefef;
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.billing-pill-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    border-radius: 40px;
    background: var(--vixcloud-orange);
    box-shadow: 0 3px 12px rgba(249, 177, 41, 0.45);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.billing-option {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    user-select: none;
}

.billing-option.active {
    color: var(--white);
}

.annual-save-badge {
    background: #22c55e;
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.billing-savings-hint {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.billing-savings-hint.visible {
    opacity: 1;
    transform: translateY(0);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vixcloud-orange);
    line-height: 1.2;
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.price-annual-info {
    display: none;
    font-size: 0.78rem;
    color: #16a34a;
    font-weight: 700;
    margin-top: 10px;
    background: rgba(34, 197, 94, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: #28a745;
    font-size: 1rem;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--vixcloud-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--vixcloud-gray);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Migration */
.migration {
    padding: 80px 0;
    background: var(--vixcloud-gray);
    color: var(--white);
    text-align: center;
}

.migration-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.migration-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.testimonial-author h4 {
    color: var(--vixcloud-gray);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Clients */
.clients {
    padding: 60px 0;
    background: var(--light-gray);
    text-align: center;
}

.clients h2 {
    margin-bottom: 3rem;
    color: var(--vixcloud-gray);
}

.clients-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    width: 150px;
    height: 80px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-placeholder {
    color: var(--text-gray);
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 80px 0;
}

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

.contact-info h3 {
    color: var(--vixcloud-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method.whatsapp {
    background: #25d366;
    color: var(--white);
}

.contact-method.email {
    background: var(--vixcloud-orange);
    color: var(--white);
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-form h3 {
    color: var(--vixcloud-gray);
    margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--vixcloud-orange);
}

/* Footer */
.footer {
    background: #1c1c1c;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--vixcloud-orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-section h4 {
    margin-bottom: 1.4rem;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--vixcloud-orange);
    border-radius: 2px;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-section ul li a:hover {
    color: var(--vixcloud-orange);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-contact-icon.wa-icon  { background: #25d366; color: #fff; }
.footer-contact-icon.tel-icon { background: var(--vixcloud-orange); color: #fff; }
.footer-contact-icon.mail-icon { background: #6c5ce7; color: #fff; }

.footer-contact-item small {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
}

.footer-support-badge {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 177, 41, 0.1);
    color: var(--vixcloud-orange);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(249, 177, 41, 0.25);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.83rem;
}

/* Contact CTA */
.contact-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.contact-cta-btn {
    font-size: 1.05rem;
    padding: 14px 32px;
}

.btn-outline-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: 2px solid var(--vixcloud-gray);
    color: var(--vixcloud-gray);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-outline-contact:hover {
    background: var(--vixcloud-gray);
    color: var(--white);
}

.horizontal-contacts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.horizontal-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    justify-content: flex-start;
}

.horizontal-contact.whatsapp {
    background: #25d366;
}

.horizontal-contact.phone {
    background: var(--vixcloud-orange);
}

.horizontal-contact.email {
    background: #6c5ce7;
}

.horizontal-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.horizontal-contact i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.horizontal-contact span {
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .banner-slide h1 {
        font-size: 2.5rem;
    }
    
    .banner-slide h2 {
        font-size: 1.2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h4::after {
        left: 0;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }

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

