:root {
    --primary: #0066ff;
    --primary-dark: #004ecc;
    --secondary: #00f2fe;
    --bg-dark: #060912;
    --bg-dark-alt: #0c1121;
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #888888;
    --text-light: #ffffff;
    --text-muted-dark: #a0aec0;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 25px 50px rgba(0, 102, 255, 0.15);
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f4f7fb;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    height: 40px;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
}

nav a:not(.btn-login) {
    position: relative;
    overflow: hidden;
}

nav a:not(.btn-login)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

nav a:not(.btn-login):hover::before, nav a:not(.btn-login).active::before {
    width: 100%;
}

nav a:not(.btn-login):hover, nav a:not(.btn-login).active {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.03);
}

nav a i {
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary), #003d82);
    color: var(--text-light) !important;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.btn-login:hover::before {
    opacity: 1;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
    color: var(--text-light) !important;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
}

.hero {
    margin-top: 80px;
    padding: 180px 8% 200px;
    background-image: 
        linear-gradient(135deg, rgba(6, 9, 18, 0.95) 0%, rgba(12, 17, 33, 0.85) 100%),
        url('/img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 120px;
    background: linear-gradient(to top, #f4f7fb, transparent);
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff, var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted-dark);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--secondary);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
}

.btn-primary:hover::before {
    width: 100%;
}

.page-header {
    margin-top: 80px;
    padding: 140px 8% 120px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-alt) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 242, 254, 0.08) 0%, transparent 60%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, #f4f7fb, transparent);
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.products {
    padding: 100px 8% 120px;
    background-color: #f4f7fb;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    color: #475569;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
    background: #ffffff;
}

.card:hover::before {
    transform: scaleX(1);
}

.illustration-wrapper {
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-size: 3.5rem;
    color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.card:hover .illustration-wrapper {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 35px;
    flex-grow: 1;
    line-height: 1.7;
}

.card-feature {
    display: inline-block;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.btn-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 24px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-card-action::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-card-action:hover {
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.btn-card-action:hover::before {
    width: 100%;
}

.featured-products {
    padding: 60px 8% 100px;
    position: relative;
    z-index: 2;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    margin-bottom: 100px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.8);
}

.product-showcase::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 254, 0.1), transparent);
    z-index: -1;
    border-radius: 32px;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.product-showcase:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0, 102, 255, 0.15);
}

.product-showcase:hover::after {
    opacity: 1;
}

.product-showcase.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.product-image-container {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
}

.product-showcase.reverse .product-image-container {
    order: 2;
}

.product-image-container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8) translate(-10%, -10%); opacity: 0.5; }
    100% { transform: scale(1.3) translate(10%, 10%); opacity: 1; }
}

.product-image-container img {
    max-width: 90%;
    height: auto;
    max-height: 450px;
    z-index: 2;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
    animation: floatProduct 5s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.product-info {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
}

.badge-monilogger {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.badge-moniwater {
    background: rgba(0, 242, 254, 0.08);
    color: #0096c7;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.product-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

.product-info p {
    color: #475569;
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 600;
}

.product-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    background: var(--bg-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.action-panel {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.folders-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--card-bg);
    color: var(--bg-dark);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.btn-download .icon-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-download .icon-left i {
    color: #ef4444;
    font-size: 1.2rem;
}

.btn-download:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.1);
    transform: translateX(5px);
    color: var(--primary);
}

.qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    padding: 15px 20px;
    border-radius: 16px;
    border: 2px dashed #cbd5e1;
    transition: var(--transition);
    min-width: 120px;
    text-align: center;
}

.qr-box:hover {
    border-color: var(--secondary);
    background: rgba(0, 242, 254, 0.05);
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.2);
}

.qr-box i {
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.qr-box span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-transform: uppercase;
}

.alfaiataria-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, var(--bg-dark), #0a192f);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 0;
    box-shadow: inset 0 20px 50px rgba(0,0,0,0.5), inset 0 -20px 50px rgba(0,0,0,0.5);
}

.alfaiataria-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: pulseGlow 6s infinite alternate;
}

.alfaiataria-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.alfaiataria-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.alfaiataria-content p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--secondary);
    transition: var(--transition);
    z-index: -1;
}

.btn-glow:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
}

.btn-glow:hover::before {
    width: 100%;
}

