:root {
    --primary-color: #05141F;
    --secondary-color: #0A80D5;
    --light-blue-color: #1ea1ff;
    --text-color: #FFFFFF;
    --text-gray: #70777e;
    --dark-bg: #071723;
    --card-bg: #0A1F2F;
    --border-color: #1D3549;
}

/* PersonalizaÃ§Ã£o da barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3A9FE9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 85px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #3A9FE9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.color-blue {
    color: var(--light-blue-color);
}

.color-white {
    color: var(--text-color);
}

.padding-home {
    padding-top: 130px;
}

.padding-post {
    padding-top: 110px;
}

@media (max-width: 768px) {
    .padding-home {
        padding-top: 140px;
    }

    .padding-post {
        padding-top: 90px;
    }
}

.logo {
    max-width: 220px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0964A0;
    border-color: #0964A0;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Header */
header {
    padding: 20px 0;
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 25px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-header.scrolled {
    padding: 10px 25px;
    background-color: rgba(5, 20, 31, 0.95);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.scrolled .logo-text {
    font-size: 19px;
    /* Redução de 20% de 24px = 19.2px */
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
}

.navbar-toggler {
    margin-top: 10px;
}

.navbar-collapse {
    margin: 5px 0px;
}

.dropdown-menu {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
}

.dropdown-item {
    color: var(--text-gray);
}

.dropdown-item:hover {
    background-color: var(--card-bg);
    color: white;
}

/* Hero Section */
.hero {
    padding: 150px 0;
    background-color: var(--border-color);
    background-image: linear-gradient(rgba(5, 20, 31, 0.0), rgba(5, 20, 31, 0.0)), url(../images/hero-3.png);
    background-size: cover;
    background-position: center;
    margin: 30px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.hero h2 {
    font-size: 1.6rem !important;
    font-weight: 300;
    color: #32a5f7;
    line-height: 1.4;
}

/* Animacao de texto alternado */
.typing-container {
    height: 50px;
    line-height: 50px;
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.typing-text {
    font-size: 1.8rem;
    font-weight: 400;
    position: relative;
    width: 100%;
    left: 0;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

@keyframes textChange {

    0%,
    22% {
        opacity: 1;
        content: "WordPress Developer";
    }

    25%,
    47% {
        opacity: 0;
    }

    50%,
    72% {
        opacity: 1;
        content: "UX/UI Designer";
    }

    75%,
    97% {
        opacity: 0;
    }
}

/* Adicionar para substituir com JavaScript */
.typing-text.item-1:after {
    content: "WordPress Developer";
}

.typing-text.item-2:after {
    content: "UX/UI Designer";
}

.typing-text.item-3:after {
    content: "Front-end";
}

.typing-text.item-4:after {
    content: "Back-end";
}

/* AnimaÃ§Ã£o da imagem */
.hero-image {
    text-align: center;
    padding: 20px;
}

.fade-in {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
    overflow: hidden;
}

.clients h2 {
    margin-bottom: 3rem;
}

.client-container {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.client-slider {
    display: flex;
    animation: clientSlider 20s linear infinite;
    /* 10% mais rÃ¡pido que 30s */
    padding: 20px 0;
    width: fit-content;
}

@media (max-width: 768px) {
    .client-slider {
        padding: 0px 0;
    }
}

@keyframes clientSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-item {
    min-width: 200px;
    margin: 0 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.client-item img {
    max-width: 180px !important;
}

.client-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-item img {
    max-width: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-gray);
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.cases h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.cases>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-gray);
}

.case-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
}

.case-image {
    height: 310px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 25px;
}

.case-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.cases .btn-primary {
    display: block;
    /* max-width: 300px; */
    margin: 2rem auto 0;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--text-gray);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--card-bg);
    color: white;
    font-weight: 600;
    padding: 1.2rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--card-bg);
    color: var(--secondary-color);
}

.accordion-button::after {
    filter: brightness(10);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-gray);
    padding: 1.5rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
}

footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

footer p {
    color: rgba(255, 255, 255, 0.65);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.65);
}

