/*
Theme Name: WebNeves
Theme URI: https://webneves.com.br
Author: Paulo Neves
Description: Tema exclusivo WebNeves - Automação e Transformação Digital
Version: 1.0
*/

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --primary: #00acc1;
    --primary-dark: #00838f;
    --primary-light: #4dd0e1;
    --secondary: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --background: #ffffff;
    --border: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 172, 193, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 800;
}

span {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 172, 193, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 172, 193, 0.45);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 45px;   /* controla altura visual */
    width: auto;        /* mantém proporção */
    height: auto;
}/*
.logo img {
    height: 42px;
}
*/
nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

nav ul li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.85)
    );
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.35rem;
    color: #ebebeb;
    margin-bottom: 48px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btns .btn-outline {
    color: var(--white);
    border-color: var(--primary);
}

.hero-btns .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Sections General */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--text);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Novo Componente: Por Que Trabalhar Comigo */
.cta-box {
    background-color: #e6f7f9;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    max-width: 100%;
    margin: 30px 0;
    border: 1px solid #cceef2;
    box-shadow: 0 4px 20px rgba(0, 172, 193, 0.05);
}

.cta-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-box-header i {
    color: var(--primary);
    font-size: 1.5rem;
}

.cta-box-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-list {
    display: grid;
    gap: 12px;
}

.cta-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-list-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-btns {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-card {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.tech-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.tech-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tech-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    height: 100%;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    background: var(--secondary);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.project-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.project-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.project-info a:hover {
     color: var(--primary);
}

.tech-tags {
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    background: var(--white);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.project-result {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    bottom: -100px;
    right: -100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--white);
}

.contact-info p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 48px;
}

.contact-details {
    display: grid;
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.detail-item i {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.detail-item:hover i {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.detail-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #94a3b8;
}

/* Modern Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    transition: var(--transition);
    pointer-events: none;
}

.form-group textarea i {
    top: 25px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px 18px 56px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 172, 193, 0.1);
}

.form-control:focus + i {
    color: var(--primary);
}

.form-control::placeholder {
    color: #64748b;
}

.btn-submit {
    width: 100%;
    margin-top: 12px;
    font-size: 1.1rem;
    padding: 18px;
}


/*Animação do Formulário de Contato*/
.btn-loading {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border: 8px solid rgba(0, 172, 193, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    border-color: rgba(0, 172, 193, 0.4);
}

/* Footer */
footer {
    background-color: #0f172a;
    color: var(--white);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}
/*
.footer-brand img {
    height: 44px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}
*/
.footer-brand .custom-logo-link {
    display: inline-block;
}

.footer-brand .custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    display: block;

}

.footer-grid img {
    width: 100%;
    filter: brightness(0) invert(1);
}



.footer-brand p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 28px;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: #94a3b8;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .contact-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info { text-align: center; }
    .contact-details { justify-content: center; }

    header .header-cta { display: none; }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    nav.active { right: 0; }
    nav ul {
        flex-direction: column;
        padding: 100px 40px;
        gap: 20px;
    }
    nav ul li a { font-size: 1.2rem; color: var(--text); }
    .menu-toggle { display: block; z-index: 2001; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-cards { grid-template-columns: 1fr; }
    .contact-form { padding: 32px; }
}

/* Blog Page Specific Styles */
.blog-hero {
    padding: 160px 0 100px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 172, 193, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero p {
    color: #94a3b8;
    font-size: 1.25rem;
}

.blog-controls {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 56px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 172, 193, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.2);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.post-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.post-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-img img {
    transform: scale(1.1);
}

.post-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.post-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text);
    transition: var(--transition);
}

.post-card:hover h3 {
    color: var(--primary);
}

.post-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

.no-results {
    text-align: center;
    padding: 100px 0;
}

.no-results i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

/* HERO SECTION - CLAUDE DESIGN */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}
.gradient-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}
.gradient-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}
.hero-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 172, 193, 0.08);
    border: 1px solid rgba(0, 172, 193, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text);
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}
.meta-item i {
    color: var(--primary);
    font-size: 1rem;
}
.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 50px auto 30px;
    border-radius: 10px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}
.scroll-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}
.scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 10px;
    animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.post-content-section {
    padding-top: 100px;
}

.post-content-section {
    padding-top: 60px;
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.post-header h1 {
    font-size: 3.5rem;
    margin: 20px 0 30px;
    color: var(--text);
    line-height: 1.2;
}

.post-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.post-body p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.post-body h2 {
    font-size: 2rem;
    margin: 48px 0 24px;
    color: var(--text);
}

.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 30px;
    background: var(--secondary);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    font-size: 1.25rem;
    margin: 40px 0;
    color: var(--text);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.nav-item {
    max-width: 45%;
}

.nav-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nav-item a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.nav-item a:hover {
    color: var(--primary);
}

/* Post CTA Section */
.post-cta {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 172, 193, 0.3);
}

.post-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.post-cta h3 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--white);
}

.post-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.post-cta .btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.post-cta .btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.25rem; }
    .post-header h1 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero h1 { font-size: 3rem; }
}


/*404*/

        .error-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-error);
            position: relative;
            overflow: hidden;
            text-align: center;
            padding: 20px;
        }

        /* Fundo Tecnológico Sutil */
        .error-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(var(--border) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.4;
            mask-image: radial-gradient(circle, black, transparent 80%);
            -webkit-mask-image: radial-gradient(circle, black, transparent 80%);
        }

        .error-content-box {
            position: relative;
            z-index: 10;
            max-width: 700px;
            animation: fadeIn 0.8s ease-out;
        }

        .error-visual {
            margin-bottom: 40px;
            position: relative;
        }

        .error-number {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(8rem, 15vw, 12rem);
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -5px;
            margin: 0;
            filter: drop-shadow(0 20px 30px rgba(0, 172, 193, 0.15));
        }

        .error-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(0, 172, 193, 0.1);
            color: var(--primary);
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .error-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--text-main);
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
        }

        .error-description {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .error-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Animação de Orbes sutil */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            z-index: 1;
            animation: floatOrb 10s infinite alternate ease-in-out;
        }

        @keyframes floatOrb {
            from { transform: translate(0, 0); }
            to { transform: translate(40px, 40px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Botão Outline Customizado */
        .btn-outline-custom {
            padding: 14px 32px;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 172, 193, 0.2);
            transform: translateY(-3px);
        }

/*Contact 7 Form - para não alterar a posição dos ícones*/
.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -37px;
    left: 0;
}

.wpcf7-response-output {
    margin-top: 20px;
    border-radius: 8px;
    padding: 10px 15px;
}


/*teste*/

.btn-submit .btn-text,
.btn-submit .btn-icon i {
    color: #fff !important;
}
.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    opacity: 0;
}

.btn-submit.loading .btn-loading {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-submit.loading .btn-icon {
    display: none;
}


.load-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0;
}

#loadMoreBtn {
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
}