/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #0d78f1;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(-45deg, #2c3e50, #00233a, #010436, #1abc9c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
     color: var(--text-light);
     text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.text-center {
    text-align: center;
}

/* Barra de Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(44, 62, 80, 0.95);
    padding: 10px 0;
}

header.scrolled .logo a,
header.scrolled nav ul li a {
    color: var(--text-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: #006b8c;

}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

    /* Seção de Introdução */
        .intro-section {
            padding: 5rem 2rem;
         
    color: var(--text-color);

            position: relative;
        }

        .intro-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .intro-text {
            flex: 1;
            min-width: 300px;
            padding-right: 3rem;
            
        }

        .intro-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            position: relative;
            display: inline-block;
        }

        .intro-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .intro-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
            @media (max-width: 768px) {
            .intro-text {
                min-width: auto;
                padding-right: 0;
                padding-left: 0;
                text-align: center;
            }

            .intro-text h2 {
                font-size: 2rem;
            }

            .intro-text p {
                font-size: 1rem;
                line-height: 1.6;
            }
            }

        .intro-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--secondary-color), #e6e9ff);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            background: var(--dark-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .intro-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            margin-top: 3rem;
        }

        .social-mockup {
            position: relative;
            width: 100%;
            left: -10%;
            max-width: 500px;
            margin: 0 auto;
        }

        .mockup-main {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            
        }

        .mockup-main:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .mockup-floating {
            position: absolute;
            width: 30%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.5s ease;
        }

        /*.mockup-1 {
            top: -10%;
            left: -10%;
            transform: rotate(-10deg);
            z-index: 1;
        }

       .mockup-2 {
            bottom: -10%;
            right: -10%;
            transform: rotate(10deg);
            z-index: 1;
            
            width: 200px;
        }
            */
        .social-mockup:hover .mockup-1 {
            top: -10%;
            left: -10%;
            transform: rotate(-10deg);
        }

        .social-mockup:hover .mockup-2 {
            bottom: -15%;
            right: -15%;
            transform: rotate(15deg);
        }


/* Hero Section 
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--dark);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    max-width: 600px;
    margin: 2rem auto 0;
    display: block;
}

*/
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.5;
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

.shape-2 {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.section-title {
    font-size: 3rem;
    /* ⬅️ título menor que o padrão 3.5rem */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.5rem;
    /* ⬅️ reduzido para subtítulo mais leve */
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

/* Services Section */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  background-color: rgba(70, 179, 206, 0.337);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.259);
    background-color:rgba(70, 179, 206, 0.337);
    /* tom mais claro */
    border-color: var(--accent-color);
}

.service-card a.btn {
  display: inline-block;
  margin: 1.5rem auto 2rem;
 background: linear-gradient(to right, var(--primary-color), var(--secondary-color));;
}


.service-card:hover::before {
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: stretch;
}
.service-content {
  flex-grow: 1;
  padding: 2rem;
  text-align: center;
}


.service-card h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.75rem;
    text-align: center;
    /* centralizado */
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
    /* destaque centralizado */
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0;
    padding-left: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0;
    border: none;
    background: none;
    box-shadow: none;
    text-align: left;
}
/* Estilo base para todos os ícones */
.service-feature::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    margin-right: 8px;
    color: rgb(18, 231, 231);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}


/* Card 1 */
.service-card:nth-child(1) .service-feature:nth-child(1)::before { content: '\f108'; } /* fa-chart-bar */
.service-card:nth-child(1) .service-feature:nth-child(2)::before { content: '\f2bd'; } /* fa-users */
.service-card:nth-child(1) .service-feature:nth-child(3)::before { content: '\f201'; } /* fa-calendar-alt */
.service-card:nth-child(1) .service-feature:nth-child(4)::before { content: '\f5ad'; } /* fa-chart-line */
.service-card:nth-child(1) .service-feature:nth-child(6)::before { content: '\f080'; } /* fa-chart-line */
.service-card:nth-child(1) .service-feature:nth-child(5)::before { content: '\f544'; } /* fa-video */

/* Card 2 */
.service-card:nth-child(2) .service-feature:nth-child(1)::before { content: '\f03e'; } /* fa-camera */
.service-card:nth-child(2) .service-feature:nth-child(2)::before { content: '\f1fc'; } /* fa-paint-brush */
.service-card:nth-child(2) .service-feature:nth-child(3)::before { content: '\f1ad'; } /* fa-pen-nib */
.service-card:nth-child(2) .service-feature:nth-child(4)::before { content: '\f0c4'; } /* fa-edit */

/* Card 3 */
.service-card:nth-child(3) .service-feature:nth-child(1)::before { content: '\f3c5'; } /* fa-bullseye */
.service-card:nth-child(3) .service-feature:nth-child(2)::before { content: '\f201'; } /* fa-chart-bar */
.service-card:nth-child(3) .service-feature:nth-child(3)::before { content: '\f017'; } /* fa-clock */
.service-card:nth-child(3) .service-feature:nth-child(4)::before { content: '\f1c3'; } /* fa-file-alt */



