/* 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: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    --text-light: #fff;
}

html {
    scroll-behavior: smooth;
    margin: 0;
}

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: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

p {
    line-height: 1.225;
    margin-bottom: 15px;

}

.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;
    text-shadow: none;
    
}

.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);
}

/* Hero Section */
.hero {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light);
    padding: 60px 0;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,...');
    /* mantido */
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.225rem;
    margin-bottom: 2rem;
    color: var(--dark);
    opacity: 0.9;
}

.hero p:last-child {
    margin-bottom: 0;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    max-width: 600px;
    margin: 2rem auto 0;
    display: block;
}

/* Section Titles */
.section-title {
    font-size: 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.225rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

        .portfolio-section {
               padding: 0rem 2rem;
    position: relative;
    margin-top: -3rem; /* sobe em relação à seção anterior */
        }

        .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(0, 178, 254, 0.8), rgba(3, 54, 106, 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;
        }
                @media (max-width: 768px) {
        .portfolio-overlay {
            opacity: 1;
            background: linear-gradient(to bottom, rgba(0, 178, 254, 0.162), rgba(3, 54, 106, 0.8));
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1; /* garante que não dependa do hover */
        }

        .portfolio-image {
            
            transform: none !important; /* evita zoom bugado no toque */
        }
        }


        .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: linear-gradient(to right, var(--primary-color), 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);
        }




/* Seção de Processo */
.process-section {
    padding: 5rem 2rem;
    background-color: white;
    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;
}

.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 right, var(--primary), var(--accent));
    color: white;
    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;
}


.carousel-btn:hover {
    background: var(--accent-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* 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(255, 255, 255, 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(246, 245, 245, 0.305);
    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-color);
    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: Sites Institucionais -------- */
.service-card:nth-child(1) .service-feature:nth-child(1)::before {
    content: '\f108'; /* fa-desktop */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(1) .service-feature:nth-child(2)::before {
    content: '\f5fd'; /* fa-th-large - layouts */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.service-card:nth-child(1) .service-feature:nth-child(3)::before {
    content: '\f1e0'; /* fa-share-alt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(1) .service-feature:nth-child(4)::before {
    content: '\f15c'; /* fa-file-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.service-card:nth-child(1) .service-feature:nth-child(5)::before {
    content: '\f232'; /* fa-whatsapp */
    font-family: "Font Awesome 5 Brands"; font-weight: 400;
}
.service-card:nth-child(1) .service-feature:nth-child(6)::before {
    content: '\f0e7'; /* fa-bolt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(1) .service-feature:nth-child(7)::before {
    content: '\f5a0'; /* fa-map-marked-alt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(1) .service-feature:nth-child(8)::before {
    content: '\f590'; /* fa-headset */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
/* -------- Card 2: Landing Pages -------- */
.service-card:nth-child(2) .service-feature:nth-child(1)::before {
    content: '\f108'; /* fa-desktop - design responsivo */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(2)::before {
    content: '\f5fd'; /* fa-th-large - layouts */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(3)::before {
    content: '\f1e0'; /* fa-share-alt - redes sociais */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(4)::before {
    content: '\f15c'; /* fa-file-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}
.service-card:nth-child(2) .service-feature:nth-child(5)::before {
    content: '\f201'; /* fa-chart-line - otimização para conversão */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(6)::before {
    content: '\f232'; /* fa-whatsapp */
    font-family: "Font Awesome 5 Brands"; font-weight: 400;
}
.service-card:nth-child(2) .service-feature:nth-child(7)::before {
    content: '\f0e7'; /* fa-bolt - carregamento rápido */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(8)::before {
    content: '\f5a0'; /* fa-map-marked-alt - mapa */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(2) .service-feature:nth-child(9)::before {
    content: '\f590'; /* fa-headset - suporte */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}


/* -------- Card 3: Portfólios -------- */
.service-card:nth-child(3) .service-feature:nth-child(1)::before {
    content: '\f108'; /* fa-desktop */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(2)::before {
    content: '\f5fd'; /* fa-th-large - layouts */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.service-card:nth-child(3) .service-feature:nth-child(3)::before {
    content: '\f1e0'; /* fa-share-alt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(4)::before {
    content: '\f15c'; /* fa-file-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.service-card:nth-child(3) .service-feature:nth-child(5)::before {
    content: '\f53f'; /* fa-images (galeria profissional extra) */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(6)::before {
    content: '\f02d'; /* fa-layer-group (design minimalista extra) */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(7)::before {
    content: '\f781'; /* fa-blog (blog integrado extra) */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(8)::before {
    content: '\f232'; /* fa-whatsapp */
    font-family: "Font Awesome 5 Brands"; font-weight: 400;
}
.service-card:nth-child(3) .service-feature:nth-child(9)::before {
    content: '\f0e7'; /* fa-bolt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(10)::before {
    content: '\f5a0'; /* fa-map-marked-alt */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}
.service-card:nth-child(3) .service-feature:nth-child(11)::before {
    content: '\f590'; /* fa-headset */
    font-family: "Font Awesome 5 Free"; font-weight: 900;
}

/* 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(--primary);
    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;
            padding: 80px 0;
        }


        .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);
            padding: 30px;
            max-width: 400px;
            width: 80%;
            margin: 0 auto;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-50px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.268);
        }

        .pricing-header {
            padding: 2rem;
            text-align: center;
            background-color: var(--light);
            border-bottom: 1px solid var(--gray-light);
        }

        .pricing-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            color: #fff;
        }

        .pricing-price span {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 400;
            margin-top: 0.5rem;
            margin-left: 0.25rem;
        }

        .pricing-period {
            color: #ccc;
            font-size: 0.875rem;
            margin-bottom: 20px;
        }

        .pricing-features {
            padding: 2rem;
        }

        .pricing-features ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .pricing-features li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 2rem;
            display: flex;
            align-items: center;
            color: #fff;
            text-align: left;
        }

        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

 

/* 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.225rem;
    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;
    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: var(--text-light);
    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: 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);
}

/* 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: 90px;
        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);
}