/* Estilos Gerais */
:root {
    --primary-color: #6b46c1;
    --secondary-color: #553c9a;
    --text-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-purple: #2d1b69;
    --black: #000000;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-size: cover;
    color: var(--text-color);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../images/gfycat-network-background-7ceo8pg1xxgcqj90.gif') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
    filter: blur(20px)
  }
  
  /* Camada escura por cima do fundo */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
  }

section {
    position: relative;
    z-index: 1;
}
.highlight-text {
    background: linear-gradient(45deg, #00e5e7, #01d178);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    animation: highlightPulse 2s ease-in-out infinite;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #00e5e7, #01d178);
    border-radius: 2px;
    animation: lineWidth 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0% {
        text-shadow: 0 0 10px rgba(0, 229, 231, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 229, 231, 0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 229, 231, 0.3);
    }
}

@keyframes lineWidth {
    0% {
        width: 100%;
        opacity: 0.5;
    }
    50% {
        width: 80%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.5;
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 3, 56, 0.95) 0%, rgba(7, 1, 28, 0.95) 100%);
    z-index: -1;
}

/* Otimização de performance */
.parallax-bg,
.parallax-bg-welcome,
.parallax-bg-process,
.parallax-bg-why,
.parallax-bg-contact,
.parallax-bg-faq {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Otimização de animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(14, 3, 56, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(107, 70, 193, 0.2);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 3, 56, 0.9) 0%, rgba(7, 1, 28, 0.9) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(45deg,#00e5e7, #01d178);background: linear-gradient(45deg,#00e5e7, #01d178);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.3);
    margin-bottom: 2rem;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 10px rgba(107, 70, 193, 0.5),
                     0 0 20px rgba(107, 70, 193, 0.3),
                     0 0 30px rgba(107, 70, 193, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(107, 70, 193, 0.8),
                     0 0 30px rgba(107, 70, 193, 0.5),
                     0 0 40px rgba(107, 70, 193, 0.3);
    }
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128C7E);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #128C7E, #25d366);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp i {
    margin-right: 12px;
    font-size: 1.4em;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp {
    animation: pulse 2s infinite;
}

/* Sobre Section */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 1rem;
}

/* Serviços Section */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: var(--white);
    font-size: 1.75rem;
}

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Estilos da Seção de Processo */
.process-section {
    background-color: #0e0338;
    color: #fff;
    padding: 120px 0;
}

.process-card {
    background: rgba(107, 70, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.3);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 111, 255, 0.3);
}

.process-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-card {
        margin-bottom: 2rem;
    }
}

/* Estilos para a seção de contato */
.contact-section {
    position: relative;
    padding: 120px 0;
    color: #fff;
}

.contact-section .overlay {
    background: linear-gradient(45deg, rgba(14, 3, 56, 0.95), rgba(107, 70, 193, 0.95));
}

.contact-section .section-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-info i {
    font-size: 1.5rem;
    color: #ff6fff;
}

.contact-info span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 1rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: none;
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, #6b46c1, #ff6fff);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.alert {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-info, .contact-form {
        margin-bottom: 2rem;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0 0;
    position: relative;
    color: #fff;
}

