/**
 * Cloud Data - Estilos Específicos da Página
 * Este arquivo contém estilos exclusivos para a página cloud-data.php
 */

/* Forçar centralização do hero */
.cloud-hero .container {
    max-width: 100% !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
}

/* Garantir centralização do wrapper interno */
.cloud-hero .container > div {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
}

/* Garantir centralização do mockup */
.cloud-hero .container > div > div:last-child {
    max-width: 1000px !important;
    margin: 0 auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

.cloud-hero {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.cloud-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.cloud-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud-particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 50%;
    animation: cloudFloat 12s ease-in-out infinite;
    filter: blur(2px);
}

.cloud-particle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cloud-particle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.cloud-particle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
}

.cloud-particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.3; }
    33% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    66% { transform: translateY(-15px) translateX(-20px) scale(0.9); opacity: 0.4; }
}

/* Centralização forçada do mockup */
.cloud-hero-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.cloud-mockup {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.1),
        0 15px 40px rgba(99, 102, 241, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    animation: floatCentered 6s ease-in-out infinite;
    transform-style: preserve-3d;
    display: block !important;
}

@keyframes floatCentered {
    0% { 
        transform: translateY(0) translateX(0) rotateY(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) translateX(0) rotateY(2deg) scale(1.01);
    }
    50% { 
        transform: translateY(-20px) translateX(0) rotateY(0deg) scale(1.02);
    }
    75% {
        transform: translateY(-15px) translateX(0) rotateY(-2deg) scale(1.01);
    }
    100% {
        transform: translateY(0) translateX(0) rotateY(0deg) scale(1);
    }
}

.cloud-mockup:hover {
    animation-play-state: paused;
}

.cloud-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #00d4ff, #8a2be2, #00d4ff);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
    z-index: 10;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Adicionar efeito de brilho pulsante */
.cloud-mockup::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(138, 43, 226, 0.4));
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

.mockup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    animation: rotate-glow 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cloud-interface {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cloud-interface::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(0, 212, 255, 0.03) 50%, transparent 52%);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Garantir que todos os elementos internos respeitem a largura */
.cloud-mockup * {
    box-sizing: border-box !important;
}

.cloud-mockup,
.cloud-interface,
.cloud-toolbar,
.windows-ribbon,
.cloud-nav-bar,
.file-list-header,
.file-list,
.windows-status-bar {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Remover qualquer deslocamento horizontal */
.cloud-mockup,
.mockup-glow,
.cloud-interface {
    transform: translateX(0) !important;
}

/* Centralização adicional para o wrapper do mockup */
[data-aos="fade-up"][data-aos-delay="200"] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.cloud-toolbar {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98) 0%, rgba(20, 20, 35, 0.98) 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cloud-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Windows Ribbon Style */
.windows-ribbon {
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.95) 0%, rgba(230, 230, 230, 0.95) 100%);
    padding: 6px 20px;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.ribbon-tabs {
    display: flex;
    gap: 2px;
}

.ribbon-tab {
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 3px 3px 0 0;
}

.ribbon-tab.active {
    background: rgba(0, 120, 215, 0.1);
    color: #0078d7;
    font-weight: 500;
}

.ribbon-tab:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

/* Windows Navigation Bar */
.cloud-nav-bar {
    background: rgba(250, 250, 250, 0.95);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.nav-controls {
    display: flex;
    gap: 4px;
}

.nav-btn {
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
    font-size: 0.75rem;
}

.nav-btn:hover {
    background: rgba(0, 120, 215, 0.1);
    border-color: #0078d7;
    color: #0078d7;
}

.address-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    font-size: 0.85rem;
}

.path-text {
    color: #333;
}