.alfaiataria-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.alfaiataria-image img {
    max-width: 100%;
    height: auto;
    filter: invert(1) drop-shadow(0 0 40px rgba(0, 242, 254, 0.3));
    animation: floatProduct 6s ease-in-out infinite alternate;
}

.secondary-products {
    padding: 80px 8% 100px;
}

.secondary-products.solutions {
    background: linear-gradient(180deg, rgba(0,102,255,0.04), transparent 60%);
    padding-top: 70px;
}

.solutions-sub {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 14px auto 0;
    line-height: 1.6;
}

.secondary-header {
    text-align: center;
    margin-bottom: 60px;
}

.secondary-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: var(--bg-dark);
    font-weight: 900;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 40px;
}

.list-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.6);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.list-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 3;
}

.list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
    background: #ffffff;
}

.product-thumb {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    min-height: 210px;
}

.product-thumb::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.product-thumb img {
    max-width: 80%;
    max-height: 160px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.list-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-thumb.thumb-full {
    padding: 0;
    min-height: 0;
}

.product-thumb.thumb-full img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
    filter: none;
    object-fit: contain;
}

.list-card:hover .product-thumb.thumb-full img {
    transform: none;
}

/* Solucoes: QAPR + MCD-033 na primeira linha, PCA sozinho na linha de baixo */
.solutions .grid-list {
    grid-template-columns: repeat(2, 1fr);
}

.pca-card {
    grid-column: 1 / -1;
    flex-direction: row;
}

.pca-card .product-thumb {
    flex: 0 0 45%;
    padding: 0;
    min-height: 0;
}

.pca-card .product-thumb img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: contain;
}

.pca-card .card-body {
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .solutions .grid-list {
        grid-template-columns: 1fr;
    }
    .pca-card {
        flex-direction: column;
    }
    .pca-card .product-thumb {
        flex: none;
    }
    .pca-card .product-thumb img {
        height: auto;
    }
}

.product-thumb.cda-duo {
    gap: 24px;
}

