/* styles.css - E-Solution Estilos Globais */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(45deg, #0f172a, #1e293b);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 110px;
}

nav.scrolled {
    padding: 0.7rem 5%;
    background: rgba(15, 23, 42, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
    /* Não encolhe */
    display: flex;
    align-items: center;
}

.logo img {
    width: 200px;
    /* Largura fixa */
    height: 100px;
    max-width: 200px;
    /* Limita o tamanho máximo */
    object-fit: contain;

}


@media (max-width: 768px) {
    .logo img {
        height: 750px !important; /* Reduzido de 80px para 50px */
        width: auto !important;
        max-width: 150px !important;
    }
    
    nav {
        height: 80px; /* Reduzido de 110px */
        padding: 0.5rem 5%;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px !important; /* Ainda menor para telas muito pequenas */
        max-width: 120px !important;
    }
    
    nav {
        height: 70px;
        padding: 0.5rem 3%;
    }
    
    .nav-container {
        padding: 0;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    height: 70%;
}

/* Buttons */
.cta-button {
    padding: 0.7rem 1.8rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(99, 102, 241, 0.5);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    padding: 120px 5% 80px;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.hero-visual-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-visual-card:hover::before {
    opacity: 0.3;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: bounce 3s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: -30px;
    left: 30%;
    animation-delay: 2s;
}

/* Hero About Section */
.hero-about {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    margin-top: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
}

.hero-about-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.company-name {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.company-tagline {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-about-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.expertise-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
}

.expertise-icon {
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 80px 5%;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Para dispositivos móveis */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        max-width: 700px;
        gap: 1.8rem;
    }
}

.feature-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* About Content Section */
.about-content {
    padding: 80px 5%;
    position: relative;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Mission Values Section */
.mission-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Adicione esta media query para mobile */
@media (max-width: 768px) {
    .mission-values {
        grid-template-columns: 1fr; /* 1 coluna em dispositivos móveis */
    }
}

.value-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.value-card:hover::after {
    width: 80%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.partner-logo:hover::before {
    width: 150%;
    height: 150%;
}

.partner-logo span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 60px 5%;
    background: rgba(30, 41, 59, 0.3);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.highlight-text {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Feature Link */
.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-link:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 5%;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 80px 5%;
    background: rgba(30, 41, 59, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-height: 100px;
}

.partner-logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 80px 5%;
    background: rgba(30, 41, 59, 0.3);
}

.blog-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-preview-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-btn {
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-container::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 20s linear infinite;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.cta-container p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

/* Footer */
footer {
    padding: 60px 5% 30px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    /* Reduzido de 1.5rem para 0.8rem */
    color: var(--text-light);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    color: white;
}

.social-icon svg {
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(10px) translateX(-10px);
    }

    75% {
        transform: translateY(-10px) translateX(20px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ripple Effect */
button,
.btn-primary,
.btn-secondary,
.cta-button,
.btn-white {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.mobile-active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        box-shadow: none;
        background: rgba(99, 102, 241, 0.05);
        border: 1px solid rgba(99, 102, 241, 0.1);
        display: none;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-button {
        width: 100%;
        margin-top: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-name {
        font-size: 2.5rem;
    }

    .company-tagline {
        font-size: 1.3rem;
    }

    .hero-about-visual {
        flex-direction: column;
        align-items: center;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .company-name {
        font-size: 2rem;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-top: 80px;
}

.banner-container {
    display: flex;
    width: 300%;
    height: 100%;
    /* Animação CSS desabilitada - controlada por JavaScript */
    animation: none !important;
    transform: translateX(0);
    will-change: transform;
    /* Transição suave para animação JavaScript */
    transition: transform 0.8s ease-in-out;
}

.banner-slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagens do Banner - Substitua pelos caminhos corretos */
.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../img/banner1.jpg') center center / cover no-repeat;
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('/assets/img/banner2.png') center center / cover no-repeat;
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('/assets/img/banner3.jpg') center center / cover no-repeat;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.banner-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-banner {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-banner.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-banner.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-banner.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-banner.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

@keyframes autoScroll {
    /* Slide 1 PARADO: 0s - 5s (30.3% de 16.5s) */
    0%, 30.3% {
        transform: translateX(0);
    }

    /* Slide 2 aparece: 5.5s (33.33%) */
    33.33%, 63.63% {
        transform: translateX(-33.333%);
    }

    /* Slide 3 aparece: 11s (66.67%) */
    66.67%, 96.97% {
        transform: translateX(-66.666%);
    }

    /* Volta para Slide 1: 16.5s */
    100% {
        transform: translateX(0);
    }
}

.hero-banner:hover .banner-container {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
        margin-top: 70px;
        min-height: 500px;
    }

    .banner-slide {
        background-size: cover !important;
        background-position: center !important;
    }

    /* Forçar imagens de fundo no mobile */
    .slide-1 {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('../img/banner1.jpg') center/cover no-repeat !important;
    }

    .slide-2 {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('/assets/img/banner2.jpg') center/cover no-repeat !important;
    }

    .slide-3 {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('/assets/img/banner3.jpg') center/cover no-repeat !important;
    }

    .banner-content {
        padding: 0 1.5rem;
    }

    .banner-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .banner-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-banner {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }

    .banner-content h1 {
        font-size: 1.6rem !important;
    }

    .banner-content p {
        font-size: 0.9rem !important;
    }

    .btn-banner {
        max-width: 240px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    /* Espaçamento menor entre os itens */
}

.contact-item:first-child {
    margin-top: 0.2rem;
    /* Espaço pequeno depois do título */
}

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: var(--text-muted);
}

.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.contact-hero-content {
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-main {
    padding: 80px 5%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: normal;
    text-indent: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Corrigir alinhamento específico para campos de email e telefone */
.form-group input[type="email"],
.form-group input[type="tel"] {
    text-align: left !important;
    padding-left: 1rem !important;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mensagens de Feedback do Formulário */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 1px solid #059669;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 1px solid #dc2626;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 0;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.map-section {
    margin-top: 4rem;
}

.map-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.office-hours {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.office-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-light);
    font-weight: 500;
}

.hours-time {
    color: var(--text-muted);
}

/* Responsivo */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 100px 5% 40px;
    }
}

@media (max-width: 480px) {

    .contact-form-section,
    .info-card {
        padding: 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* Estilos específicos da página cibersegurança */
.cybersecurity-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5% 100px;
    position: relative;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    text-align: center;
    overflow: hidden;
}

.cybersecurity-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.cybersecurity-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cybersecurity-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cybersecurity-services {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.cybersecurity-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cybersecurity-partners {
    padding: 60px 5%;
    background: rgba(30, 41, 59, 0.3);
}

.cybersecurity-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.cybersecurity-partner-logo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-light);
}

.cybersecurity-partner-logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.cybersecurity-cta {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.cybersecurity-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cybersecurity-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsivo específico */
@media (max-width: 768px) {
    .cybersecurity-services-grid {
        grid-template-columns: 1fr;
    }

    .cybersecurity-partners-grid {
        gap: 1.5rem;
    }

    .cybersecurity-partner-logo {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Estilos específicos da página Microsoft */
.microsoft-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 5% 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(16, 124, 16, 0.1) 100%);
    text-align: center;
}

.microsoft-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0078d4, #107c10);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.microsoft-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.microsoft-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.microsoft-products {
    padding: 80px 5%;
}

.microsoft-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(5deg) scale(1.1);
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.microsoft-benefits {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.05) 0%, rgba(16, 124, 16, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.benefit-card:hover::after {
    width: 80%;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Microsoft Page - Image Styles */
.microsoft-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
    filter: brightness(0.7);
}

.cybersecurity-hero > div {
    position: relative;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.03));
    padding: 1rem;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}

.benefits-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    z-index: 0;
    filter: grayscale(50%);
}

.microsoft-benefits > * {
    position: relative;
    z-index: 1;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
    filter: brightness(0.6);
}

.cybersecurity-cta > * {
    position: relative;
    z-index: 1;
}

/* Responsividade das imagens */
@media (max-width: 768px) {
    .product-image {
        height: 180px;
    }

    .microsoft-hero-image,
    .benefits-bg-image,
    .cta-image {
        opacity: 0.1;
    }
}

.microsoft-cta {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 120, 215, 0.1) 0%, transparent 70%);
}

.microsoft-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0078d4, #107c10);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.microsoft-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsivo específico */
@media (max-width: 768px) {
    .microsoft-products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 2rem 1.5rem;
    }
}

/* Partners Carousel Styles - ATUALIZADAS COM SUPORTE A IMAGENS */
/* Substitua a seção Partners Carousel no seu CSS por esta versão corrigida */

/* Partners Carousel Styles - CORRIGIDAS */
/* CSS - Substitua a seção Partners Carousel por esta versão */
/* CSS - Substitua a seção Partners Carousel por esta versão */

.carousel-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 15px;
}

.partners-carousel {
    display: flex;
    gap: 2rem;
    animation: autoScroll 30s infinite linear;
    width: max-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 200px;
    height: 120px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
}

.partner-logo:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

.partner-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.partner-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Media queries responsivos */
@media (max-width: 768px) {
    .partners-carousel {
        animation-duration: 35s; /* Mais lento em mobile */
    }
    
    .partner-logo {
        flex: 0 0 160px;
        height: 100px;
        padding: 15px;
    }
    
    .partners-carousel {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-carousel {
        animation-duration: 40s; /* Ainda mais lento */
    }
    
    .partner-logo {
        flex: 0 0 140px;
        height: 80px;
        padding: 10px;
    }
    
    .partner-logo span,
    .partner-logo .logo-text {
        font-size: 0.9rem;
    }
}

/* Adicione estas regras CSS ao seu arquivo style.css para corrigir o dropdown mobile */

/* Dropdown Mobile - Correções */
/* Desktop - Esconder a seta do dropdown */
@media (min-width: 969px) {
    .dropdown-arrow {
        display: none !important;
    }
}

@media (max-width: 968px) {
    .dropdown-arrow {
        display: inline-block;
        font-size: 0.8rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        margin-left: auto;
        padding-left: 1rem;
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    nav {
        height: 60px; /* Reduzido ainda mais */
        padding: 0.3rem 5%;
    }
    
    .logo img {
        height: 45px !important;
        width: auto !important;
        max-width: 150px !important;
    }
    
    /* Menu mobile sem espaçamento extra */
    .nav-links {
        position: fixed;
        top: 60px; /* Mesmo valor da altura do nav */
        left: -100%;
        right: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 0; /* Remove padding superior */
        gap: 0;
        justify-content: flex-start;
        align-items: flex-start;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.mobile-active {
        left: 0;
    }
    
    /* Primeiro item do menu sem margem superior */
    .nav-links .nav-item:first-child {
        margin-top: 0;
        padding-top: 1rem; /* Pequeno padding apenas no primeiro */
    }
    
    /* Todos os itens do menu */
    .nav-item {
        width: 100%;
        padding: 1rem 2rem; /* Padding lateral para espaçamento interno */
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        margin: 0; /* Remove qualquer margem */
    }
    
    /* Dropdown específico */
    .nav-item-dropdown {
        width: 100%;
        position: relative;
    }
    
    .nav-item-dropdown .nav-item {
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Esconder o ::after já que usamos o span */
    .nav-item-dropdown .nav-item::after {
        display: none;
    }
    
    /* Seta do dropdown */
    .dropdown-arrow {
        font-size: 0.8rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        margin-left: auto;
        padding-left: 1rem;
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Dropdown menu */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin: 0; /* Remove margens */
        padding: 0;
        box-shadow: none;
        background: rgba(99, 102, 241, 0.05);
        border: 1px solid rgba(99, 102, 241, 0.1);
        border-radius: 8px;
        display: none;
        width: calc(100% - 4rem); /* Respeita o padding lateral */
        margin-left: 2rem;
        margin-right: 2rem;
        overflow: hidden;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        background: transparent;
        color: var(--text-light);
        display: block;
        width: 100%;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(99, 102, 241, 0.15);
        color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .dropdown-menu a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    nav {
        height: 55px;
        padding: 0.3rem 3%;
    }
    
    .logo img {
        height: 40px !important;
        max-width: 120px !important;
    }
    
    .nav-links {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .nav-item {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-item-dropdown .nav-item {
        padding: 0.8rem 1.5rem;
    }
    
    .dropdown-menu {
        width: calc(100% - 3rem);
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

/* CSS para Blog - Adicione ao seu arquivo style.css */
/* CSS para Blog - Adicione ao seu arquivo style.css */

/* Blog Posts Section */
.blog-posts {
    padding: 80px 5%;
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Post Card */
.blog-post-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

/* Post Image */
.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

/* Category Badge */
.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Content */
.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-date {
    color: var(--primary-color);
}

.post-reading-time {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Post Title */
.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

/* Post Excerpt */
.post-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more-btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn.next {
    padding: 0.75rem 1.5rem;
    min-width: auto;
}

/* Newsletter Section Styles */
.cybersecurity-cta input[type="email"] {
    background: rgba(255, 255, 255, 0.9);
    color: var(--darker-bg);
}

.cybersecurity-cta input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
    }
    
    .cybersecurity-cta > div {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cybersecurity-cta input[type="email"] {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .blog-posts {
        padding: 60px 3%;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-image {
        height: 150px;
    }
}

/* Animation on Scroll */
.blog-post-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.blog-post-card:nth-child(1) { animation-delay: 0.1s; }
.blog-post-card:nth-child(2) { animation-delay: 0.2s; }
.blog-post-card:nth-child(3) { animation-delay: 0.3s; }
.blog-post-card:nth-child(4) { animation-delay: 0.4s; }


/* CSS Adicional para Área Administrativa - Adicione ao seu styles.css */

/* Estilo especial para o link da Área Administrativa */
.nav-item.admin-link {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.nav-item.admin-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.nav-item.admin-link svg {
    vertical-align: middle;
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.nav-item.admin-link:hover svg {
    transform: rotate(10deg);
}

.nav-item.admin-link::after {
    display: none; /* Remove o underline padrão */
}

/* Mobile adjustments */
@media (max-width: 968px) {
    .nav-item.admin-link {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }
    
    .nav-item.admin-link svg {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .nav-item.admin-link {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
}

 /* Estilos específicos para a página de login */
        .login-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 150px 5% 80px;
            position: relative;
        }

        .login-container {
            max-width: 500px;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }

        .login-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .login-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .login-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .login-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .login-box {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .login-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .input-wrapper {
            position: relative;
        }

        .login-box .input-icon {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
            pointer-events: none;
            z-index: 1;
        }

        .toggle-password {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .toggle-password:hover {
            color: var(--primary-color);
        }

        .toggle-password svg {
            width: 20px;
            height: 20px;
        }

        .login-box .form-group input {
            width: 100%;
            padding: 0.9rem 3.5rem 0.9rem 3.5rem !important;
            background: rgba(15, 23, 42, 0.5);
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
            background: rgba(15, 23, 42, 0.7);
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--primary-color);
        }

        .checkbox-wrapper label {
            color: var(--text-light);
            font-size: 0.9rem;
            cursor: pointer;
            margin: 0;
            font-weight: 400;
        }

        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: var(--secondary-color);
        }

        .login-button {
            width: 100%;
            padding: 1rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            position: relative;
            overflow: hidden;
        }

        .login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .login-button:active {
            transform: translateY(-1px);
        }

        .login-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Loading animation */
        .login-button.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .login-button.loading span {
            opacity: 0;
        }

        /* Alert messages */
        .alert {
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .alert.show {
            display: block;
        }

        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        .alert-success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .back-to-site {
            text-align: center;
            margin-top: 2rem;
        }

        .back-to-site a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .back-to-site a:hover {
            color: var(--primary-color);
        }

        /* Security badge */
        .security-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .security-badge svg {
            color: var(--primary-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .login-hero {
                padding: 120px 5% 60px;
            }

            .login-box {
                padding: 2rem;
            }

            .login-header h1 {
                font-size: 2rem;
            }

            .remember-forgot {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .login-box {
                padding: 1.5rem;
            }

            .form-group input {
                padding: 0.8rem 1rem 0.8rem 2.8rem;
            }
        }

        .admin-container {
            min-height: 100vh;
            padding: 120px 5% 80px;
        }

        .header {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header h1 {
            font-size: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .user-info {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .logout-btn {
            padding: 0.7rem 1.5rem;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: rgba(239, 68, 68, 0.2);
            transform: translateY(-2px);
        }

        .editor-section {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .editor-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
        }

        .editor-section h2 {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .form-group input[type="text"],
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            background: rgba(15, 23, 42, 0.5);
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group textarea {
            min-height: 200px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
        }

        .form-group input[type="file"] {
            color: var(--text-light);
            padding: 0.5rem 0;
        }

        .image-preview {
            max-width: 300px;
            max-height: 200px;
            margin: 1rem 0;
            border-radius: 10px;
            display: none;
        }

        .button-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            padding: 0.9rem 2rem;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }

        .btn-secondary {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: var(--text-light);
        }

        .btn-secondary:hover {
            background: rgba(99, 102, 241, 0.2);
        }

        .posts-list {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .posts-list h2 {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        /* Admin Filters */
        .admin-filters {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .admin-filter-search {
            width: 100%;
        }

        .admin-filter-input {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .admin-filter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .admin-filter-input::placeholder {
            color: var(--text-muted);
        }

        .admin-filter-group {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .admin-filter-select {
            padding: 0.8rem 1rem;
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 150px;
        }

        .admin-filter-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .admin-filter-select option {
            background: #0f172a;
            color: var(--text-light);
        }

        .admin-filter-clear {
            padding: 0.8rem 1.5rem;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 10px;
            color: #ef4444;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .admin-filter-clear:hover {
            background: rgba(239, 68, 68, 0.2);
            transform: translateY(-2px);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding: 1.5rem;
        }

        .pagination-btn {
            padding: 0.7rem 1.5rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pagination-btn:hover:not(:disabled) {
            background: rgba(99, 102, 241, 0.2);
            transform: translateY(-2px);
            border-color: var(--primary-color);
        }

        .pagination-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-info {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 0 1rem;
        }

        .post-item {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            transition: all 0.3s ease;
        }

        /* Post Thumbnail */
        .post-thumbnail {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .post-thumbnail-placeholder {
            width: 120px;
            height: 120px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .post-thumbnail-placeholder::after {
            content: 'Sem imagem';
        }

        .post-item:hover {
            transform: translateX(5px);
            border-color: var(--primary-color);
        }

        .post-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .post-info h3 {
            color: var(--text-light);
            margin: 0 0 0.3rem 0;
            font-size: 1.2rem;
            line-height: 1.4;
        }

        .post-date {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin: 0;
        }

        .post-excerpt {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0.5rem 0 0 0;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post-actions {
            display: flex;
            gap: 0.5rem;
        }

        .btn-small {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-edit {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: #f59e0b;
        }

        .btn-edit:hover {
            background: rgba(245, 158, 11, 0.2);
            transform: translateY(-2px);
        }

        .btn-delete {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        .btn-delete:hover {
            background: rgba(239, 68, 68, 0.2);
            transform: translateY(-2px);
        }

        .alert {
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .alert.show {
            display: block;
        }

        .alert-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        .alert-success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading {
            text-align: center;
            padding: 2rem;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .admin-container {
                padding: 100px 3% 60px;
            }

            .header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .admin-filters {
                padding: 1rem;
            }

            .admin-filter-group {
                flex-direction: column;
                width: 100%;
            }

            .admin-filter-select {
                width: 100%;
            }

            .admin-filter-clear {
                width: 100%;
            }

            .pagination {
                flex-direction: column;
                gap: 0.8rem;
            }

            .pagination-btn {
                width: 100%;
                justify-content: center;
            }

            .post-item {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .post-thumbnail,
            .post-thumbnail-placeholder {
                width: 100%;
                height: 180px;
            }

            .post-info {
                width: 100%;
            }

            .post-actions {
                width: 100%;
                flex-direction: column;
            }

            .post-actions .btn-small {
                width: 100%;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
/* =========================================
   CSS DO BLOG MODERNO - CARDS VERTICAIS
   Adicione ao FINAL do seu css/styles.css
   ========================================= */

/* Blog - Body quando na página do blog */
body.blog-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Blog Header Hero */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.blog-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 0.8s ease-out;
}

.blog-header p {
    font-size: clamp(16px, 3vw, 22px);
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Blog Container */
.blog-container {
    max-width: 1400px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

/* Blog Posts Grid - LAYOUT VERTICAL */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Blog Post Card - CARD VERTICAL RETANGULAR */
.blog-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-post-card:hover::before {
    transform: scaleX(1);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.blog-post-card:nth-child(1) { animation-delay: 0.1s; }
.blog-post-card:nth-child(2) { animation-delay: 0.2s; }
.blog-post-card:nth-child(3) { animation-delay: 0.3s; }
.blog-post-card:nth-child(4) { animation-delay: 0.4s; }
.blog-post-card:nth-child(5) { animation-delay: 0.5s; }
.blog-post-card:nth-child(6) { animation-delay: 0.6s; }

/* Imagem do Post - MAIOR E VERTICAL */
.blog-post-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px; /* Altura maior para formato vertical */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.08);
}

/* Badge NOVO */
.blog-post-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Conteúdo do Post - COMPACTO */
.blog-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-title {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px; /* Garante altura consistente */
}

/* Meta Info - COMPACTA */
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    font-weight: 600;
}

.blog-post-author::before {
    content: '👤';
    font-size: 14px;
}

.blog-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #718096;
}

.blog-post-date::before {
    content: '📅';
    font-size: 14px;
}

/* Excerpt - LIMITADO */
.blog-post-excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Botão Ler Mais - NO FINAL */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

.blog-read-more:hover {
    color: #764ba2;
}

/* Blog Loading */
.blog-loading {
    text-align: center;
    padding: 100px 20px;
}

.blog-loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.blog-loading p {
    color: #718096;
    font-size: 18px;
    font-weight: 500;
}

/* Blog No Posts */
.blog-no-posts {
    text-align: center;
    padding: 120px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.blog-no-posts h2 {
    font-size: 36px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-no-posts p {
    color: #718096;
    font-size: 18px;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    z-index: 1000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.blog-modal-content {
    background: white;
    max-width: 900px;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
}

.blog-modal-close:hover {
    background: rgba(0,0,0,0.8);
    transform: rotate(90deg);
}

.blog-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.blog-modal-body {
    padding: 40px;
}

.blog-modal-title {
    font-size: clamp(24px, 4vw, 36px);
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.blog-modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #718096;
    font-size: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.blog-modal-meta strong {
    color: #667eea;
}

.blog-modal-text {
    color: #2d3748;
    font-size: 17px;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Blog Back to Top */
.blog-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 22px;
    font-weight: bold;
}

.blog-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.blog-back-to-top.show {
    display: flex;
    animation: bounceIn 0.5s ease;
}

/* Blog Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 80px 20px 60px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .blog-container {
        margin-top: -30px;
        padding: 0 16px 60px;
    }

    .blog-post-card {
        border-radius: 14px;
    }

    .blog-post-image-wrapper {
        height: 240px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 20px;
        min-height: auto;
    }

    .blog-modal-content {
        margin: 20px;
        border-radius: 16px;
    }

    .blog-modal-body {
        padding: 30px 24px;
    }

    .blog-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .blog-post-image-wrapper {
        height: 200px;
    }

    .blog-post-content {
        padding: 18px;
    }

    .blog-post-title {
        font-size: 18px;
    }
}

/* =========================================
   RESPONSIVE - NEW INDEX SECTIONS
   ========================================= */

@media (max-width: 768px) {
    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image-placeholder {
        height: 250px;
    }

    /* Reasons Grid */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    /* Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials Grid */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Preview */
    .blog-preview-text {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-container {
        padding: 2.5rem 1.5rem;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

    .cta-container p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
}

/* =========================================
   FIM DO CSS DO BLOG - CARDS VERTICAIS
   ========================================= */