/* ============ SINGELA PREMIUM STYLING ============ */
/* Color Palette:
   - Blue Primary: #2563FF
   - Purple Primary: #7B4DFF
   - Dark Blue: #071120
   - Light Background: #F7F9FC
   - White: #FFFFFF
   - Gray Text: #5B6472
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(to bottom, #F7F9FC, #FFFFFF);
    color: #071120;
    line-height: 1.6;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.header-actions{
    display:flex;
    align-items:center;
    gap:1rem;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    width: 140px;
    height: auto;
}

.logo-image {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.03);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #071120;
}

.cta-button {
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 255, 0.4);
}




.client-link{
    color:#5B6472;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
    position:relative;
}

.client-link:hover{
    color:#2563FF;
}

.client-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#2563FF;
    transition:.3s ease;
}

.client-link:hover::after{
    width:100%;
}


/* ============ HERO SECTION ============ */
.hero {
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.2), transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: rgba(37, 99, 255, 0.1);
    color: #2563FF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 255, 0.2);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: #5B6472;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563FF;
    border: 2px solid #2563FF;
}

.btn-secondary:hover {
    background: rgba(37, 99, 255, 0.05);
}

.btn-secondary-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border: 3px solid white;
    margin-left: -0.75rem;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-title {
    font-weight: 700;
    color: #071120;
    font-size: 0.95rem;
}

.proof-subtitle {
    font-size: 0.85rem;
    color: #5B6472;
}

/* ============ DASHBOARD STYLING ============ */
.hero-dashboard {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
    animation: scaleIn 0.6s ease-out forwards;
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.05), rgba(123, 77, 255, 0.05));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.logo-icon-small {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E8EBF1;
}

.dashboard-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #F7F9FC;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #E8EBF1;
}

.stat-label {
    font-size: 0.75rem;
    color: #5B6472;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #071120;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-change.positive {
    color: #10b981;
}

.stat-change.negative {
    color: #ef4444;
}

.chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(123, 77, 255, 0.1));
    border-radius: 8px;
    padding: 1rem;
    gap: 0.5rem;
}

.bar {
    width: 12px;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    border-radius: 4px 4px 0 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    color: #5B6472;
}

.menu-item:hover {
    background: #F7F9FC;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563FF;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    bottom: -30px;
    left: -40px;
    width: 200px;
}