.duo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.duo-item img {
    max-width: 100%;
    max-height: 130px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.duo-item figcaption {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.card-body {
    padding: 30px 30px 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.list-card h4 {
    font-size: 1.7rem;
    color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 18px;
}

.conn-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.conn-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 30px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.conn-tag i { font-size: 0.8rem; }

.list-card p {
    font-size: 0.98rem;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.6;
    flex: 1;
}

.links-hint {
    font-size: 0.82rem !important;
    font-weight: 600;
    color: #64748b !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    flex: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-hint i {
    color: var(--primary);
    font-size: 0.95rem;
}

.card-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-small {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 11px 14px;
    background: #f8fafc;
    color: #334155;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.btn-small i {
    color: var(--primary);
}

.btn-small .fa-youtube { color: #ff0000; }
.btn-small .fa-file-pdf { color: #ef4444; }

.btn-small:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.btn-small:hover i {
    color: var(--text-light);
}

.contact-section {
    padding: 60px 8% 100px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
    background: #ffffff;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    font-weight: 600;
    color: var(--bg-dark);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item:hover {
    background: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.contact-item:hover i {
    color: var(--text-light);
}

.map-section {
    padding: 0 8% 100px;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: var(--bg-dark);
    font-weight: 900;
    margin-bottom: 15px;
}

.map-header p {
    color: #475569;
    font-size: 1.15rem;
}

.map-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.8);
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-header h3 { font-size: 1.8rem; }
    .map-wrapper iframe { height: 350px; }
}

.social-section {
    padding: 0 8% 120px;
    text-align: center;
}

.social-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: var(--bg-dark);
    font-weight: 900;
    margin-bottom: 20px;
}

.social-header p {
    color: #475569;
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.social-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    font-size: 2.8rem;
    color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.social-btn:hover {
    transform: translateY(-10px) rotate(5deg);
    color: var(--text-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: transparent;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn.whatsapp:hover::before { background: #25D366; }
.social-btn.instagram:hover::before { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-btn.youtube:hover::before { background: #FF0000; }
.social-btn.tiktok:hover::before { background: #000000; }
.social-btn.facebook:hover::before { background: #1877F2; }

.platform-overview {
    padding: 80px 8% 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.platform-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.platform-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-platform {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-light);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
    margin-top: 10px;
}

.btn-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.5);
    color: var(--bg-dark);
}

.platform-mockup {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    background: var(--bg-dark);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.platform-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 30px;
    background: #1e293b;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.platform-mockup::after {
    content: '';
    position: absolute;
    top: 10px; left: 15px; width: 10px; height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 18px 0 0 #eab308, 36px 0 0 #22c55e;
}

.mockup-img {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
    display: block;
    background: transparent;
    height: auto;
    object-fit: contain;
}

.features-grid {
    padding: 0 8% 120px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 5px; height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
    background: #ffffff;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.dashboards-section {
    padding: 0 8% 120px;
    position: relative;
    z-index: 2;
}

.dashboards-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.dashboards-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.dashboards-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
}

.dashboards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
    gap: 40px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
}

.dash-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
}

.dash-frame {
    position: relative;
    background: var(--bg-dark);
    padding: 38px 16px 16px;
    overflow: hidden;
}

.dash-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 30px;
    background: #1e293b;
}

.dash-frame::after {
    content: '';
    position: absolute;
    top: 10px; left: 15px; width: 10px; height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 18px 0 0 #eab308, 36px 0 0 #22c55e;
}

.dash-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.dash-card figcaption {
    padding: 28px 30px 32px;
}

.dash-card figcaption h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-card figcaption h4 i {
    color: var(--primary);
}

.dash-card figcaption p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.mobile-app-section {
    padding: 120px 8%;
    background: linear-gradient(135deg, var(--bg-dark), #0a192f);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 60%);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    border-radius: 50%;
    animation: pulseGlow 6s infinite alternate;
}

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

.mobile-app-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.mobile-app-content p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 16px;
    color: var(--text-light);
    transition: var(--transition);
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-store i {
    font-size: 2.2rem;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-store-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.btn-store-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.mobile-app-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: floatProduct 5s ease-in-out infinite alternate;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 25px;
    background: #333;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), #0f172a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.phone-screen i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.5));
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 18, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--card-bg);
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-modal:hover {
    background: #f1f5f9;
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
    font-weight: 800;
    text-align: center;
}

.modal-content p {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: var(--transition);
}

.form-control {
    width: 100%;
    padding: 16px 16px 16px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: var(--transition);
    background: #f8fafc;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-control:focus + i {
    color: var(--primary);
}

.modal-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.modal-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    font-weight: 600;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
}

.switch-modal {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: #64748b;
}

.switch-modal a {
    color: var(--primary);
    font-weight: 600;
}

.switch-modal a:hover {
    text-decoration: underline;
}

#forgot-view {
    display: none;
}

footer {
    background-color: var(--bg-dark);
    color: var(--text-muted-dark);
    padding: 100px 8% 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 2;
}

.fab {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    color: #ffffff;
    font-size: 2.2rem;
    transition: var(--transition);
}

.fab::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(1.9); opacity: 0; }
    100% { transform: scale(1.9); opacity: 0; }
}

.fab:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 3.8rem; }
    .product-showcase, .product-showcase.reverse { grid-template-columns: 1fr; }
    .product-showcase.reverse .product-image-container { order: 0; }
    .product-image-container { padding: 60px 20px; }
    .alfaiataria-section { flex-direction: column; text-align: center; }
    .platform-overview, .mobile-app-section { gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media (max-width: 992px) {
    header { padding: 15px 5%; }
    .menu-toggle { display: block; }
    nav {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column; padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease, padding 0.4s ease;
        gap: 0;
    }
    nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding: 20px 0;
    }
    nav a {
        justify-content: center; width: 100%;
        padding: 15px; border-radius: 0;
    }
    nav a::before { display: none; }
    .btn-login { width: 90%; margin: 10px auto; justify-content: center; border-radius: 8px; }
    .hero h1 { font-size: 3.2rem; }
    .hero { padding: 150px 5% 150px; }
    .products { padding: 80px 5% 100px; }
    .products-grid { grid-template-columns: 1fr; }
    .platform-overview { grid-template-columns: 1fr; }
    .platform-mockup { order: -1; margin-bottom: 20px; }
    .mobile-app-section { grid-template-columns: 1fr; text-align: center; }
    .store-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero h1, .page-header h1 { font-size: 2.8rem; }
    .hero p, .page-header p { font-size: 1.1rem; }
    .section-header h2 { font-size: 2.1rem; }
    .section-header { margin-bottom: 45px; }
    .card { padding: 40px 25px; }
    .product-info { padding: 40px 20px; }
    .product-info h2 { font-size: 2.2rem; }
    .product-features { grid-template-columns: 1fr; }
    .action-panel { flex-direction: column; }
    .qr-box { width: 100%; flex-direction: row; gap: 20px; padding: 15px; }
    .qr-box i { margin-bottom: 0; font-size: 2rem; }
    .alfaiataria-content h2 { font-size: 2.5rem; }
    .folder-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 40px 20px; }
    .social-btn { width: 70px; height: 70px; font-size: 2.2rem; }
    .platform-text h2, .mobile-app-content h2 { font-size: 2.5rem; }
    .dashboards-header h2 { font-size: 2rem; }
    .phone-mockup { width: 260px; height: 520px; }
    .fab { bottom: 30px; right: 30px; width: 60px; height: 60px; font-size: 1.6rem; }
}

.chat-window {
    position: fixed;
    bottom: 140px;
    right: 50px;
    width: 380px;
    height: 600px;
    max-height: 75vh;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-title i {
    font-size: 1.8rem;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
}

.chat-title div {
    display: flex;
    flex-direction: column;
}

.chat-title strong {
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
}

.chat-title span {
    font-size: 0.8rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-title span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

.close-chat {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-chat:hover {
    transform: rotate(90deg);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.bot {
    align-self: flex-start;
    background: var(--card-bg);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
}

.message.user {
    align-self: flex-end;
    background: var(--primary);
    color: var(--text-light);
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,102,255,0.2);
}

.chat-input-area {
    padding: 15px 20px;
    background: var(--card-bg);
    display: flex;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.chat-input-area input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.send-btn {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--bg-dark);
    border: none;
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

@media (max-width: 768px) {
    .chat-window {
        width: 90%;
        right: 5%;
        bottom: 100px;
    }
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    word-break: break-word;
}

.message.bot a {
    color: var(--primary);
}

.search-section {
    padding: 0 8%;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 5px 10px;
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.25);
    transform: translateY(-5px);
}

.search-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 20px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background: transparent;
    padding: 20px 0;
    min-width: 0; 
    width: 100%;
    text-overflow: ellipsis;
}

.search-box input::placeholder {
    color: var(--text-muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 480px) {
    .search-box i {
        margin: 0 10px;
    }
}

.hidden-product {
    display: none !important;
}

@media (max-width: 768px) {
    .search-section {
        margin-top: -30px;
    }
    .search-box input {
        font-size: 1rem;
        padding: 15px 0;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
    }
    
    .product-image-container {
        order: -1;
        padding: 40px 20px;
    }
    
    .product-info {
        order: 2;
    }

    .alfaiataria-content h2 {
        display: none; 
    }

    .alfaiataria-section {
        display: flex;
        flex-direction: column;
    }

    .alfaiataria-image {
        order: -1; 
        margin-bottom: 25px;
    }

    .secondary-header h3 {
        font-size: 1.8rem; 
    }

    .card-body {
        padding: 25px 22px 30px;
    }

    .modal-container {
        width: 90%;
        max-width: 100%;
        padding: 40px 20px;
        margin: 0 auto;
    }
    
    .chat-input-area {
        padding: 10px !important;
        gap: 8px;
    }

    .chat-input-area input {
        padding: 12px 10px 12px 15px !important;
        font-size: 0.9rem;
        flex: 1; 
        min-width: 0;
    }

    .send-btn {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        font-size: 1.1rem !important;
    }
}

.no-results-message {
    grid-column: 1 / -1;
    margin: 40px 8% 90px;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 2px dashed #cbd5e1;
}

.no-results-message i {
    font-size: 3rem;
    color: #94a3b8;
}

.no-results-message p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

body.is-searching .search-section {
    margin-bottom: 80px;
    transition: margin-bottom 0.3s ease;
}

/* ===================== HOME: HERO EXTRAS ===================== */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 242, 254, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero p strong { color: #ffffff; font-weight: 700; }
.hero p em { color: var(--secondary); font-style: normal; font-weight: 600; }

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-highlight i { color: var(--secondary); font-size: 1.1rem; }

/* ===================== HOME: SOLUTIONS CAROUSEL ===================== */
.solutions-section {
    padding: 100px 8% 120px;
    background-color: #f4f7fb;
    position: relative;
    z-index: 2;
}

.carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.solution-card {
    flex: 0 0 calc((100% - 60px) / 3);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 290px;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
    background: #ffffff;
}

.solution-card:hover::before { transform: scaleX(1); }

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    font-size: 3rem;
    color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
}

.solution-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
}

.solution-card-cta {
    background: linear-gradient(135deg, var(--bg-dark), #0a192f);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.solution-card-cta:hover {
    background: linear-gradient(135deg, #0a192f, var(--bg-dark));
    box-shadow: 0 30px 60px rgba(0, 242, 254, 0.2);
}

.solution-card-cta h3 { color: #ffffff; }
.solution-card-cta p { color: var(--text-muted-dark); }
.solution-card-cta .solution-icon { background: rgba(0, 242, 254, 0.1); color: var(--secondary); }
.solution-card-cta:hover .solution-icon { background: var(--secondary); color: var(--bg-dark); }

.solution-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
}

.solution-cta-link:hover { gap: 14px; }

.carousel-btn {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ===================== HOME: RESULTS ===================== */
.results-section {
    padding: 60px 8% 110px;
    position: relative;
    z-index: 2;
}

.results-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid #eef2f7;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.15);
}

.result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eef2f7;
}

.result-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.07);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.result-card:hover .result-icon {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 18px rgba(0, 102, 255, 0.3);
}

.result-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.result-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.result-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
}

.results-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===================== HOME: APPLICATIONS ===================== */
.applications-section {
    padding: 60px 8% 120px;
    position: relative;
    z-index: 2;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.application-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, 0.12);
    background: #ffffff;
}

.application-card:hover::before { transform: scaleX(1); }

.application-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.application-card:hover .application-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.application-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.application-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
}

