@charset "ISO-8859-1";
 :root {
        --primary: #6634a8;
        --primary-dark: #2430d0c5;
        --primary-light: #eef0ff;
        --primary-gradient: linear-gradient(135deg, #7144e2 0%, #6634a8 100%);
        --secondary: #6373ff;
        --accent: #00e6c3;
        --accent-dark: #00c9a9;
        --text-dark: #1a1a2e;
        --text-medium: #3d3d5a;
        --text-light: #7e7e9a;
        --text-lighter: #b1b1c9;
        --white: #ffffff;
        --off-white: #f8f9ff;
        --gray-light: #f0f2fa;
        --gray: #e4e6f2;
        --gray-dark: #d4d7e8;
        --success: #08d484;
        --info: #1794ff;
        --warning: #ffb30f;
        --danger: #ff4757;
        --border-radius-sm: 6px;
        --border-radius: 12px;
        --border-radius-lg: 20px;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
        --shadow: 0 8px 24px rgba(86, 98, 246, 0.12);
        --shadow-lg: 0 16px 36px rgba(86, 98, 246, 0.18);
        --shadow-highlight: 0 8px 24px rgba(86, 98, 246, 0.25);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        background-color: var(--white);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {

        font-weight: 700;
        line-height: 1.3;
    }

    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    section {
        padding: 6rem 0;
        position: relative;
    }

    .section-padding-lg {
        padding: 9rem 0;
    }

    /* Utilities */
    .text-center {
        text-align: center;
    }

    .gradient-text {
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .blur-circle {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.6;
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;

        /* animation: float 6s ease-in-out infinite; */
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* Navbar */
    .navbar {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
        padding: 1rem 0;
    }

    .navbar.scrolled {
        box-shadow: var(--shadow);
        padding: 0.75rem 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: 800;
        font-size: 1.6rem;
        color: var(--primary);
        text-decoration: none;
    }

    .logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        margin-right: 10px;
        color: white;
    }

    .logo-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        /* width: 50px;
            height: 50px; */
        margin-left: 35px;
        margin-bottom: 15px;
        border-radius: 8px;
        margin-right: 10px;
        color: white;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-medium);
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition);
        padding-bottom: 2px;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--primary);
        transition: var(--transition);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-buttons {
        display: flex;
        gap: 1rem;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        border-radius: var(--border-radius);
        transition: var(--transition);
        cursor: pointer;
        border: none;
        gap: 0.5rem;
    }

    .btn-outline {
        background: transparent;
        border: 1.5px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: var(--primary-light);
    }

    .btn-primary {
        background: var(--primary-gradient);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(86, 98, 246, 0.25);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(86, 98, 246, 0.3);
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        padding: 10rem 0 6rem;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--white) 30%, var(--primary-light) 100%);
    }

    .hero-circle-1 {
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background-color: var(--primary);
    }

    .hero-circle-2 {
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background-color: var(--accent);
    }

    .hero .container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.25rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        background-color: var(--off-white);
        border-radius: 50px;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        border: 1px solid var(--gray);
        box-shadow: var(--shadow-sm);
    }

    .hero-badge i {
        margin-right: 0.5rem;
        font-size: 0.75rem;
    }

    .hero-content p {
        font-size: 1.125rem;
        color: var(--text-medium);
        margin-bottom: 2.5rem;
        max-width: 540px;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
    }

    .stat-value {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
    }

    .stat-value i {
        color: var(--success);
        font-size: 1.25rem;
        margin-left: 0.5rem;
    }

    .stat-label {
        color: var(--text-light);
        font-size: 0.875rem;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        position: relative;
        z-index: 2;
    }

    .platform-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--white);
        border-radius: var(--border-radius);
        padding: 1rem;
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        gap: 1rem;
        z-index: 3;
    }

    .platform-icon {
        width: 40px;
        height: 40px;
        background: var(--primary-light);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.25rem;
    }

    .platform-content {
        display: flex;
        flex-direction: column;
    }

    .platform-title {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--text-dark);
    }

    .platform-meta {
        font-size: 0.75rem;
        color: var(--text-light);
    }

    .floating-card {
        position: absolute;
        z-index: 3;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .floating-card-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        font-size: 1.25rem;
    }

    .security-card {
        top: 20px;
        left: -40px;
    }

    .security-card .floating-card-icon {
        background-color: #e6fcf5;
        color: #0ca678;
    }

    .api-card {
        top: 220px;
        right: -30px;
    }

    .api-card .floating-card-icon {
        background-color: #fff4e6;
        color: #fd7e14;
    }

    .floating-card-content {
        display: flex;
        flex-direction: column;
    }

    .floating-card-title {
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--text-dark);
    }

    .floating-card-desc {
        font-size: 0.75rem;
        color: var(--text-light);
    }

    .feature-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 5rem;
    }

    .feature-card {
        background-color: white;
        padding: 1.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid var(--gray);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-highlight);
        border-color: var(--primary-light);
    }

    .feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 1.25rem;
        font-size: 1.5rem;
    }

    .feature-card:nth-child(1) .feature-icon {
        background-color: #e7f5ff;
        color: #339af0;
    }

    .feature-card:nth-child(2) .feature-icon {
        background-color: #e6fcf5;
        color: #0ca678;
    }

    .feature-card:nth-child(3) .feature-icon {
        background-color: #fff9db;
        color: #f59f00;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* Brand Section */
    .brands {
        padding: 4rem 0;
        background-color: var(--off-white);
        position: relative;
    }

    .brands-title {
        text-align: center;
        margin-bottom: 3rem;
        color: var(--text-light);
        font-size: 1rem;
        font-weight: 500;
    }

    .brands-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 4rem;
        margin-top: 3rem;
    }

    .brand-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        width: 160px;
        background-color: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        padding: 1rem;
        transition: var(--transition);
    }

    .brand-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-highlight);
    }

    .brand-logo {
        height: 40px;
        max-width: 100%;
        opacity: 0.8;
        transition: var(--transition);
        filter: grayscale(0.8);
    }

    .brand-item:hover .brand-logo {
        opacity: 1;
        filter: grayscale(0);
    }

    /* Features Section */
    .features {
        padding: 8rem 0;
        background-color: var(--white);
        position: relative;
    }

    .features-circle-1 {
        top: 10%;
        right: -200px;
        width: 400px;
        height: 400px;
        background-color: var(--primary-light);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 1.125rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-item {
        background-color: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
        border: 1px solid var(--gray);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-highlight);
        border-color: var(--primary-light);
    }
    
    .feature-item-icon {
        margin-bottom: 1.5rem;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        font-size: 1.75rem;
    }

    .feature-item h3 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .feature-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-item-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
    }

    .feature-link {
        display: inline-flex;
        align-items: center;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: var(--transition);
        gap: 0.5rem;
    }

    .feature-link:hover {
        gap: 0.75rem;
    }

    .feature-item:nth-child(1) .feature-item-icon {
        background-color: #e7f5ff;
        color: #339af0;
    }

    .feature-item:nth-child(2) .feature-item-icon {
        background-color: #f3f0ff;
        color: #6634a8;
    }

    .feature-item:nth-child(3) .feature-item-icon {
        background-color: #fff4e6;
        color: #fd7e14;
    }

    .feature-item:nth-child(4) .feature-item-icon {
        background-color: #e6fcf5;
        color: #0ca678;
    }

    .feature-item:nth-child(5) .feature-item-icon {
        background-color: #fff9db;
        color: #f59f00;
    }

    .feature-item:nth-child(6) .feature-item-icon {
        background-color: #f8f9fa;
        color: #495057;
    }

    .feature-item:nth-child(7) .feature-item-icon {
        background-color: #fff5f5;
        color: #fa5252;
    }

    .feature-item:nth-child(8) .feature-item-icon {
        background-color: #e3fafc;
        color: #15aabf;
    }

    .feature-item:nth-child(9) .feature-item-icon {
        background-color: #edf2ff;
        color: #4263eb;
    }

    /* How It Works */
    .how-it-works {
        padding: 8rem 0;
        background-color: var(--white);
        position: relative;
    }

    .how-circle-1 {
        bottom: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        background-color: var(--primary-light);
    }

    .steps {
        display: flex;
        margin-top: 4rem;
        position: relative;
    }

    .step-item {
        flex: 1;
        text-align: center;
        padding: 1rem;
        position: relative;
    }

    .step-number {
        background: var(--primary-gradient);
        color: var(--white);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin: 0 auto 2rem;
        font-size: 1.5rem;
        box-shadow: var(--shadow-highlight);
        position: relative;
        z-index: 2;
    }

    .step-line {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--gray-dark);
        z-index: 1;
    }

    .step-icon {
        background-color: var(--white);
        width: 80px;
        height: 80px;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: var(--primary);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .step-item:hover .step-icon {
        transform: translateY(-5px);
        box-shadow: var(--shadow-highlight);
    }

    .step-item h3 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .step-item p {
        color: var(--text-light);
        font-size: 0.95rem;
        max-width: 250px;
        margin: 0 auto;
    }

    .toggle-option {
        font-weight: 600;
        color: var(--text-light);
        padding: 0.5rem 1.5rem;
        cursor: pointer;
        transition: var(--transition);
        border-radius: 50px;
    }

    .toggle-option.active {
        color: var(--white);
        background: var(--primary-gradient);
        box-shadow: var(--shadow-highlight);
    }

    /* Testimonials */
    .testimonials {
        padding: 8rem 0;
        background-color: var(--off-white);
        position: relative;
    }

    .testimonials-circle-1 {
        bottom: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background-color: var(--primary-light);
    }

   .testimonial-wrapper {
  position: relative;
  margin: 3rem 0;
  overflow: hidden; /* 🔥 remove scroll */
}

.testimonial-cards {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Desktop = 3 cards visíveis */
@media (min-width: 992px) {
  .testimonial-item {
    flex: 0 0 calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
  }
}

/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.1);
  color: #222;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-prev { left: 0px; }
.carousel-next { right: 0px; }

.carousel-control-prev,
.carousel-control-next {
  width: 50px; /* ajuste conforme necessário */
  height: 50px;
  background-color: #fff; /* ou transparente */
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}



    .testimonial-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-highlight);
        border-color: var(--primary-light);
    }

    .testimonial-rating {
        display: flex;
        color: var(--warning);
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-content {
        margin-bottom: 2rem;
        color: var(--text-medium);
        font-size: 1rem;
        line-height: 1.7;
        position: relative;
        flex-grow: 1;
    }

    .testimonial-content::before {
        content: "";
        font-size: 4rem;
        font-family: Georgia, serif;
        color: var(--primary-light);
        line-height: 0;
        position: absolute;
        top: -10px;
        left: -10px;
        z-index: -1;
        opacity: 0.5;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: auto;
    }

    .author-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 1rem;
        border: 2px solid var(--primary-light);
        background-color: #f0f0f0;
    }

    .author-info {
        display: flex;
        flex-direction: column;
    }

    .author-name {
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
    }

    .author-title {
        font-size: 0.875rem;
        color: var(--text-light);
    }

    /* Call to Action */
    .cta {
        background: var(--primary-gradient);
        padding: 8rem 0;
        color: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-glow {
        position: absolute;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
        width: 800px;
        height: 800px;
        top: -400px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .cta-container {
        position: relative;
        z-index: 1;
    }

    .cta h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 3rem;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-white {
        background-color: var(--white);
        color: var(--primary);
    }

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-outline-white {
        background-color: transparent;
        color: var(--white);
        border: 1.5px solid var(--white);
    }

    .btn-outline-white:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }


    /* Footer */
    footer {
        background-color: #1a1a2e;
        color: var(--white);
        padding: 6rem 0 2rem;
        position: relative;
        overflow: hidden;
    }

    .footer-glow {
        position: absolute;
        background: radial-gradient(circle, rgba(86, 98, 246, 0.2) 0%, rgba(86, 98, 246, 0) 70%);
        width: 800px;
        height: 800px;
        bottom: -500px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr) 2fr;
        gap: 3rem;
        margin-bottom: 4rem;
        position: relative;
        z-index: 1;
    }

    .footer-logo {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        color: var(--white);
    }

    .footer-logo a {
        margin-right: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary);
        border-radius: 10px;
    }

    .footer-description {
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        max-width: 360px;
        line-height: 1.7;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
        transition: var(--transition);
        font-size: 1.1rem;
    }

    .social-links a:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }

    .footer-heading {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
        color: var(--white);
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
    }

    .footer-links a i {
        margin-right: 0.5rem;
        font-size: 0.75rem;
    }

    .footer-links a:hover {
        color: var(--white);
        transform: translateX(5px);
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .footer-contact-item i {
        margin-right: 1rem;
        color: var(--primary);
        font-size: 1.1rem;
        margin-top: 2px;
    }

    .footer-contact-item span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-contact-item a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-contact-item a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.5);
        position: relative;
        z-index: 1;
    }

    /* Responsive Styles */
    @media screen and (max-width: 1200px) {
        .container {
            max-width: 960px;
        }

        .hero-content h1 {
            font-size: 2.75rem;
        }

        .features-grid,
        .testimonial-cards {
            grid-template-columns: repeat(1, 1fr);
        }
        .features-grid-planos {
            grid-template-columns: repeat(1, 1fr) !important;
        }
    }

    @media screen and (max-width: 991px) {
        .container {
            max-width: 720px;
        }

        .section-title {
            font-size: 2.25rem;
        }

        .hero .container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-content {
            text-align: center;
        }

        .hero-content p {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .floating-card {
            display: none;
        }

        .steps {
            flex-direction: column;
            gap: 3rem;
        }

        .step-line {
            display: none;
        }

        .pricing-plans {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .plan.popular {
            transform: none;
        }

        .plan.popular:hover {
            transform: translateY(-10px);
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
    }

    @media screen and (max-width: 768px) {
        .container {
            max-width: 540px;
        }

        .section-title {
            font-size: 2rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

        .navbar .container {
            flex-wrap: wrap;
            padding: 0.5rem 1rem;
        }

        .nav-links {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 0;
            margin-top: 1rem;
        }

        .nav-links.show {
            display: flex;
        }

        .nav-links li {
            border-top: 1px solid var(--gray);
        }

        .nav-links a {
            display: block;
            padding: 1rem 0;
        }

        .nav-links a::after {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .features-grid-planos{
            grid-template-columns: 1fr !important;
        }

        .feature-cards {
            grid-template-columns: 1fr;
        }

        .cta h2 {
            font-size: 2.25rem;
        }

        .cta p {
            font-size: 1.125rem;
        }
    }

    @media screen and (max-width: 576px) {
        .container {
            padding: 0 1.25rem;
        }

        .hero-content h1 {
            font-size: 2.25rem;
        }

        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }

        .hero-buttons .btn {
            width: 100%;
        }

        .hero-stats {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .stat-item {
            align-items: center;
        }

        .section-padding-lg {
            padding: 6rem 0;
        }

        .section {
            padding: 4rem 0;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .footer-description {
            max-width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

    .card {
        padding: 20px;
        max-width: 1000px;
        margin: 0 auto;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        justify-content: center;
    }

    .card-header {
        margin-bottom: 15px;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        /* Não permite quebra de linha */
        gap: 20px;
    }

    .input-group {
        flex: 1 1 30%;
        /* Cada campo ocupa 30% da largura, ajustável */
    }

    .message-group {
        flex: 2 1 40%;
        /* Campo de mensagem ocupa mais espaço */
    }

    h5 {

        font-size: 14px;
        font-weight: 600;
        color: #030303;
    }

    input[type="text"],
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 12px;
        margin-top: 2px;
        margin-bottom: 2px;
    }

    textarea {
        resize: vertical;
    }

    button {
        margin-top: 20px;
        padding: 10px 20px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    button:disabled {
        background-color: #cccccc;
        cursor: not-allowed;
    }
    
    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 110px;
    height: 110px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.features-grid-planos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-item-planos {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.buttons-plano {
	justify-content: center;
  margin-top: 11px;
  display: flex;
}

.div-planos:hover {
        transform: translateY(-10px);
    }
    
 .feature-item-planos:hover {       
         box-shadow: var(--shadow-highlight);
        border-color: var(--primary-light);
}

.div-planos {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.btn-plano-lg {
  padding: 0.575rem 3.75rem;
  font-size: 1rem;
}
    