footer ul li a:hover {
    color: white;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .case-content {
        padding: 0px 25px;
    }

    .case-image img {
        height: 85%;
    }

    .hero {
        padding: 250px 0 0 0;
        margin: -20px 20px;
    }

    .hero {
        background-image: linear-gradient(rgb(5 20 31 / 56%), rgb(5 20 31)), url(../images/hero-3-mobile.png);
        background-size: auto;
        background-position: top center;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    .hero h2 {
        font-size: 1.2rem !important;
    }

    .service-card,
    .case-card {
        margin-bottom: 30px;
    }

    footer .col-md-3 {
        margin-bottom: 30px;
    }
}

/* Pages specific styles */
/* ServiÃ§os page */
.page-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-gray);
}

.service-list {
    padding: 80px 0;
}

.service-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    margin-bottom: 1.5rem;
}

.service-item p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Case detail page */
@media (min-width: 1024px) {
    .case-detail {
        padding: 80px 0;
    }
}

.case-detail-image {
    margin-bottom: 40px;
}

.case-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.case-detail-content h2 {
    margin-bottom: 1.5rem;
}

.case-detail-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.case-results {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}

.case-results h3 {
    margin-bottom: 1.5rem;
}

.case-results ul {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

/* Quem Somos page */
.team-section {
    padding: 80px 0;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-gray);
}

/* Contact page */
.contact-form {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-control {
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: white;
    padding: 12px 15px;
}

.form-control:focus {
    background-color: var(--dark-bg);
    border-color: var(--secondary-color);
    color: white;
    box-shadow: none;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

textarea.form-control {
    min-height: 150px;
}

/* Additional Styles for Personal Portfolio */

#portfolio header {
    background-color: inherit !important;
    border-bottom: none !important;
}


.bg-darker {
    background-color: var(--dark-bg);
}

.certification-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background-color: var(--primary-color);
    overflow: hidden;
    text-align: center;
}