.applications-cta {
    text-align: center;
    margin-top: 70px;
}

.applications-cta p {
    font-size: 1.2rem;
    color: var(--bg-dark);
    font-weight: 600;
    margin-bottom: 25px;
}

/* ===================== HOME: TRUST BAND ===================== */
.trust-band {
    padding: 70px 8%;
    background-color: #f4f7fb;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #e7edf5;
}

.trust-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

.trust-intro strong { color: var(--bg-dark); font-weight: 700; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.15);
}

.trust-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-num i { -webkit-text-fill-color: var(--primary); font-size: 2rem; }

.trust-label {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.4;
}

/* ===================== HOME: HOW IT WORKS ===================== */
.alfaiataria-section:has(+ .how-section) { margin-bottom: 0; }

.how-section {
    padding: 100px 8%;
    background-color: #f4f7fb;
    position: relative;
    z-index: 2;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-step {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 22px;
    padding: 45px 30px 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.1);
}

.how-step-num {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.07);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 22px;
    transition: var(--transition);
}

.how-step:hover .how-icon {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 18px rgba(0, 102, 255, 0.3);
}

.how-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.how-step p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* ===================== HOME: FINAL CTA ===================== */
.final-cta {
    padding: 100px 8% 120px;
    background-color: #f4f7fb;
    position: relative;
    z-index: 2;
}