.card-2 {
    top: -20px;
    right: -40px;
    width: 200px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.card-label {
    font-size: 0.75rem;
    color: #5B6472;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #071120;
    margin-bottom: 0.25rem;
}

.card-change {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

/* ============ TRUST SECTION ============ */
.trust {
    padding: 4rem 2rem;
    background: white;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
}

.trust-title {
    text-align: center;
    color: #5B6472;
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand:hover {
    background: #F7F9FC;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(123, 77, 255, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.brand-icon svg {
    width: 24px;
    height: 24px;
    color: #2563FF;
    transition: all 0.3s ease;
}

.brand:hover .brand-icon {
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(123, 77, 255, 0.2));
    transform: scale(1.1);
}

.brand:hover .brand-icon svg {
    color: #7B4DFF;
}

.brand-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #071120;
}

/* ============ RESOURCES SECTION ============ */
.resources {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, white, #F7F9FC);
}

.resources-container {
    max-width: 1280px;
    margin: 0 auto;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.resource-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #E8EBF1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-card:hover {
    border-color: #2563FF;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.1);
    transform: translateY(-4px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(123, 77, 255, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.resource-icon svg {
    width: 28px;
    height: 28px;
    color: #2563FF;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(123, 77, 255, 0.2));
    transform: scale(1.1);
}

.resource-card:hover .resource-icon svg {
    color: #7B4DFF;
}

.resource-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #071120;
}

.resource-card p {
    font-size: 0.9rem;
    color: #5B6472;
    line-height: 1.6;
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: 5rem 2rem;
    background: white;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #071120;
}

.features-header p {
    font-size: 1.1rem;
    color: #5B6472;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid #E8EBF1;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563FF, #7B4DFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: #2563FF;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.1);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(123, 77, 255, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #2563FF;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(123, 77, 255, 0.2));
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    color: #7B4DFF;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #071120;
    margin-bottom: 0.75rem;
}

.feature-subtitle {
    font-size: 0.95rem;
    color: #5B6472;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    font-size: 0.9rem;
    color: #5B6472;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563FF;
    font-weight: bold;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-list li::before {
    color: #7B4DFF;
}

/* ============ MODULES SECTION ============ */
.modules {
    padding: 5rem 2rem;
}

.modules-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.modules-content {
    animation: fadeInUp 0.8s ease-out;
}

.modules-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modules-content > p {
    font-size: 1.1rem;
    color: #5B6472;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #071120;
}

.check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.modules-dashboard {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============ DATA TABLE ============ */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table thead {
    background: #F7F9FC;
}

.data-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: #5B6472;
    border-bottom: 1px solid #E8EBF1;
}

.data-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #F7F9FC;
    color: #071120;
}

.data-table tbody tr:hover {
    background: #F7F9FC;
}

.dashboard-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E8EBF1;
}

.tab {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #5B6472;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab.active {
    color: #2563FF;
    border-bottom-color: #2563FF;
}

.tab:hover {
    color: #071120;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-inactive {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-shipped {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============ DIFERENCIAIS SECTION ============ */
.diferenciais {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #F7F9FC, white);
}

.diferenciais-container {
    max-width: 1280px;
    margin: 0 auto;
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 3rem;
}

.diferenciais-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #071120;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background: white;
    border: 1px solid #E8EBF1;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.diferencial-card:hover {
    border-color: #2563FF;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.1);
    transform: translateY(-4px);
}

.diferencial-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.diferencial-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #071120;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    font-size: 0.9rem;
    color: #5B6472;
    line-height: 1.6;
}

/* ============ PÚBLICO-ALVO SECTION ============ */
.publico-alvo {
    padding: 5rem 2rem;
    background: white;
}

.publico-alvo-container {
    max-width: 1280px;
    margin: 0 auto;
}

.publico-alvo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.publico-alvo-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #071120;
    margin-bottom: 1rem;
}

.publico-alvo-header p {
    font-size: 1.1rem;
    color: #5B6472;
}

.publico-alvo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.publico-alvo-card {
    background: white;
    border: 1px solid #E8EBF1;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.publico-alvo-card:hover {
    border-color: #2563FF;
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.1);
    transform: translateY(-4px);
}

.publico-alvo-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.1), rgba(123, 77, 255, 0.1));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.publico-alvo-icon svg {
    width: 28px;
    height: 28px;
    color: #2563FF;
    transition: all 0.3s ease;
}

.publico-alvo-card:hover .publico-alvo-icon {
    background: linear-gradient(135deg, rgba(37, 99, 255, 0.2), rgba(123, 77, 255, 0.2));
    transform: scale(1.1);
}

.publico-alvo-card:hover .publico-alvo-icon svg {
    color: #7B4DFF;
}

.publico-alvo-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #071120;
}

/* ============ BLOCO EMOCIONAL SECTION ============ */
.bloco-emocional {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F7F9FC, #FFFFFF);
    border-top: 1px solid #E8EBF1;
    border-bottom: 1px solid #E8EBF1;
}

.bloco-emocional-container {
    max-width: 900px;
    margin: 0 auto;
}

.bloco-emocional-content {
    text-align: center;
}

.bloco-emocional-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #071120;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bloco-emocional-subtitle {
    font-size: 1.1rem;
    color: #5B6472;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bloco-emocional-text {
    font-size: 1.1rem;
    color: #5B6472;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bloco-emocional-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* ============ FINAL CTA SECTION ============ */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #071120, #0f1e3a, #1a2a4a);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.final-cta > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.floating-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stat-value-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============ CONTACT FORM SECTION ============ */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F7F9FC, white);
    border-top: 1px solid #E8EBF1;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #071120;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #5B6472;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-form {
    background: white;
    border: 1px solid #E8EBF1;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #071120;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #E8EBF1;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #071120;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0A8B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563FF;
    box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-group.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #5B6472;
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.5;
}