.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    background-color: rgba(59, 130, 246, 0.1);
    margin: 2rem auto 1.5rem;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* mobile: um card por linha */
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--light);
    position: relative;
    z-index: 10;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.pricing-card {
    background-color: rgba(70, 179, 206, 0.337);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.311);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card.popular .popular-badge {
    display: flex;
}


.popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: var(--gradient);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.popular-badge i {
    margin-right: 0.5rem;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray-light);
}

.pricing-card.popular .pricing-header {
    background-color: rgba(59, 130, 246, 0.05);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.875rem;
}

.pricing-features {
    padding: 2rem;
    
    
 
}
.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Centraliza a UL inteira */
    max-width: max-content; /* Garante que o conteúdo centralize certinho */
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    text-shadow: 1px 1px 2px  rgb(18, 231, 231);
    color:  rgb(18, 231, 231);
    font-size: 1rem;
}




.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-features li.disabled::before {
    content: '\f00d';
    color: var(--text-light);
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
    
}

        /* Seção de Processo */
        .process-section {
            padding: 5rem 2rem;
          
            position: relative;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
            color: var(--text-light);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        .process-step p{
            color: var(--text-light);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(110, 69, 226, 0.05), rgba(136, 211, 206, 0.05));
            border-radius: 15px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .process-step:hover::before {
            opacity: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(to top, var(--secondary-color), var(--light-color));
            color: var(--text-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 15px rgba(110, 69, 226, 0.3);
            transition: transform 0.3s ease;
        }

        .process-step:hover .step-number {
            transform: scale(1.1) rotate(10deg);
        }

        .step-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .step-description {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .process-connector {
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            z-index: 0;
            opacity: 0.2;
        }

        /* Seção de Portfólio */
        .portfolio-section {
            padding: 5rem 2rem;
          
            position: relative;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 250px;
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(42, 42, 114, 0.8), rgba(110, 69, 226, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 2rem;
            text-align: center;
            color: white;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-image {
            transform: scale(1.1);
        }

        .portfolio-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .portfolio-category {
            font-size: 0.9rem;
            margin-bottom: 1rem;
            opacity: 0.8;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

        .portfolio-link {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background:var(--secondary-color);
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transform: translateY(20px);
            transition: all 0.3s ease 0.2s;
        }

        .portfolio-item:hover .portfolio-title,
        .portfolio-item:hover .portfolio-category,
        .portfolio-item:hover .portfolio-link {
            transform: translateY(0);
        }

/* CTA Section */
.cta {
    background: var(--gradient);
    color: var(--lighter);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    animation: cta-shine 8s infinite linear;
}

@keyframes cta-shine {
    0% {
        transform: rotate(30deg) translateX(-100%);
    }

    100% {
        transform: rotate(30deg) translateX(100%);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn.btn-primary {
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.btn-primary:hover {
  background-color:var(--secondary-color);
}

.btn-white {
    background-color: var(--lighter);
    color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    background-color: var(--lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-dark);
}

.btn-transparent {
    background-color: transparent;
    color: var(--lighter);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-transparent:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--lighter);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Rodapé */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

footer p{
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    font-size: 1.25rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    display: flex;          /* coloca ícone e texto na mesma linha */
    align-items: center;    /* centraliza verticalmente */
    gap: 10px;              /* espaço entre ícone e texto */
    margin-bottom: 15px;
    white-space: nowrap;    /* evita quebra de linha */
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light) ;
}

.footer-links i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botão do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito Slow Motion ao Rolar */
[data-anime] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-anime="left"] {
    transform: translate3d(-50px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(50px, 0, 0);
}

[data-anime="top"] {
    transform: translate3d(0, -50px, 0);
}

[data-anime="bottom"] {
    transform: translate3d(0, 50px, 0);
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* 3D Animation */
.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(5deg) translateY(-10px);
}

/* Responsividade */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        flex: none;
        width: 100%;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        color: var(--text-light);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 500px) {
    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn {
        padding: 10px 25px;
    }

    .whatsapp-btn,
    .rating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 90px;
    }

    .rating-modal {
        width: 250px;
        left: 15px;
        bottom: 80px;
    }

    .contact-form {
        padding: 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    /* alinha verticalmente */
    gap: 10px;
    /* espaço entre logo e texto */
}

.logo-img {
    width: 60px;
    /* ou qualquer tamanho que quiser */
    height: 60px;
    /* mantém proporção */
    /* mesma largura p/ manter redondo */
    border-radius: 80%;
    object-fit: cover;
}

.logo-img:hover {
    transform: rotate(20deg);
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .intro-image {
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .social-mockup {
    left: 0;
    margin: 0 auto;
    max-width: 100%;
  }
  .mockup-main {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }
}