.final-cta-content {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark), #0a192f);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 32px;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(6, 9, 18, 0.3);
}

.final-cta-content::before {
    content: '';
    position: absolute;
    top: -60%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.final-cta-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: var(--text-muted-dark);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: #25D366;
    color: #ffffff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.btn-whatsapp i { font-size: 1.4rem; }

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    transform: translateY(-5px);
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.5);
}

/* ===================== HOME: RESPONSIVE ===================== */
@media (max-width: 992px) {
    .solution-card { flex: 0 0 calc((100% - 30px) / 2); }
    .solutions-section { padding: 80px 5% 100px; }
    .results-list { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
}

@media (max-width: 768px) {
    .solution-card { flex: 0 0 80%; min-height: 0; padding: 32px 26px; }
    .solution-card h3 { font-size: 1.25rem; }
    .solution-card p { font-size: 0.92rem; }
    .solution-icon { width: 60px; height: 60px; font-size: 2.2rem; margin-bottom: 18px; border-radius: 16px; }
    .carousel { gap: 10px; }
    .carousel-btn { width: 46px; height: 46px; font-size: 1rem; }
    .results-list { grid-template-columns: 1fr; }
    .result-card { align-items: center; text-align: center; padding: 30px 25px; }
    .hero-highlights { gap: 10px; }
    .hero-highlight { padding: 10px 16px; font-size: 0.85rem; }
    .applications-cta p { font-size: 1.05rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-intro { font-size: 1.05rem; }
    .how-steps { grid-template-columns: 1fr; gap: 35px; }
    .final-cta-content { padding: 50px 28px; }
    .final-cta-content h2 { font-size: 1.9rem; }
    .final-cta-buttons { flex-direction: column; }
    .btn-whatsapp, .btn-cta-outline { justify-content: center; }
}

@media (max-width: 480px) {
    .section-header h2 { font-size: 1.7rem; }
    .solution-card { flex: 0 0 86%; padding: 28px 22px; }
    .solution-card h3 { font-size: 1.2rem; }
    .solution-icon { width: 54px; height: 54px; font-size: 2rem; margin-bottom: 16px; }
}

/* ===================== LOGIN (ACESSO RESTRITO) ===================== */
.auth-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0a192f 100%);
    position: relative;
    overflow: hidden;
}

