/* 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: #fff;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-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: 6px 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: rgb(1, 114, 162);
}

/* 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;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
    opacity: 0.9;
    color: #fff;
}

.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-subtitle {
    font-size: 1.5rem;
    /* ⬅️ reduzido para subtítulo mais leve */
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}


.portfolio-carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    padding-bottom: 6rem; 
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,2,.6,1);
}

.carousel-slide {
    transition:
        transform 0.5s cubic-bezier(.4,2,.6,1),
        box-shadow 0.5s,
        opacity 0.5s;
    z-index: 1;
    opacity: 0.7;
    filter: none;
    /* Nenhum efeito de blur */
}

.carousel-slide.center {
    transform: scale(1.15) translateY(-35px);
    z-index: 3;
    box-shadow: 0 16px 40px rgba(44,62,80,0.18), 0 2px 8px rgba(44,62,80,0.10);
    opacity: 1;
    filter: none;
    /* Sem borda colorida */
}

.carousel-slide:not(.center) {
    transform: scale(0.93) translateY(15px);
    z-index: 1;
    box-shadow: none;
    opacity: 0.7;
    filter: none;
}

/* Desktop – 3 cards por vez */
@media (min-width: 769px) {
    .carousel-slide {
        flex: 0 0 calc(100% / 3);
    }
}
/* Mobile – 1 card por vez */
@media (max-width: 768px) {
    .carousel-wrapper {
        overflow-x: visible; /* garante que o slide não desapareça */
    }

    .carousel-slide {
        flex: 0 0 100%;       /* 1 slide por vez */
        max-width: 100%;
        display: flex;
        flex-direction: column; /* empilha imagem + texto verticalmente */
        align-items: center;    /* centraliza horizontalmente */
        text-align: center;     /* centraliza o texto */
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    .carousel-slide img {
        width: 80%;           /* ajusta tamanho da imagem */
        height: auto;
        margin-bottom: 1rem;  /* espaço entre imagem e texto */
        border-radius: 12px;
    }

    .carousel-slide .caption {
        max-width: 90%;
        font-size: 0.95rem;
    }

    .carousel-slide.center {
        transform: scale(1.05) translateY(-10px); /* destaque leve no slide central */
    }

    .carousel-btn {
        display: none;
    }
}



.carousel-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
}

.caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    max-width: 90%;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}



/* Recursos tecnicos */
.section-titles h2 {
    font-size: 3rem;
    /* tamanho do título */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.section-titles p {
    font-size: 1.5rem;
    /* tamanho do parágrafo */
    color: #fff;
}

.service-contents h3 {
    font-size: 1.6rem;
    /* Tamanho do título */
    color: var(--text-light);
    /* Cor personalizada */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-contents p {
    font-size: 1rem;
    /* Tamanho do texto */
    color: var(--text-light);
    /* Cor mais suave para leitura */
    line-height: 1.5;
}

.services-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-cards {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    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-cards:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 254, 254, 0.284);
}

.service-icons {
    font-size: 2.5rem;
    color: var(--text-light);
    background-color: rgba(0, 123, 255, 0.1);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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);
}

.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.284);
    background-color: rgba(70, 179, 206, 0.337);
    /* tom mais claro */
    border-color: var(--accent-color);
}

.service-card a.btn {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto 2rem;
    text-align: center;
}


.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: #ffffff;
}

.service-card h3 {
    font-size: 1.75rem;
    text-align: center;
    /* centralizado */
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    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;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0;
    border: none;
    background: none;
    box-shadow: none;
    text-align: left;
}

