/* Pages Specific Styles */

/* ===== VARIÁVEIS (herdam do style.css) ===== */

/* ===== PAGE HERO PADRÃO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--light);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb span {
    color: var(--gray);
}

/* ===== SERVICE CONTENT ===== */
.service-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.content-main h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-main h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* ===== FEATURES LIST ===== */
.features-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
    border: 2px solid transparent;
}

.feature-item:nth-child(1) { animation-delay: 0.4s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary);
    background: var(--white);
}

.feature-item i {
    font-size: 30px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary);
}

.feature-item h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    animation: none;
}

/* ===== TECH GRID ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.tech-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.tech-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-item:nth-child(1) { transition-delay: 0.1s; }
.tech-item:nth-child(2) { transition-delay: 0.2s; }
.tech-item:nth-child(3) { transition-delay: 0.3s; }
.tech-item:nth-child(4) { transition-delay: 0.4s; }
.tech-item:nth-child(5) { transition-delay: 0.5s; }
.tech-item:nth-child(6) { transition-delay: 0.6s; }

.tech-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.tech-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s;
}

.tech-item:hover i {
    color: var(--white);
    transform: rotateY(360deg);
}

.tech-item span {
    font-weight: 600;
    transition: all 0.3s;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out forwards;
}

.sidebar-box:nth-child(1) { animation-delay: 0.5s; }
.sidebar-box:nth-child(2) { animation-delay: 0.6s; }
.sidebar-box:nth-child(3) { animation-delay: 0.7s; }

.sidebar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s;
}

.sidebar-box ul li:hover {
    padding-left: 35px;
    color: var(--primary);
}

.sidebar-box ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    transition: all 0.3s;
}

.sidebar-box ul li:hover:before {
    transform: scale(1.2);
}

/* ===== CTA BOX ===== */
.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    color: var(--white);
}

.cta-box p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ===== RELATED SERVICES ===== */
.related-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-services a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.related-services a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 38, 143, 0.2), transparent);
    transition: all 0.5s;
}

.related-services a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.related-services a:hover::before {
    left: 100%;
}

.related-services i {
    font-size: 24px;
    color: var(--secondary);
    transition: all 0.3s;
}

.related-services a:hover i {
    color: var(--white);
    transform: scale(1.2);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 44, 142, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(4) { animation-delay: 0.5s; }
.process-step:nth-child(5) { animation-delay: 0.6s; }

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.process-step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(102, 44, 142, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.process-step:hover h3 {
    color: var(--primary);
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== SERVIÇOS ESPECÍFICOS ===== */

/* SEO Process */
.seo-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.seo-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s;
}

.seo-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
    color: var(--white);
}

.seo-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* Results Section */
.results-section {
    background: var(--light);
    padding: 80px 0;
}

.results-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.result-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 10px;
}

/* Platform List */
.platform-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s;
}

.platform-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.platform-item i {
    font-size: 24px;
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-box h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.9;
}

/* Systems Grid */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.system-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.system-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.system-card i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.system-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.resource-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s;
}

.resource-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.resource-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* App Process */
.app-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.app-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.app-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.app-step .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.app-step .step-icon i {
    font-size: 36px;
    color: var(--white);
}

/* ===== PÁGINAS ESPECÍFICAS ===== */

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-intro h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.mvv-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
}

.mvv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mvv-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.timeline-section {
    background: var(--light);
    padding: 80px 0;
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-year {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.values-section {
    background: var(--light);
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.value-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 44, 142, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-message {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray);
}

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

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.info-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 0;
}

.info-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.faq-section {
    background: var(--light);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    background: var(--white);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-list summary i {
    color: var(--secondary);
}

.faq-list details[open] summary {
    margin-bottom: 15px;
    color: var(--primary);
}

.faq-list details p {
    color: var(--gray);
    line-height: 1.8;
}

/* Careers Page */
.careers-content {
    padding: 80px 0;
}

.careers-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.careers-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary);
}