.footer-content {
    padding-bottom: 50px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-address i {
    color: var(--primary-color);
    margin-right: 10px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-copy, .footer-dev {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-dev a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: #fff;
}

.footer-dev i {
    color: #ff4d4d;
    margin: 0 5px;
}

@media (max-width: 991px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-heading {
        margin-top: 30px;
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .navbar-collapse .nav-link {
        color: var(--text-color) !important;
    }

    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }

    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .process-card {
        margin-bottom: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
}

.welcome-section,
.process-section,
.why-choose-us,
.contact-section,
.faq-section,
.pricing-section,
.portfolio-section,
#sobre {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: transparent;
}

.welcome-section::before,
.process-section::before,
.why-choose-us::before,
.contact-section::before,
.faq-section::before,
.pricing-section::before,
.portfolio-section::before,
#sobre::before {
    display: none;
}

.welcome-section {
    position: relative;
    padding: 4rem 0;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.welcome-card .image-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.welcome-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.welcome-card .content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-section h2,
.welcome-section h3 {
    color: #fff;
    margin-bottom: 20px;
}

.welcome-section .lead {
    color: #fff;
    line-height: 1.8;
    font-size: 1.2rem;
}

.welcome-section .features-list {
    margin-top: 30px;
}

.welcome-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

.welcome-section .feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.why-choose-us {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0338 0%, #07011c 100%);
}

.parallax-bg-why {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/rm251-mind-15.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
    filter: blur(12px);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.why-choose-us .section-title {
    color: #fff;
    margin-bottom: 50px;
}

.why-choose-us .section-title::after {
    background-color: var(--primary-color);
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-subtitle {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-text {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.alert {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.5s ease-out;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.alert i {
    font-size: 1.5rem;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#sobre {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0338 0%, #07011c 100%);
}

.parallax-bg-sobre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/rm251-mind-15.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
    filter: blur(3px);
}

#sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

#sobre .welcome-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#sobre .section-title {
    color: #fff;
    margin-bottom: 30px;
}

#sobre .lead {
    color: #fff;
    margin-bottom: 30px;
}

#sobre .features-list {
    margin-top: 30px;
}

#sobre .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

#sobre .feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0338 0%, #07011c 100%);
}

.parallax-bg-faq {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/5176966.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
    filter: blur(24px);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.faq-section .section-title {
    color: #fff;
    margin-bottom: 50px;
}

.faq-section .section-title::after {
    background-color: var(--primary-color);
}

.faq-image-container {
    padding: 20px;
    text-align: center;
    position: relative;
}

.faq-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(107, 70, 193, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.faq-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
    position: relative;
    z-index: 0;
}

.accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.1);
    --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
    --bs-accordion-btn-bg: rgba(255, 255, 255, 0.1);
    --bs-accordion-active-bg: var(--primary-color);
    --bs-accordion-active-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
    background: transparent;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    font-size: 1.1rem;
    color: #fff;
    background-color: var(--bs-accordion-btn-bg);
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    background-color: var(--bs-accordion-bg);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    background-color: #fff;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

#backToTop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    background: rgba(124, 58, 237, 0.9);
    color: #fff;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: rgba(124, 58, 237, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

#backToTop i {
    transition: transform 0.3s ease;
}

#backToTop:hover i {
    transform: translateY(-2px);
}

/* Seção de Valores */
.pricing-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0338 0%, #07011c 100%);
}