.auth-body::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    border-radius: 50%;
    animation: pulseGlow 6s infinite alternate;
}

.auth-body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
    bottom: -250px;
    left: -200px;
    border-radius: 50%;
    animation: pulseGlow 7s infinite alternate-reverse;
}

.auth-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.auth-back {
    align-self: flex-start;
    color: var(--text-muted-dark);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.auth-back:hover { color: var(--secondary); }

.auth-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.6);
    text-align: center;
}

.auth-logo {
    height: 42px;
    width: auto;
    margin-bottom: 25px;
}

.auth-card h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--bg-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-sub {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auth-error {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.auth-error i { font-size: 1.05rem; }

.auth-form .form-group:last-of-type { margin-bottom: 28px; }

.auth-form .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
}

.auth-form .btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(0, 242, 254, 0.45);
}

.auth-foot {
    color: var(--text-muted-dark);
    font-size: 0.82rem;
    text-align: center;
}

/* ===================== PAINEL (PÓS-LOGIN) ===================== */
.painel-body {
    margin: 0;
    min-height: 100vh;
    background: #eef2f9;
    color: var(--text-main);
}

.painel-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6%;
    background: var(--bg-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.painel-brand img { height: 32px; width: auto; }

.painel-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.painel-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.painel-user-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.painel-user-mail { color: var(--text-muted-dark); font-size: 0.78rem; }

.painel-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.painel-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.painel-logout:hover { background: #ef4444; border-color: #ef4444; }

.painel-main { padding: 50px 6% 80px; max-width: 1200px; margin: 0 auto; }

.painel-welcome { margin-bottom: 45px; }

.painel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.painel-welcome h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.painel-welcome p { color: #64748b; font-size: 1.1rem; }

.painel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 26px;
}

.painel-mod {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    border: 1px solid #e7edf6;
    transition: var(--transition);
}

.painel-mod:not(.is-soon) { cursor: pointer; }

.painel-mod:not(.is-soon):hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.12);
    border-color: var(--primary);
}

.painel-mod.is-soon { opacity: 0.65; }

.painel-mod-soon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 20px;
}

.painel-mod-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,242,254,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.painel-mod h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.painel-mod p { color: #64748b; font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 600px) {
    .painel-user-info { display: none; }
    .painel-welcome h1 { font-size: 2rem; }
    .auth-card { padding: 38px 26px; }
}

/* ===================== PAINEL: MÓDULO PRODUTOS ===================== */
.padmin-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 22px;
    transition: var(--transition);
}
.padmin-back:hover { color: var(--primary); }

.padmin-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.padmin-head h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--bg-dark);
    letter-spacing: -1px;
}
.padmin-head p { color: #64748b; font-size: 1rem; margin-top: 4px; }

.padmin-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transition: var(--transition);
}
.padmin-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 242, 254, 0.4); }
.padmin-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.padmin-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 13px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.padmin-btn-ghost:hover { background: #e2e8f0; color: #334155; }
.padmin-head-actions { display: flex; gap: 12px; align-items: center; }

.padmin-toolbar { margin-bottom: 20px; }
.padmin-search {
    position: relative;
    max-width: 460px;
}
.padmin-search i {
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}
.padmin-search input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.padmin-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,102,255,0.08); }