.service-feature::before {
    content: '\f00c';
    /* ícone de check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgb(18, 231, 231);
    font-size: 1rem;
}

/* Card 1: Sistema Básico */
.service-card:nth-child(1) .service-feature:nth-child(1)::before { content: '\f121'; } /* CRUD básico - fa-code */
.service-card:nth-child(1) .service-feature:nth-child(2)::before { content: '\f1e6'; } /* Integração com 1 API - fa-plug */
.service-card:nth-child(1) .service-feature:nth-child(3)::before { content: '\f0ac'; } /* Domínio personalizado - fa-globe */
.service-card:nth-child(1) .service-feature:nth-child(4)::before { content: '\f085'; } /* Painel Administrativo básico - fa-cogs */
.service-card:nth-child(1) .service-feature:nth-child(5)::before { content: '\f1c0'; } /* Banco de dados em Nuvem - fa-database */
.service-card:nth-child(1) .service-feature:nth-child(6)::before { content: '\f108'; } /* Layout Personalizado - fa-desktop */
.service-card:nth-child(1) .service-feature:nth-child(7)::before { content: '\f590'; } /* Suporte 30 dias - fa-headset */

/* Card 2: Sistema Avançado */
.service-card:nth-child(2) .service-feature:nth-child(1)::before { content: '\f121'; } /* CRUD avançado - fa-code */
.service-card:nth-child(2) .service-feature:nth-child(2)::before { content: '\f1e6'; } /* Integração com até 3 APIs - fa-plug */
.service-card:nth-child(2) .service-feature:nth-child(3)::before { content: '\f0ac'; } /* Domínio personalizado - fa-globe */
.service-card:nth-child(2) .service-feature:nth-child(4)::before { content: '\f201'; } /* Dashboard - fa-chart-line */
.service-card:nth-child(2) .service-feature:nth-child(5)::before { content: '\f0f3'; } /* Notificações automáticas - fa-bell */
.service-card:nth-child(2) .service-feature:nth-child(6)::before { content: '\f15c'; } /* Relatórios PDF - fa-file-alt */
.service-card:nth-child(2) .service-feature:nth-child(7)::before { content: '\f382'; } /* Upload ampliado - fa-cloud-upload-alt */
.service-card:nth-child(2) .service-feature:nth-child(8)::before { content: '\f007'; } /* Login até 3 usuários - fa-user */
.service-card:nth-child(2) .service-feature:nth-child(9)::before { content: '\f505'; } /* Controle permissões - fa-user-shield */
.service-card:nth-child(2) .service-feature:nth-child(10)::before { content: '\f590'; } /* Suporte 30 dias - fa-headset */

/* Card 3: Sistema Premium */
.service-card:nth-child(3) .service-feature:nth-child(1)::before { content: '\f121'; } /* CRUD avançado - fa-code */
.service-card:nth-child(3) .service-feature:nth-child(2)::before { content: '\f108'; } /* Domínio personalizado - fa-globe */
.service-card:nth-child(3) .service-feature:nth-child(3)::before { content: '\f0ac'; } /* Design responsivo - fa-desktop */
.service-card:nth-child(3) .service-feature:nth-child(4)::before { content: '\f1e6'; } /* Integração com até 5 APIs - fa-plug */
.service-card:nth-child(3) .service-feature:nth-child(5)::before { content: '\f201'; } /* Dashboard - fa-chart-line */
.service-card:nth-child(3) .service-feature:nth-child(6)::before { content: '\f0f3'; } /* Notificações - fa-bell */
.service-card:nth-child(3) .service-feature:nth-child(7)::before { content: '\f15c'; } /* Relatórios PDF - fa-file-alt */
.service-card:nth-child(3) .service-feature:nth-child(8)::before { content: '\f382'; } /* Upload ampliado - fa-cloud-upload-alt */
.service-card:nth-child(3) .service-feature:nth-child(9)::before { content: '\f0c0'; } /* Usuários ilimitados - fa-users */
.service-card:nth-child(3) .service-feature:nth-child(10)::before { content: '\f505'; } /* Controle permissões - fa-user-shield */
.service-card:nth-child(3) .service-feature:nth-child(11)::before { content: '\f590'; } /* Suporte 60 dias - fa-headset */


/* Suporte - fa-headset */


.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;
}

.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;
}

.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);
    margin: 0 auto;
    width: 320px;

}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(249, 248, 248, 0.303);
}

.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(--lighter);
    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);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--gray);
    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;
    color: var(--text-light);
}

.pricing-features li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.pricing-features li.disabled {
    color: var(--gray);
}

.pricing-features li.disabled::before {
    content: '\f00d';
    color: var(--error);
}


.pricing-card .btn.btn-primary {
    display: block;
    margin: 2rem auto 0;
    /* espaçamento e centralização */
    width: 60%;
    /* ou 100%, ou um valor fixo como 300px */
    position: static;
    /* remove o posicionamento absoluto */
    transition: none !important;
    transform: none !important;
    text-align: center;

}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

@media (max-width: 600px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
        /* ou mantenha 320px se quiser fixo */
        margin-bottom: 2rem;
        /* espaçamento entre os cards */
    }
}

@media (max-width: 600px) {
    .pricing-card .btn.btn-primary {
        width: 100%;
    }
}

/* 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: 3rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.btn-primary {

    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    justify-content: center;
    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-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
}

.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: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.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: #fff;
    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);
}

/* 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: 576px) {
    .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;
}

/* 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);
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .portfolio-carousel {
        max-width: 100%;
        border-radius: 10px;
    }
    .caption {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .service-card h2 {
        font-size: 2rem;
    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .service-content p {
        font-size: 1rem;
    }
    .footer-content {
        gap: 15px;
    }
}
@media (max-width: 600px) {
    .pricing-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    .pricing-price {
        font-size: 2rem;
        word-break: break-word;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .pricing-header {
        padding: 1rem;
    }
}