.path-separator {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.active-path {
    color: #0078d7;
    font-weight: 500;
}

.search-box-windows {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    width: 200px;
}

.search-box-windows i {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.search-box-windows input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    width: 100%;
}

/* Windows File List Header */
.file-list-header {
    background: rgba(245, 245, 245, 0.95);
    padding: 8px 20px;
    display: grid;
    grid-template-columns: 30px 32px 2fr 1.2fr 1fr 0.8fr;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(200, 200, 200, 0.4);
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.header-column {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.header-column i {
    font-size: 0.7rem;
    color: #0078d7;
}

.name-col {
    grid-column: span 1;
}

/* Windows Status Bar */
.windows-status-bar {
    background: rgba(245, 245, 245, 0.95);
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(200, 200, 200, 0.3);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.status-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.separator {
    color: #ccc;
}

.storage-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0078d7;
}

.storage-indicator i {
    font-size: 0.85rem;
}

.sync-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 15px;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.sync-indicator i {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cloud-buttons {
    display: flex;
    gap: 10px;
}

.cloud-btn {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cloud-btn.close { 
    background: linear-gradient(135deg, #ff5f57 0%, #e81123 100%);
}

.cloud-btn.close:hover {
    background: #e81123;
    box-shadow: 0 4px 15px rgba(232, 17, 35, 0.6);
    transform: scale(1.1);
}

.cloud-btn.minimize { 
    background: linear-gradient(135deg, #ffbd2e 0%, #ffa500 100%); 
}

.cloud-btn.maximize { 
    background: linear-gradient(135deg, #28ca41 0%, #20a033 100%); 
}

.nav-path {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.path-item {
    color: var(--primary-color);
    font-weight: 500;
}

.cloud-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cloud-search i {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cloud-search input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    width: 150px;
}

.storage-info-bar {
    background: rgba(138, 43, 226, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.storage-usage {
    flex: 1;
    max-width: 400px;
}

.usage-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #8a2be2 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    animation: pulse-bar 3s ease-in-out infinite;
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.usage-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.quick-actions-bar {
    display: flex;
    gap: 8px;
}

.quick-action-btn-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-action-btn-small:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ca3f;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px #27ca3f;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.file-list {
    margin-top: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background: white;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.file-item {
    background: white;
    padding: 8px 20px;
    margin-bottom: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: 30px 32px 2fr 1.2fr 1fr 0.8fr;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.file-item::before {
    display: none;
}

.file-item:hover {
    background: rgba(0, 120, 215, 0.08);
    transform: none;
    border-color: rgba(0, 120, 215, 0.1);
    box-shadow: none;
}

.file-item:active {
    background: rgba(0, 120, 215, 0.12);
}

.file-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #0078d7;
}

.file-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
}

.file-icon-wrapper.folder {
    background: transparent;
    color: #ffd700;
    box-shadow: none;
}

.file-icon-wrapper.pdf {
    background: transparent;
    color: #e53935;
    box-shadow: none;
}

.file-icon-wrapper.excel {
    background: transparent;
    color: #217346;
    box-shadow: none;
}

.file-icon-wrapper.video {
    background: transparent;
    color: #7c4dff;
    box-shadow: none;
}

.file-item:hover .file-icon-wrapper {
    transform: none;
}

.file-details {
    display: contents;
}

.file-name {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.file-meta {
    display: none;
}

.file-date,
.file-type,
.file-size {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.file-size {
    font-weight: 400;
    text-align: right;
}

.file-icon {
    color: var(--primary-color);
    width: 20px;
}

.pricing-comparison {
    position: relative;
    padding: 0;
    margin: 80px 0 60px;
    overflow: visible;
}

.pricing-comparison::before {
    display: none;
}

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

.comparison-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 45px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
}

.service-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 14px;
    padding: 12px;
    transition: all 0.3s ease;
}

.service-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.95);
    transition: all 0.3s ease;
}

.comparison-item:hover .service-logo {
    transform: translateY(-3px);
}

.comparison-item:hover .service-logo img {
    filter: brightness(1.05) saturate(1.1);
}

.comparison-item.highlight .service-logo {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    border: 2px solid transparent;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: -1;
}

.comparison-item:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.12);
}

.comparison-item:hover::before {
    opacity: 1;
}

.comparison-item.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
    transform: scale(1.04);
    position: relative;
    z-index: 2;
}

.comparison-item.highlight:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 212, 255, 0.45);
    border-color: rgba(0, 212, 255, 0.7);
}

.comparison-item.highlight::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: 18px;
    right: -8px;
    background: linear-gradient(135deg, #00d4ff, #8a2be2);
    color: white;
    padding: 5px 16px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.comparison-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.comparison-note {
    font-size: 0.82rem;
    color: #94A3B8;
    margin-bottom: 28px;
    opacity: 0.7;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.security-item {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.4), rgba(10, 10, 20, 0.2));
    padding: 24px 28px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.security-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.security-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 212, 255, 0.15);
}

.security-item:hover::before {
    left: 100%;
}

.security-icon {
    color: var(--primary-color);
    font-size: 1.65rem;
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    background: rgba(0, 212, 255, 0.12);
    transform: scale(1.05);
}

.security-text h4 {
    color: #0F172A;
    margin-bottom: 5px;
}

.security-text p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

/* Melhorias nos cards de planos */
.solution-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 42px 36px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
}

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

.solution-header {
    margin-bottom: 32px;
    text-align: center;
}

.solution-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.solution-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.solution-price .currency {
    font-size: 1.3rem;
    font-weight: 600;
    color: #94A3B8;
}

.solution-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.solution-price .period {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 500;
}

.solution-features {
    flex: 1;
    margin-bottom: 32px;
}

.solution-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.solution-features .feature-item:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.solution-features .feature-item i {
    font-size: 0.9rem;
    margin-top: 4px;
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.5));
}

.solution-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border: 1px solid transparent;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.solution-cta:hover {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    color: white;
}