.tech-container {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.tech-slider {
    display: flex;
    animation: slider 40s linear infinite;
    /* Reduzido em 10% (aumentado o tempo de 27s para 30s) */
    padding: 20px 0;
    width: fit-content;
}

.tech-item {
    min-width: 150px;
    margin: 0 25px;
    padding: 10px 20px;
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

@keyframes slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About and Experience Styles */
.experience-item {
    margin-bottom: 30px;
}

.experience-meta {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.experience-item h4 {
    margin-bottom: 5px;
}

.experience-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

.experience-item ul li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.social-links a {
    color: var(--text-gray);
    margin-right: 15px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Adjust the existing styles */
.team-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        margin-bottom: 10px;
    }

    .hero-buttons .btn.ms-2 {
        margin-left: 0 !important;
    }

    /* Technologies mobile grid */
    .tech-slider {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        animation: none;
        width: 100%;
        justify-content: center;
        padding: 20px;
    }

    .tech-item {
        min-width: unset;
        margin: 0;
        font-size: 0.85rem;
        padding: 8px 12px;
        text-align: center;
    }

    .case-card .case-content h3 {
        font-size: 1.2rem;
    }
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.blog-section>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-gray);
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-read-more {
    display: inline-block;
    position: relative;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
    padding-right: 20px;
    /* Espaço para a seta */
}

.btn-read-more::after {
    content: '\2192';
    /* Código Unicode para seta direita */
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

.btn-read-more:hover {
    color: var(--secondary-color);
    padding-right: 25px;
    /* Aumenta o espaço ao passar o mouse */
}

.btn-read-more:hover::after {
    opacity: 1;
    right: 0;
}

/* Blog List Page */
.blog-list {
    padding: 80px 0;
}

.blog-list .blog-card {
    margin-bottom: 0px;
}

.blog-categories {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.blog-categories h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.blog-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories ul li {
    margin-bottom: 10px;
}

.blog-categories ul li a {
    color: var(--text-gray);
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
}

.blog-categories ul li a:hover {
    color: var(--secondary-color);
}

.category-count {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
}

.blog-search {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.blog-search h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.blog-search-form {
    display: flex;
}

.blog-search-input {
    flex-grow: 1;
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    padding: 10px 15px;
    color: var(--text-color);
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.blog-search-button {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 0 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-search-button:hover {
    background-color: #0964A0;
}

/* Blog Single Page */
.blog-single {
    padding: 80px 0;
}

.blog-single .blog-image {
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-single-meta {
    display: flex;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.blog-single-meta span {
    margin-right: 20px;
}

.blog-content-full h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-content-full p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-content-full h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.blog-content-full h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.blog-content-full ul,
.blog-content-full ol {
    margin-bottom: 20px;
    margin-left: 20px;
    color: var(--text-gray);
}

.blog-content-full li {
    margin-bottom: 10px;
}

.blog-content-full img {
    max-width: 100%;
    border-radius: 8px;
    margin: 30px 0;
}

.blog-content-full blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-color);
}

.blog-content-full pre {
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.blog-content-full code {
    font-family: monospace;
    color: var(--secondary-color);
}

.blog-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-tag {
    display: inline-block;
    background-color: var(--card-bg);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.blog-tag:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.blog-share {
    margin-top: 30px;
}

.blog-share h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.social-share {
    display: flex;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    color: var(--text-gray);
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-share a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.blog-related {
    margin-top: 60px;
}

.blog-related h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.blog-related h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    color: var(--text-gray);
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination a.prev,
.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* Estilos para ícones */
.bi {
    vertical-align: -0.125em;
}

.social-links .bi {
    font-size: 1.5rem;
}

.social-icon .bi {
    font-size: 2rem;
}

.service-card .bi {
    font-size: 2.5rem;
}

.social-share .bi {
    font-size: 1.2rem;
}

/* Plugins Section */
.plugins-section {
    padding: 80px 0;
}

.plugins-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.plugins-section>p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.plugin-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}

.plugin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.plugin-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.plugin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plugin-card:hover .plugin-image img {
    transform: scale(1.05);
}

.plugin-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), #3A9FE9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(10, 128, 213, 0.3);
}

.plugin-badge.business {
    background: linear-gradient(135deg, #ff6b35, #ff8e5a);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.plugin-content {
    padding: 30px;
}

.plugin-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.plugin-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.plugin-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.feature-item span {
    color: var(--text-gray);
}

.plugin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.plugin-actions .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plugin-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plugin-cta {
    background: linear-gradient(135deg, var(--card-bg), var(--border-color));
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
}

.plugin-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.plugin-cta p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.plugin-cta .btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .plugin-card {
        margin-bottom: 30px;
    }

    .plugin-actions {
        flex-direction: column;
    }

    .plugin-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .plugins-section {
        padding: 60px 0;
    }

    .plugins-section h2 {
        font-size: 2rem;
    }

    .plugin-content {
        padding: 25px;
    }

    .plugin-cta {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .plugin-cta h3 {
        font-size: 1.5rem;
    }
}

/* ===== PAGINAÇÃO MELHORADA ===== */

/* Estilos gerais para paginação */
.pagination-nav {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.pagination-wrapper {
    gap: 0.5rem;
}

/* Estilos para lista de paginação */
.pagination-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.pagination-wrapper li {
    margin: 0;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* min-width: 45px; */
    height: 45px;
    text-align: center !important;
    padding: 0 15px;
    background-color: var(--card-bg);
    color: var(--text-gray);
    /* border: 1px solid var(--border-color); */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Efeito hover */
.pagination-wrapper a:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 128, 213, 0.3);
}

/* Página atual */
.pagination-wrapper .current {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 2px 8px rgba(10, 128, 213, 0.4);
}

/* Botões anterior e próximo */
.pagination-wrapper .prev,
.pagination-wrapper .next {
    min-width: auto;
    /* padding: 0 20px; */
    font-weight: 600;
}

.pagination-wrapper .prev i,
.pagination-wrapper .next i {
    font-size: 0.9rem;
}

/* Estados desabilitados */
.pagination-wrapper .dots {
    background: transparent !important;
    border: none !important;
    color: var(--text-gray) !important;
    cursor: default !important;
    pointer-events: none;
}

.pagination-wrapper .dots:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Animação de carregamento */
.pagination-wrapper a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.5s;
}

.pagination-wrapper a:hover::after {
    left: 100%;
}

/* Responsividade para paginação */
@media (max-width: 768px) {
    .pagination-wrapper {
        gap: 0.25rem;
    }



    .pagination-wrapper .prev,
    .pagination-wrapper .next {
        padding: 0 15px;
        font-size: 0.85rem;
    }

    /* Ocultar números em telas muito pequenas, manter apenas prev/next */
    .pagination-wrapper li:not(.prev):not(.next):not(.current) {
        display: none;
    }
}

@media (max-width: 480px) {
    .pagination-nav {
        margin-top: 2rem;
    }

    .pagination-wrapper .prev span,
    .pagination-wrapper .next span {
        display: none;
    }

    .pagination-wrapper .prev,
    .pagination-wrapper .next {
        min-width: 40px;
        padding: 0 10px;
    }
}

/* ===== PÁGINA SINGLE PORTFOLIO ===== */

/* Container principal do case */
.case-detail {
    padding: 40px 0;
    min-height: 60vh;
}

/* Título do projeto */
.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Informações do projeto */
.project-info {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.info-label {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.info-group {
    margin-bottom: 25px;
}

.info-group:last-child {
    margin-bottom: 0;
}

/* Imagem destacada do projeto */
.project-featured-image {
    text-align: center;
    margin-bottom: 40px;
}

.project-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-featured-image img:hover {
    transform: scale(1.02);
}

/* Conteúdo do projeto */
.case-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.case-detail-content h2,
.case-detail-content h3,
.case-detail-content h4 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-detail-content p {
    margin-bottom: .5rem;
}

.case-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* margin: 20px 0; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* Navegação entre projetos */
.project-navigation {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(10, 31, 47, 0.3);
}

.project-navigation .btn {
    transition: all 0.3s ease;
}

.project-navigation .btn:hover {
    transform: translateX(5px);
}

.project-navigation .btn-outline-primary:hover {
    transform: translateX(-5px);
}

/* Seção de projetos relacionados */
.case-results {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.case-results h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
}

.case-results h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Responsividade para single portfolio */
@media (max-width: 1200px) {
    .project-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .case-detail {
        padding: 20px 0;
    }

    .project-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .project-info {
        padding: 20px;
        margin-bottom: 30px;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 1rem;
    }

    .case-detail-content {
        font-size: 1rem;
        line-height: 1.6;
    }

    .project-navigation .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .case-results h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.75rem;
    }

    .project-info {
        padding: 15px;
    }

    .project-navigation .row>div {
        margin-bottom: 10px;
    }

    .project-navigation .col-6:last-child {
        text-align: left !important;
    }
}

/* ===== SIDEBAR - POSTS RECENTES ===== */

/* Container dos posts recentes */
.recent-posts-list {
    margin: 0;
    padding: 0;
}

/* Item individual do post recente */
.recent-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:first-child {
    padding-top: 0;
}

.recent-post-item:hover {
    background-color: rgba(10, 31, 47, 0.3);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

/* Thumbnail do post */
.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.recent-post-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.recent-thumb-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.recent-post-thumb:hover .recent-thumb-img {
    transform: scale(1.1);
}

/* Placeholder para posts sem imagem */
.recent-thumb-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.recent-post-thumb:hover .recent-thumb-placeholder {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Conteúdo do post */
.recent-post-content {
    flex: 1;
    min-width: 0;
    /* Para permitir text-overflow */
}

/* Título do post */
.recent-post-title {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.recent-post-title a {
    color: var(--text-color);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.recent-post-title a:hover {
    color: var(--secondary-color);
}

/* Data do post */
.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.recent-post-date i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Ajustes responsivos para o sidebar */
@media (max-width: 1200px) {
    .recent-post-item {
        gap: 10px;
    }

    .recent-post-thumb {
        width: 50px;
        height: 50px;
    }

    .recent-post-title {
        font-size: 0.85rem;
    }

    .recent-post-date {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .recent-post-item {
        padding: 12px 0;
    }

    .recent-post-item:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        background: transparent;
    }
}

/* Melhorias gerais do widget */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--light-blue-color);
}

/* ===== FOOTER MELHORADO ===== */

/* Navegação horizontal do footer */
.footer-navigation {
    margin-top: 1rem;
}

.footer-nav-horizontal {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px 20px;
    align-items: center;
    justify-content: center;
}

.footer-nav-horizontal li {
    margin: 0;
}

.footer-nav-horizontal a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-nav-horizontal a:hover {
    color: var(--secondary-color);
}

.footer-nav-horizontal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-nav-horizontal a:hover::after {
    width: 100%;
}

/* Redes sociais do footer - Inline */
.footer-social-icons {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a i {
    font-size: 1.2rem;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

/* Cores específicas para cada rede social no hover */
.footer-social-icons a:hover .bi-linkedin {
    color: #0077B5;
}

.footer-social-icons a:hover .bi-instagram {
    color: #E4405F;
}

.footer-social-icons a:hover .bi-whatsapp {
    color: #25D366;
}

/* Informações de contato do footer */
.footer-contact-info {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.footer-phone {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-phone i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.footer-phone span {
    font-weight: 500;
}

/* Responsividade do footer */
@media (max-width: 768px) {
    .footer-nav-horizontal {
        justify-content: center;
        gap: 8px 15px;
    }

    .footer-nav-horizontal a {
        font-size: 0.85rem;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .footer-social-icons a {
        width: 36px;
        height: 36px;
    }

    .footer-social-icons a i {
        font-size: 1.1rem;
    }

    .footer-contact-info {
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-nav-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    footer .col-md-4 {
        text-align: center;
        margin-bottom: 30px;
    }

    footer .col-md-4:last-child {
        margin-bottom: 0;
    }
}

/* Project Gallery Styles */
.project-gallery {
    margin: 60px 0;
}

.project-gallery h3 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: none !important;
    height: fit-content;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Navegação do Carrossel */
.carousel-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 128, 213, 0.9);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 128, 213, 0.4);
    color: white;
}

/* Modal personalizado */
#imageModal .modal-content {
    border: none;
    background-color: rgba(5, 20, 31, 0.98);
    border-radius: 15px;
}

#imageModal .modal-body {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

#imageModal .modal-header {
    background: linear-gradient(135deg, rgba(10, 128, 213, 0.1), rgba(5, 20, 31, 0.9));
    border-bottom: 1px solid var(--border-color);
}

#imageModal .btn-close {
    background: none;
    opacity: 0.8;
    font-size: 1.4rem;
    padding: 8px;
}

#imageModal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

#imageModal .modal-footer {
    background: linear-gradient(135deg, rgba(10, 128, 213, 0.1), rgba(5, 20, 31, 0.9));
    border-top: 1px solid var(--border-color);
    justify-content: center;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: inherit;
    border: 0px solid var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-nav-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    /* box-shadow: 0 8px 25px rgba(10, 128, 213, 0.5); */
    color: white;
}

.modal-prev {
    left: -20px;
}

.modal-next {
    right: -20px;
}

/* Modal Counter */
.modal-counter {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modal Image */
#modalImage {
    border-radius: 8px;
    max-height: 80vh;
    object-fit: contain;
    width: 100%;
}

/* Responsividade da galeria */
@media (max-width: 768px) {
    .gallery-item {
        height: 220px;
    }

    .project-gallery h3 {
        font-size: 1.5rem;
    }

    .carousel-navigation {
        justify-content: center;
        margin-top: 15px;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* Modal mobile adjustments */
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    #imageModal .modal-header {
        padding: 0.5rem;
    }

    .modal-counter {
        font-size: 0.8rem;
    }
}

@media (max-width: 800px) {

    .services,
    .clients,
    .cases,
    .technologies,
    .blog-section,
    .faq,
    .blog-list,
    .blog-single {
        padding: 60px 0px;
    }

}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 900px;
    }
}

.gtranslate_wrapper a {
    color: var(--text-gray) !important;
    padding-right: 5px!important;
   
}

.gtranslate_wrapper .gt-current-lang{
    color: var(--light-blue-color)!important;
}

@media(min-width: 1024px){
#menu-menu-principal{
        padding-left: 50px;
}
}