.parallax-bg-pricing {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/5176966.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
    filter: blur(24px);
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.pricing-section .section-title {
    color: #fff;
    margin-bottom: 50px;
}

.pricing-section .section-title::after {
    background-color: var(--primary-color);
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn-whatsapp {
    width: 100%;
}

.guarantee-box {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.guarantee-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guarantee-box p {
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #0e0338 0%, #07011c 100%);
}

.parallax-bg-portfolio {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/5176966.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
    filter: blur(24px);
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.portfolio-section .section-title {
    color: #fff;
    margin-bottom: 50px;
}

.portfolio-section .section-title::after {
    background-color: var(--primary-color);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Adiciona classe para centralizar quando for único */
.portfolio-item:only-child {
    margin: 0 auto;
    max-width: 500px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-image .image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    cursor: pointer;
}

.portfolio-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-image .image-wrapper.loaded img {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-image .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    pointer-events: none;
}

.portfolio-image .image-wrapper.loaded .placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 767.98px) {
    .portfolio-image .image-wrapper {
        height: 200px;
    }
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: #fff;
    padding: 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-info .btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-info .btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* WhatsApp Container e Botão */
.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999999;
}

.float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
}

.my-float {
    font-size: 30px;
    line-height: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .float {
        width: 50px;
        height: 50px;
    }
    
    .my-float {
        font-size: 25px;
    }
}

.parallax-bg-welcome,
.parallax-bg-process,
.parallax-bg-why,
.parallax-bg-contact,
.parallax-bg-faq,
.parallax-bg-pricing,
.parallax-bg-portfolio,
.parallax-bg-sobre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #ff6fff 0%,
        #c726ff 15%,
        #6e1fff 35%,
        #3a1c71 55%,
        #1a0856 75%,
        #0e0338 90%,
        #07011c 100%
    );
    background-size: 400% 400%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: translateZ(0);
    filter: blur(3px);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.banner-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(14, 3, 56, 0.9), rgba(107, 70, 193, 0.8));
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-card .btn-whatsapp {
    width: 100%;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .banner-section {
        padding: 100px 0 60px;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Serviços e Preços - Tema Escuro */
.services-section, .pricing-section {
    background-color: #0e0338;
    color: #fff;
}

.service-card {
    background: rgba(107, 70, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
    color: #fff;
}

.service-card h3 {
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features li i {
    color: #ff6fff;
}

.service-icon {
    background: linear-gradient(45deg, #6b46c1, #ff6fff);
}

.pricing-card {
    background: rgba(107, 70, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
    color: #fff;
}

.pricing-header h3 {
    color: #fff;
}

.price .currency, .price .period {
    color: rgba(255, 255, 255, 0.8);
}

.price .amount {
    color: #ff6fff;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: #ff6fff;
}

.guarantee {
    color: rgba(255, 255, 255, 0.8);
}

.guarantee i {
    color: #ff6fff;
}

.badge-urgente {
    background: linear-gradient(45deg, #6b46c1, #ff6fff);
}

.contador-oferta {
    background: linear-gradient(45deg, #6b46c1, #ff6fff);
}

/* Hover Effects */
.service-card:hover, .pricing-card:hover {
    background: rgba(107, 70, 193, 0.15);
    border-color: rgba(107, 70, 193, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .service-card, .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Ajustes do Botão WhatsApp para Mobile */
@media (max-width: 767.98px) {
    .btn-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-whatsapp i {
        font-size: 1rem;
    }

    .btn-whatsapp.btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .pricing-footer .btn-whatsapp {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Ajustes Mobile para Home */
@media (max-width: 767.98px) {
    /* Hero Section */
    .hero-section {
    padding: 60px 0;
    }

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

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Welcome Section */
    .welcome-card {
        padding: 1.5rem;
    }

    .welcome-card h2 {
        font-size: 1.8rem;
    }

    .welcome-card h3 {
        font-size: 1.5rem;
    }

    .welcome-card .lead {
        font-size: 1rem;
    }

    .welcome-card img {
        margin-top: 2rem;
    }

    /* Process Section */
    .process-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .process-number {
        font-size: 2.5rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }

    /* Why Choose Us */
    .mission-card {
        padding: 1.5rem;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-subtitle {
        font-size: 1.8rem;
    }

    /* Portfolio Section */
    .portfolio-item {
        margin-bottom: 1.5rem;
    }

    .portfolio-info h4 {
        font-size: 1.2rem;
    }

    .portfolio-info p {
        font-size: 0.9rem;
    }

    /* Pricing Section */
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .pricing-features ul li {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section .section-title {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .accordion-body {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-info span {
        font-size: 0.9rem;
    }

    /* Ajustes Gerais */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Ajustes de Espaçamento */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mt-5 {
        margin-top: 2rem !important;
    }
}

/* Portfolio Cards com Carrossel */
.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.portfolio-card .carousel {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-card .carousel-item {
    height: 250px;
}

.portfolio-card .carousel-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-card .carousel-item img:hover {
    transform: scale(1.02);
}

.portfolio-card .carousel-control-prev,
.portfolio-card .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 10px;
}

.portfolio-card .carousel-control-prev {
    left: 0;
}

.portfolio-card .carousel-control-next {
    right: 0;
}

.portfolio-content {
    padding: 1.5rem;
    background: rgba(14, 3, 56, 0.8);
}

.portfolio-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-content .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-content .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Ajustes Mobile para Portfolio */
@media (max-width: 767.98px) {
    .portfolio-card .carousel,
    .portfolio-card .carousel-item {
        height: 200px;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
    }

    .portfolio-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .portfolio-content .btn-primary {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Estilos para os modais */
.modal-content {
    background: transparent;
    border: none;
}

.modal-body {
    position: relative;
    background: rgba(14, 3, 56, 0.95);
    border-radius: 15px;
    overflow: hidden;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 1050;
}

.btn-close:hover {
    background-color: #fff;
}

/* Ajustes Mobile para Modais */
@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 0;
    }

    .btn-close {
        padding: 0.3rem;
    }
}

/* Estilos para as imagens do portfólio com Fancybox */
.portfolio-card .carousel-item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.portfolio-card .carousel-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card .carousel-item a:hover::after {
    opacity: 1;
}

.portfolio-card .carousel-item img {
    transition: transform 0.3s ease;
}

.portfolio-card .carousel-item a:hover img {
    transform: scale(1.05);
}

/* Ajustes do Fancybox */
.fancybox__container {
    --fancybox-bg: rgba(14, 3, 56, 0.95);
}

.fancybox__toolbar {
    --fancybox-accent-color: var(--primary-color);
}

.fancybox__button {
    color: #fff;
}

.fancybox__button:hover {
    color: var(--primary-color);
}

.fancybox__caption {
    color: #fff;
    font-size: 1rem;
    padding: 1rem;
    text-align: center;
}

/* Ajustes Mobile */
@media (max-width: 767.98px) {
    .portfolio-card .carousel-item a::after {
        display: none;
    }

    .fancybox__caption {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Estilos para Lazy Loading e Placeholder */
.image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: transparent;
    cursor: default;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
}

.image-wrapper.loaded img {
    opacity: 1;
    pointer-events: auto;
}

.image-wrapper .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    pointer-events: none;
}

.image-wrapper.loaded .placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-image .image-wrapper {
    cursor: pointer;
}

.portfolio-image .image-wrapper:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 767.98px) {
    .image-wrapper {
        height: 300px;
        margin: 0;
        width: 100%;
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

/* Ajustes específicos para diferentes seções */
.portfolio-section .image-wrapper {
    height: 250px;
}

.portfolio-section .image-wrapper img {
    position: absolute;
    height: 100%;
    object-fit: cover;
}

.faq-image-container .image-wrapper {
    height: 400px;
}

.faq-image-container .image-wrapper img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .portfolio-section .image-wrapper {
        height: 200px;
    }
    
    .faq-image-container .image-wrapper {
        height: 300px;
    }
}

/* Portfolio Carousel */
#portfolioCarousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding-right: 200px; /* Espaço para o botão Saiba Mais */
}

#portfolioCarousel .carousel-item {
    padding: 0 15px;
}

#portfolioCarousel .portfolio-item {
    margin: 0;
}

/* Saiba Mais Control */
.saiba-mais-control {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border-radius: 0 15px 15px 0;
}

.saiba-mais-control::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 15px 15px 0;
}

.saiba-mais-control:hover {
    text-decoration: none;
    color: #fff;
}

.saiba-mais-control:hover::before {
    opacity: 1;
}

.saiba-mais-control .text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.saiba-mais-control .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.saiba-mais-control:hover .icon {
    transform: translateX(5px);
    background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
    #portfolioCarousel {
        padding-right: 0;
    }
    
    .saiba-mais-control {
        position: relative;
        width: 100%;
        height: 80px;
        margin-top: 20px;
        border-radius: 15px;
    }
    
    .saiba-mais-control::before {
        border-radius: 15px;
    }
}

/* Portfolio Image Wrapper */
.portfolio-card .image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.portfolio-card .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card .image-wrapper img.loaded {
    opacity: 1;
}

/* Placeholder Animation */
.portfolio-card .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-card .image-wrapper.loaded .placeholder {
    opacity: 0;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Carousel Item */
.carousel-item {
    position: relative;
    height: 250px;
}

.carousel-item a {
    display: block;
    height: 100%;
}

/* Responsive */
@media (max-width: 767.98px) {
    .portfolio-card .image-wrapper,
    .carousel-item {
        height: 200px;
    }
}

.welcome-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 2rem;
    max-width: 100%;
    display: block;
}

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

@media (max-width: 767.98px) {
    .welcome-card {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .welcome-card img {
        margin: 2rem -1.5rem;
        width: calc(100% + 3rem);
        border-radius: 0;
        max-width: none;
    }
}

.problem-section, .solution-section, .differentials-section {
    padding: 80px 0;
    color: #fff;
}

.problem-list, .solution-list {
    margin-top: 2rem;
}

.problem-item, .solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.problem-item i {
    color: #dc3545;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.solution-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.differential-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.differential-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author h5 {
    margin: 0;
    color: var(--primary-color);
}

.welcome-section .image-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-section .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.welcome-section .welcome-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.welcome-section .welcome-card .row {
    height: 100%;
}

.welcome-section .welcome-card .col-lg-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title.text-white {
    background: linear-gradient(45deg, #00e5e7, #01d178);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    animation: highlightPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 229, 231, 0.3);
}

.section-title.text-white::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #00e5e7, #01d178);
    border-radius: 2px;
    animation: lineWidth 2s ease-in-out infinite;
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(14, 3, 56, 0.95) 0%, rgba(7, 1, 28, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/gfycat-network-background-7ceo8pg1xxgcqj90.gif') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    .welcome-section .image-wrapper {
        height: 300px;
        margin: 2rem 0;
    }

    .welcome-section .image-wrapper img {
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .welcome-section .welcome-card {
        margin-bottom: 2rem;
    }

    .welcome-section .welcome-card .row {
        flex-direction: column;
    }

    .welcome-section .welcome-card .col-lg-6 {
        padding: 0 15px;
    }

    .welcome-section .welcome-card .col-lg-6:first-child {
        order: 2;
    }

    .welcome-section .welcome-card .col-lg-6:last-child {
        order: 1;
    }
}

@media (max-width: 767.98px) {
    .welcome-section .image-wrapper {
        height: 250px;
    }

    .welcome-section .welcome-card {
        padding: 1.5rem;
    }

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

    .welcome-section .lead {
        font-size: 1rem;
    }
}

@media (max-width: 991.98px) {
    .welcome-card {
        margin-bottom: 2rem;
    }

    .welcome-card .image-wrapper {
        min-height: 250px;
    }

    .welcome-card .content-wrapper {
        padding: 2rem !important;
    }

    .welcome-card .row {
        flex-direction: column;
    }

    .welcome-card .col-lg-6 {
        width: 100%;
    }

    /* Força a imagem a aparecer primeiro em mobile */
    .welcome-card .col-lg-6:first-child {
        order: 1;
    }

    .welcome-card .col-lg-6:last-child {
        order: 2;
    }

    /* Remove as classes de ordem específicas do desktop */
    .welcome-card .col-lg-6.order-lg-1,
    .welcome-card .col-lg-6.order-lg-2 {
        order: unset;
    }
}