.solution-cta i {
    font-size: 0.95rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-cta:hover i {
    transform: translateX(6px);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(6, 182, 212, 0.08), 
        rgba(14, 165, 233, 0.08),
        transparent);
    transition: left 0.8s ease;
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(6, 182, 212, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card.featured {
    background: linear-gradient(135deg, 
        rgba(6, 78, 59, 0.4), 
        rgba(5, 46, 22, 0.3));
    border: 2px solid rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(16, 185, 129, 0.2),
                inset 0 1px 0 rgba(16, 185, 129, 0.2);
}

.solution-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 120px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.7);
}

.solution-card.featured .solution-header h3 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card.featured .solution-price .amount {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card.featured .solution-cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25));
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.solution-card.featured .solution-cta:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(5, 150, 105, 0.4));
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5),
                0 0 60px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.8);
}

.solution-card.featured::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(16, 185, 129, 0.15), 
        rgba(34, 197, 94, 0.15),
        transparent);
}

.featured-badge {
    position: absolute;
    top: 18px;
    right: -30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 7px 38px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    transform: rotate(45deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hero-features .feature-item {
    background: rgba(0, 212, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

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

/* Padronização de cores dos cards da página */
.benefit-card,
.feature-card,
.cloud-contact .contact-item,
.cloud-contact .contact-form {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
}

.benefit-card:hover,
.feature-card:hover,
.cloud-contact .contact-item:hover {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

.benefit-card > div:first-child {
    background: transparent !important;
}

.feature-card > div:first-child {
    background: var(--primary-subtle) !important;
}

.cloud-contact .contact-icon {
    background: var(--primary-lighter) !important;
    border: 1px solid var(--border-color) !important;
}

.cloud-contact .contact-icon i {
    color: var(--primary-color) !important;
}

.benefit-card h3,
.feature-card h4 {
    color: var(--text-primary) !important;
}

.benefit-card p,
.feature-card p {
    color: var(--text-secondary) !important;
}

.benefit-card i,
.feature-card i {
    color: var(--primary-color) !important;
}

/* Melhorias no formulário */
.cloud-contact .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.cloud-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cloud-contact .contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.cloud-contact .contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cloud-contact .contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.cloud-contact .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cloud-contact .contact-details h4 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.cloud-contact .contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.cloud-contact .contact-form {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

.cloud-contact .form-group input,
.cloud-contact .form-group select,
.cloud-contact .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cloud-contact .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cloud-contact .form-group input:focus,
.cloud-contact .form-group select:focus,
.cloud-contact .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-primary);
}

.cloud-contact .form-group label {
    position: absolute;
    top: 14px;
    left: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--bg-secondary);
    padding: 0 5px;
}

.cloud-contact .form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cloud-contact .form-group select + label {
    display: none;
}

.cloud-contact .form-group input:focus + label,
.cloud-contact .form-group input:not(:placeholder-shown) + label,
.cloud-contact .form-group textarea:focus + label,
.cloud-contact .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.cloud-contact button[type="submit"] {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), #8a2be2);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cloud-contact button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-primary);
}

.contact-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.contact-icon {
    background: rgba(0, 212, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cloud-hero {
        padding: 100px 0 60px;
    }
    
    .comparison-item.highlight {
        transform: scale(1);
    }

    .cloud-mockup {
        margin: 40px auto 0 auto !important;
        border-radius: 12px;
        max-width: 100% !important;
    }

    .cloud-hero .container {
        padding: 0 15px !important;
    }

    .cloud-hero .container > div > div:last-child {
        padding: 0 !important;
    }

    .file-list-header {
        grid-template-columns: 30px 32px 1fr 80px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .file-list-header > div:nth-child(4),
    .file-list-header > div:nth-child(5) {
        display: none;
    }

    .file-item {
        grid-template-columns: 30px 32px 1fr 80px;
        padding: 8px 10px;
    }

    .file-date,
    .file-type {
        display: none;
    }

    .file-size {
        text-align: right;
        font-size: 0.7rem;
    }

    .windows-ribbon,
    .nav-controls {
        display: none;
    }

    .cloud-nav-bar {
        flex-wrap: wrap;
        padding: 6px 10px;
    }

    .address-bar {
        order: 2;
        width: 100%;
        margin-top: 8px;
        font-size: 0.75rem;
    }

    .search-box-windows {
        width: 100%;
        order: 3;
        margin-top: 8px;
    }
    
    .cloud-contact .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Estilos adicionais para centralização em telas maiores */
@media (min-width: 769px) {
    .cloud-mockup {
        max-width: 1000px !important;
        margin: 0 auto !important;
    }

    .cloud-hero .container > div > div:last-child {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

@media (min-width: 1024px) {
    .cloud-hero .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1440px) {
    .cloud-hero .container {
        max-width: 1600px !important;
    }
    
    .cloud-mockup {
        max-width: 1100px !important;
    }
}

/* Responsividade para Planos */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .solution-card.modern {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .solution-card.modern.featured {
        transform: scale(1) !important;
        margin: 0 !important;
    }
}