.error-message {
    font-size: 0.8rem;
    color: #DC2626;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #DC2626;
    background: rgba(220, 38, 38, 0.02);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ============ FOOTER ============ */
.footer {
    background: #071120;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: white;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .diferenciais-header h2 {
        font-size: 1.75rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .publico-alvo-header h2 {
        font-size: 1.75rem;
    }

    .publico-alvo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bloco-emocional-content h2 {
        font-size: 1.75rem;
    }

    .bloco-emocional-highlight {
        font-size: 1.1rem;
    }

    .features-header h2 {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .logo-text {
        display: none;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard {
        transform: scale(0.85);
        transform-origin: center;
    }

    .floating-card {
        display: none;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .modules-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modules-content h2 {
        font-size: 1.75rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .floating-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .diferenciais-header h2 {
        font-size: 1.5rem;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .diferencial-number {
        font-size: 2rem;
    }

    .publico-alvo-header h2 {
        font-size: 1.5rem;
    }

    .publico-alvo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bloco-emocional {
        padding: 3rem 1rem;
    }

    .bloco-emocional-content h2 {
        font-size: 1.5rem;
    }

    .bloco-emocional-subtitle,
    .bloco-emocional-text {
        font-size: 1rem;
    }

    .bloco-emocional-highlight {
        font-size: 1rem;
    }

    .header-container {
        padding: 0.75rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 1rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .social-proof {
        flex-direction: column;
        align-items: flex-start;
    }

    .avatars {
        gap: 0;
    }

    .avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .trust-title {
        font-size: 0.9rem;
    }

    .brands {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand {
        padding: 0.5rem;
    }

    .resources {
        padding: 3rem 1rem;
    }

    .resources-header h2 {
        font-size: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .modules {
        padding: 3rem 1rem;
    }

    .modules-content h2 {
        font-size: 1.5rem;
    }

    .modules-content > p {
        font-size: 1rem;
    }

    .final-cta {
        padding: 3rem 1rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .final-cta > p {
        font-size: 1rem;
    }

    .data-table {
        font-size: 0.8rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ============ FAQ SECTION ============ */

.faq-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #FFFFFF, #F7F9FC);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-badge {
    display: inline-block;
    background: rgba(37, 99, 255, 0.1);
    color: #2563FF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 255, 0.15);
    margin-bottom: 1rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #071120;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-header p {
    color: #5B6472;
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #E8EBF1;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(37, 99, 255, 0.4);
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #071120;
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563FF, #7B4DFF);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #5B6472;
    line-height: 1.8;
    font-size: 0.96rem;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {

    .faq-section {
        padding: 4rem 1rem;
    }

    .faq-header h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
    }

}

/* ============ COOKIE BANNER ============ */

.cookie-banner{
    position:fixed;
    bottom:24px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 32px);
    max-width:980px;
    background:rgba(7,17,32,0.92);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:1.2rem 1.5rem;
    z-index:9999;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
    animation:cookieSlide .6s ease;
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:2rem;
}

.cookie-text{
    display:flex;
    align-items:flex-start;
    gap:1rem;
}

.cookie-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563FF,#7B4DFF);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
    flex-shrink:0;
}

.cookie-text h4{
    color:#fff;
    font-size:1rem;
    margin-bottom:.3rem;
    font-weight:700;
}

.cookie-text p{
    color:rgba(255,255,255,0.72);
    font-size:.92rem;
    line-height:1.6;
    max-width:600px;
}

.cookie-actions{
    display:flex;
    align-items:center;
    gap:.8rem;
    flex-shrink:0;
}

.cookie-btn{
    border:none;
    padding:.8rem 1.3rem;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
    font-family:'Plus Jakarta Sans',sans-serif;
}

.cookie-btn.primary{
    background:linear-gradient(135deg,#2563FF,#7B4DFF);
    color:#fff;
    box-shadow:0 6px 20px rgba(37,99,255,.25);
}

.cookie-btn.primary:hover{
    transform:translateY(-2px);
}

.cookie-btn.secondary{
    background:rgba(255,255,255,0.06);
    color:#fff;
    border:1px solid rgba(255,255,255,0.08);
}

.cookie-btn.secondary:hover{
    background:rgba(255,255,255,0.12);
}

.cookie-banner.hide{
    opacity:0;
    visibility:hidden;
    transform:translateX(-50%) translateY(30px);
    transition:all .4s ease;
}

@keyframes cookieSlide{
    from{
        opacity:0;
        transform:translateX(-50%) translateY(30px);
    }

    to{
        opacity:1;
        transform:translateX(-50%) translateY(0);
    }
}

/* RESPONSIVO */

@media(max-width:768px){

    .cookie-content{
        flex-direction:column;
        align-items:flex-start;
    }

    .cookie-actions{
        width:100%;
    }

    .cookie-btn{
        flex:1;
        width:100%;
    }

}

/* ========================================= */
/* FLOATING CONTACT - SINGELA PREMIUM */
/* ========================================= */

.singela-contact-trigger{
    position:fixed;
    right:28px;
    bottom:28px;
    width:64px;
    height:64px;
    border-radius:22px;
    background:linear-gradient(135deg,#2563FF,#7B4DFF);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:9999;
    box-shadow:
    0 10px 30px rgba(37,99,255,.28),
    0 4px 12px rgba(123,77,255,.15);

    transition:.35s ease;
}

.singela-contact-trigger:hover{
    transform:translateY(-4px) scale(1.03);
}

.singela-contact-trigger svg{
    width:28px;
    color:#fff;
}

/* BOX */

.singela-contact-box{
    position:fixed;
    right:28px;
    bottom:110px;
    width:390px;

    background:rgba(255,255,255,.78);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:28px;

    padding:2rem;

    z-index:9999;

    box-shadow:
    0 20px 60px rgba(0,0,0,.12),
    0 8px 24px rgba(37,99,255,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:.35s ease;
}

.singela-contact-box.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* HEADER */

.contact-header{
    margin-bottom:1.8rem;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;

    background:rgba(37,99,255,.08);

    color:#2563FF;

    border:1px solid rgba(37,99,255,.12);

    padding:.5rem .9rem;

    border-radius:999px;

    font-size:.78rem;
    font-weight:700;

    margin-bottom:1rem;
}

.contact-header h3{
    font-size:1.5rem;
    line-height:1.3;
    color:#071120;
    margin-bottom:.8rem;
    font-weight:800;
}

.contact-header p{
    color:#5B6472;
    line-height:1.7;
    font-size:.95rem;
}

/* FORM */

.input-group{
    display:flex;
    flex-direction:column;
    margin-bottom:1rem;
}

.input-group label{
    font-size:.9rem;
    font-weight:600;
    margin-bottom:.55rem;
    color:#071120;
}

.input-group input,
.input-group textarea{
    width:100%;

    border:none;

    background:#F7F9FC;

    border:1px solid #E8EBF1;

    border-radius:16px;

    padding:1rem 1.1rem;

    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:.95rem;

    transition:.3s ease;

    color:#071120;
}

.input-group textarea{
    min-height:120px;
    resize:none;
}

.input-group input:focus,
.input-group textarea:focus{
    outline:none;

    border-color:#2563FF;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(37,99,255,.08);
}

/* BUTTON */

.contact-submit{
    width:100%;

    margin-top:.5rem;

    border:none;

    background:linear-gradient(135deg,#2563FF,#7B4DFF);

    color:#fff;

    height:58px;

    border-radius:18px;

    font-size:.96rem;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:.7rem;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:
    0 10px 25px rgba(37,99,255,.22);
}

.contact-submit:hover{
    transform:translateY(-2px);
    box-shadow:
    0 14px 35px rgba(37,99,255,.32);
}

.contact-submit svg{
    width:18px;
}

/* MOBILE */

@media(max-width:768px){

    .singela-contact-box{
        width:calc(100% - 24px);
        right:12px;
        bottom:90px;
        padding:1.5rem;
        border-radius:24px;
    }

    .singela-contact-trigger{
        right:16px;
        bottom:16px;
        width:58px;
        height:58px;
    }

}