.padmin-table-wrap {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    overflow-x: auto;
}
.padmin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.padmin-table thead th {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    padding: 16px 18px;
    border-bottom: 1px solid #eef2f9;
    background: #fafbfe;
}
.padmin-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
    color: #334155;
    vertical-align: middle;
}
.padmin-table tbody tr:last-child td { border-bottom: none; }
.padmin-table tbody tr:hover { background: #f8fafd; }

.padmin-thumb {
    width: 52px; height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
}
.padmin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.padmin-thumb-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #cbd5e1; font-size: 1.2rem;
}

.padmin-nome { font-weight: 600; color: var(--bg-dark); max-width: 380px; }
.padmin-cat {
    display: inline-block;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.18);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}
.padmin-muted { color: #cbd5e1; }

.padmin-links { display: flex; gap: 12px; font-size: 1.05rem; }
.padmin-links a, .padmin-links span { color: #94a3b8; transition: var(--transition); }
.padmin-links a:hover { color: var(--primary); transform: translateY(-1px); }

.padmin-acoes-col { width: 110px; }
.padmin-acoes { display: flex; gap: 8px; }
.padmin-icon-btn {
    width: 36px; height: 36px;
    border-radius: 9px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center;
}
.padmin-icon-btn.edit:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.padmin-icon-btn.del:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.padmin-icon-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.padmin-empty {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    padding: 60px 20px; color: #94a3b8;
}
.padmin-empty i { font-size: 2.5rem; }

/* Modal */
.padmin-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(6, 9, 18, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start; justify-content: center;
    padding: 40px 20px;
    z-index: 2000;
    overflow-y: auto;
}
.padmin-modal-overlay.active { display: flex; }
.padmin-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%; max-width: 620px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    animation: padminPop 0.25s ease;
}
@keyframes padminPop { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.padmin-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #eef2f9;
}
.padmin-modal-head h2 { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--bg-dark); }
.padmin-modal-close {
    background: #f1f5f9; border: none; cursor: pointer;
    width: 38px; height: 38px; border-radius: 10px;
    color: #64748b; font-size: 1.1rem; transition: var(--transition);
}
.padmin-modal-close:hover { background: #ef4444; color: #fff; }
.padmin-modal form { padding: 24px 28px 28px; }
.padmin-field { margin-bottom: 18px; }
.padmin-field label { display: block; font-size: 0.85rem; font-weight: 600; color: #475569; margin-bottom: 7px; }
.padmin-field input, .padmin-field select, .padmin-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background: #f8fafc;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}
.padmin-field input:focus, .padmin-field select:focus, .padmin-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0,102,255,0.08);
}
.padmin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.padmin-modal-foot {
    display: flex; justify-content: flex-end; gap: 12px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .padmin-head h1 { font-size: 1.9rem; }
    .padmin-grid2 { grid-template-columns: 1fr; }
}

/* Campos de upload (foto/PDF) */
.upload-tabs { display: flex; gap: 8px; margin-bottom: 10px; }
.upload-tab {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 9px 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    border-radius: 9px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.upload-tab:hover { border-color: var(--primary); color: var(--primary); }
.upload-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.upload-drop {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    padding: 26px 16px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}
.upload-drop:hover { border-color: var(--primary); background: rgba(0,102,255,0.04); color: var(--primary); }
.upload-drop i { font-size: 1.8rem; color: var(--primary); }
.upload-drop-text { font-size: 0.88rem; font-weight: 600; }
.upload-file { display: none; }

.upload-url { width: 100%; }

.upload-preview {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e7edf6;
    border-radius: 10px;
    padding: 10px 12px;
}
.upload-preview img {
    width: 64px; height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.upload-preview a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-weight: 600; font-size: 0.9rem;
    word-break: break-all;
}
.upload-preview a i { color: #ef4444; font-size: 1.2rem; }
.upload-current { font-size: 0.82rem; color: #64748b; font-weight: 600; }
.upload-clear {
    margin-left: auto;
    width: 30px; height: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: var(--transition);
    flex-shrink: 0;
}
.upload-clear:hover { background: #ef4444; color: #fff; border-color: #ef4444; }