.careers-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.career-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Email Marketing */
.campaign-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.campaign-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.campaign-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.campaign-card i {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.email-process {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.email-process:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    line-height: 80px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid,
    .app-process {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .results-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seo-process,
    .systems-grid,
    .resources-grid,
    .campaign-types {
        grid-template-columns: 1fr;
    }
    
    .email-process {
        flex-direction: column;
        gap: 30px;
    }
    
    .email-process:before {
        display: none;
    }
    
    /* About Page */
    .about-hero h1 {
        font-size: 32px;
    }
    
    .mvv-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        padding: 20px;
        text-align: left;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-card-header {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== SOBRE.HTML - CTA com fundo dinâmico ===== */
.about-cta.dynamic-bg {
    position: relative;
    background: linear-gradient(135deg, #7B2CBF 0%, #E91E63 100%);
    overflow: hidden;
    padding: 80px 0;
}

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

.about-cta .cta-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.about-cta .btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.about-cta .btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShapes 20s linear infinite;
}

.bg-shapes .shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shapes .shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.bg-shapes .shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ===== LOJAS.HTML - Tags dinâmicas de integração ===== */
.integrations-section {
    margin: 40px 0;
}

.integration-category {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #7B2CBF;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header i {
    font-size: 2rem;
    color: #7B2CBF;
}

.category-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.integration-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.integration-tag:hover::before {
    left: 100%;
}

.marketplace-tag {
    background: linear-gradient(135deg, #FF6B35, #FF8E3C);
    color: white;
}

.payment-tag {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.delivery-tag {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
}

.integration-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== SISTEMAS.HTML - Metodologia interativa ===== */
.methodology-section {
    margin: 40px 0;
}

.methodology-intro {
    text-align: center;
    margin-bottom: 50px;
}

.methodology-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.icon-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.method-content {
    flex: 1;
}

.method-content h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.5rem;
}

.method-content p {
    margin: 0 0 15px 0;
    color: #666;
}

.method-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(123, 44, 191, 0.1);
    color: #7B2CBF;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* ===== APPS.HTML - Cards interativos e UX ===== */
.app-types-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.app-type-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.app-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7B2CBF, #E91E63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.app-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.card-header i {
    font-size: 3rem;
    color: #7B2CBF;
    z-index: 2;
}

.loading-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #7B2CBF;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-type-card:hover .loading-ring {
    opacity: 1;
}

.card-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.primary { background: rgba(123, 44, 191, 0.1); color: #7B2CBF; }
.tag.secondary { background: rgba(108, 117, 125, 0.1); color: #6c757d; }
.tag.success { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.tag.warning { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.tag.info { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }

.advanced-features-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #7B2CBF;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pulse-effect {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

.feature-status {
    margin-top: 10px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

/* Apps Showcase Interativo */
.app-showcase-interactive {
    background: #f8f9fa;
    padding: 80px 0;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    color: white;
    transform: translateY(-3px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.phone-mockup {
    width: 300px;
    height: 500px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.screen-loader {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-dots {
    display: flex;
    gap: 5px;
}

.loader-dots::before,
.loader-dots::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #7B2CBF;
    border-radius: 50%;
    animation: dotPulse 1.4s infinite ease-in-out;
}

.loader-dots::before { animation-delay: -0.32s; }
.loader-dots::after { animation-delay: 0.32s; }

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

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

/* ===== EMAIL-MARKETING.HTML - Métricas interativas ===== */
.metrics-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.metric-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7B2CBF, #E91E63);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.metric-loader {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.progress-ring {
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: rgba(123, 44, 191, 0.2);
    stroke-width: 3;
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
    animation: progressFill 3s ease-out forwards;
}

.metric-value {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.metric-value .value {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.trend {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.trend.up {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.trend.down {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@keyframes progressFill {
    to { stroke-dashoffset: 0; }
}

/* Sidebar melhorado para email marketing */
.services-list-interactive .service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.services-list-interactive .service-item:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateX(5px);
}

.services-list-interactive .service-item i {
    color: #7B2CBF;
    font-size: 1.2rem;
}

.service-status .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

/* CTA Animado */
.animated-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.cta-animation i {
    font-size: 3rem;
    color: #7B2CBF;
    z-index: 2;
}

.send-effect {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    animation: sendPulse 2s infinite;
    opacity: 0.5;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

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

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

@keyframes sendPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Estatísticas modernas */
.email-stats-interactive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-orbit {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
    opacity: 0.3;
}

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

/* Ferramentas interativas */
.tools-interactive {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2CBF;
}

.tool-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #28a745;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
}

.tool-rating {
    display: flex;
    gap: 3px;
    color: #ffc107;
}

/* ===== HOSPEDAGEM.HTML - Cards de segurança ===== */
.security-technologies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.security-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.3);
}

.security-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.security-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.security-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #28a745;
}

.status-text {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.security-features {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.security-footer {
    margin-top: 20px;
}

.security-level {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 2s ease;
    animation: fillLevel 3s ease-out forwards;
}

.level-percent {
    font-weight: bold;
    color: #28a745;
}

@keyframes fillLevel {
    from { width: 0%; }
}

/* ===== SUPORTE.HTML - Página refatorada completa ===== */
.support-channels-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.channel-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.channel-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7B2CBF, #E91E63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.channel-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.channel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.channel-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.signal-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.signal-waves .wave {
    position: absolute;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    opacity: 0;
    animation: waveAnimation 2s infinite;
}

.signal-waves .wave:nth-child(1) { width: 80px; height: 80px; margin: -40px 0 0 -40px; }
.signal-waves .wave:nth-child(2) { width: 100px; height: 100px; margin: -50px 0 0 -50px; animation-delay: 0.5s; }
.signal-waves .wave:nth-child(3) { width: 120px; height: 120px; margin: -60px 0 0 -60px; animation-delay: 1s; }

.whatsapp-animation .message-bubble {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #25d366;
    border-radius: 50%;
    animation: messagePulse 2s infinite;
}

.email-animation .envelope-fly {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #7B2CBF;
    animation: flyIn 3s infinite;
}

.remote-animation .screen-share {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 12px;
    background: #ffc107;
    border-radius: 2px;
    animation: screenBlink 2s infinite;
}

.channel-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online { background: #28a745; }
.status-dot.premium { background: #ffc107; }

.channel-tags {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.support-types-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.support-type-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-left: 5px solid #7B2CBF;
}

.support-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.type-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3), transparent);
    border-radius: 50%;
    animation: glow 3s infinite;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateX(5px);
}

.service-item i {
    color: #7B2CBF;
    width: 20px;
}

.type-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

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

.availability-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.availability-indicator.active { background: #28a745; }
.availability-indicator.partial { background: #ffc107; }
.availability-indicator.scheduled { background: #6c757d; }

/* SLA Interativo */
.sla-interactive {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.sla-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sla-metric {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.sla-table-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    color: white;
    padding: 20px;
    text-align: center;
}

.sla-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
    transition: all 0.3s ease;
}

.sla-row:hover {
    background: rgba(123, 44, 191, 0.05);
}

.priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.priority-badge.critical { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.priority-badge.high { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.priority-badge.medium { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }
.priority-badge.low { background: rgba(40, 167, 69, 0.1); color: #28a745; }

/* Sidebar melhorado para suporte */
.services-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-check-item:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateX(5px);
}

.service-check-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-top: 2px;
}

.emergency-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 193, 7, 0.1));
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.emergency-icon {
    position: relative;
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.emergency-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #dc3545;
    border-radius: 50%;
    animation: emergencyPulse 1.5s infinite;
    opacity: 0.5;
}

.emergency-btn {
    background: linear-gradient(135deg, #dc3545, #ffc107);
    border: none;
    animation: emergencyGlow 2s infinite;
}

.emergency-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #dc3545;
}

.schedule-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-item.active {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

.schedule-item.partial {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.schedule-item.emergency {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.schedule-status {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.schedule-status.online { background: #28a745; color: white; }
.schedule-status.partial { background: #ffc107; color: white; }
.schedule-status.emergency { background: #dc3545; color: white; }

/* FAQ Interativo */
.faq-interactive {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
}

.faq-item summary i {
    color: #7B2CBF;
}

.faq-answer {
    padding: 0 15px 15px;
    color: #666;
}

.faq-tags {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.faq-tags .tag {
    background: rgba(123, 44, 191, 0.1);
    color: #7B2CBF;
}

/* Stats modernos para suporte */
.support-stats-modern {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-box-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7B2CBF, #E91E63);
}

.stat-box-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7B2CBF, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.stat-animation {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #7B2CBF;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.3;
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animações gerais */
@keyframes waveAnimation {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes messagePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes flyIn {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(45deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes screenBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes emergencyPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes emergencyGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 53, 69, 0.3); }
    50% { box-shadow: 0 0 30px rgba(220, 53, 69, 0.6); }
}

/* Responsividade */
@media (max-width: 768px) {
    .integrations-section,
    .methodology-section,
    .app-types-interactive,
    .metrics-interactive,
    .security-technologies,
    .support-channels-interactive,
    .support-types-modern {
        grid-template-columns: 1fr;
    }
    
    .showcase-item {
        flex-direction: column;
        text-align: center;
    }
    
    .sla-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .methodology-item {
        flex-direction: column;
        text-align: center;
    }
}