
        :root {
            --primary-dark: #435770;
            --primary-light: #dbe1e3;
            --white: #ffffff;
            --black: #000000;
            --accent: #957c5b;
            --highlight: #b1a79e;
            --text-dark: #2a2a2a;
            --text-light: #5a5a5a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
            --border-radius: 16px;
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Manrope', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
            position: relative;
            font-weight: 400;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(219, 225, 227, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 90% 78%, rgba(219, 225, 227, 0.25) 0%, transparent 25%);
            z-index: -1;
        }

                    .floating-btn {
                        position: fixed;
                        bottom: 30px;
                        right: 30px;
                        width: 50px;
                        height: 50px;
                        background: linear-gradient(135deg, #99b3d6 0%, #4b85a2 100%);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
                        cursor: pointer;
                        z-index: 1000;
                        transition: all 0.3s ease;
                        text-decoration: none;
                        animation: pulse 2s infinite;
                    }

                    .floating-btn:hover {
                        transform: scale(1.1) rotate(5deg);
                        box-shadow: 0 6px 25px rgba(0,0,0,0.4);
                    }

                    .floating-btn:active {
                        transform: scale(0.95);
                    }

                    .floating-btn i {
                        color: white;
                        font-size: 28px;
                        font-weight: bold;
                    }

                    .badge {
                        position: absolute;
                        top: -5px;
                        right: -5px;
                        background: #ff4757;
                        color: white;
                        border-radius: 50%;
                        width: 25px;
                        height: 25px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 12px;
                        font-weight: bold;
                        animation: bounce 1s infinite;
                    }

                    .tooltip {
                        position: absolute;
                        right: 85px;
                        background: rgba(0,0,0,0.8);
                        color: white;
                        padding: 10px 15px;
                        border-radius: 8px;
                        font-size: 14px;
                        white-space: nowrap;
                        opacity: 0;
                        transform: translateX(10px);
                        transition: all 0.3s ease;
                        pointer-events: none;
                    }

                    .floating-btn:hover .tooltip {
                        opacity: 1;
                        transform: translateX(0);
                    }

                    @keyframes pulse {
                        0% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4); }
                        50% { box-shadow: 0 4px 30px rgba(102, 126, 234, 0.8); }
                        100% { box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4); }
                    }

                    @keyframes bounce {
                        0%, 100% { transform: scale(1); }
                        50% { transform: scale(1.2); }
                    }

                    @media (max-width: 768px) {
                        .floating-btn {
                            bottom: 20px;
                            right: 20px;
                            width: 40px;
                            height: 40px;
                        }
                        
                        .floating-btn i {
                            font-size: 24px;
                        }
                        
                        .tooltip {
                            font-size: 12px;
                            padding: 8px 12px;
                            right: 75px;
                        }
                        
                        .badge {
                            width: 20px;
                            height: 20px;
                            font-size: 10px;
                        }
                    }

                    @media (max-width: 480px) {
                        .floating-btn {
                            bottom: 15px;
                            right: 15px;
                            width: 35px;
                            height: 35px;
                        }
                        
                        .floating-btn i {
                            font-size: 22px;
                        }
                        
                        .tooltip {
                            content: "Cupons!";
                            right: 65px;
                        }
                    }
                
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 18px 0;
            z-index: 1000;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(67, 87, 112, 0.1);
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-sm);
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* Logo Styles */
        .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 1001;
        text-decoration: none;
        transition: var(--transition);
        }

        .logo:hover {
        transform: translateY(-2px);
        }

        .logo-img {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
        border-radius: 50%;
        padding: 4px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        overflow: hidden;
        border: 2px solid var(--primary-light);
        }

        .logo:hover .logo-img {
        transform: rotate(5deg) scale(1.05);
        box-shadow: var(--shadow-lg);
        }

        .logo-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        filter: brightness(1.1) contrast(1.1);
        }

        .logo-text {
        display: flex;
        flex-direction: column;
        }

        .logo-name {
        font-family: var(--font-secondary);
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-dark);
        line-height: 1;
        letter-spacing: -0.5px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .logo-subtext {
        font-size: 0.7rem;
        color: var(--text-light);
        margin-top: 4px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
        }

        .nav ul {
            display: flex;
            list-style: none;
            gap: 42px;
        }

        .nav ul li {
            position: relative;
        }

        .nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
            font-size: 1.05rem;
            letter-spacing: -0.2px;
            font-family: var(--font-secondary);
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-dark);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav ul li a:hover::after,
        .nav ul li a.active::after {
            width: 100%;
        }

        .nav ul li a:hover {
            color: var(--primary-dark);
        }

        .header-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 1001;
            background: none;
            border: none;
            transition: var(--transition);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            background: var(--primary-light);
        }

        .mobile-menu-btn:hover {
            color: var(--white);
            background: var(--primary-dark);
            transform: rotate(90deg);
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            background: var(--primary-dark);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--primary-dark);
            font-size: 0.95rem;
            font-family: var(--font-secondary);
        }

        .btn-whatsapp:hover {
            background: transparent;
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-services {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            background: transparent;
            color: var(--primary-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--primary-dark);
            font-size: 0.95rem;
            font-family: var(--font-secondary);
        }

        .btn-services:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        
        @media (max-width: 768px) {
            .nav ul {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                transition: var(--transition);
                z-index: 999;
                padding: 100px 40px 40px;
                box-shadow: var(--shadow-lg);
            }
            
            .nav ul.active {
                left: 0;
            }
            
            .nav ul li {
                margin-left: 0;
                opacity: 0;
                transform: translateX(-30px);
                width: 100%;
                border-bottom: 1px solid rgba(67, 87, 112, 0.1);
            }
            
            .nav ul li:last-child {
                border-bottom: none;
            }
            
            .nav ul li a {
                display: block;
                padding: 18px 0;
                font-size: 1.1rem;
            }
            
            .nav ul.active li {
                opacity: 1;
                transform: translateX(0);
                transition: opacity 0.5s ease, transform 0.5s ease;
            }
            
            .nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav ul.active li:nth-child(5) { transition-delay: 0.5s; }
            
            .header-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 15px);
                margin-bottom: 20px;
            }
            
            .hero-stats {
                gap: 30px 20px;
                padding-top: 30px;
            }
            
            .btn {
                padding: 18px 32px;
                font-size: 1.05rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .crn-badge {
                bottom: -15px;
                right: -15px;
                font-size: 0.9rem;
                padding: 14px 22px;
            }
            
            .container {
                padding: 0 24px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.2;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
            
            .floating-element:nth-child(1),
            .floating-element:nth-child(2),
            .floating-element:nth-child(3),
            .floating-element:nth-child(4) {
                display: none;
            }
            
            .image-wrapper {
                transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
            }
            
            .hero .container {
                gap: 50px;
            }
        }
        
        /* Responsive adjustments for logo */
        @media (max-width: 768px) {
        .logo-img {
            width: 50px;
            height: 50px;
        }
        
        .logo-name {
            font-size: 1.5rem;
        }
        
        .logo-subtext {
            font-size: 0.6rem;
        }
        }

        @media (max-width: 480px) {
        .logo-img {
            width: 45px;
            height: 45px;
        }
        
        .logo-name {
            font-size: 1.3rem;
        }
        
        .logo-subtext {
            font-size: 0.55rem;
            letter-spacing: 1.2px;
        }
        }

        @media (max-width: 380px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
        }

    .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
/* Hero Section - CSS Otimizado */
.hero {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}



.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -1.5px;
}

.title-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary-dark);
    z-index: 1;
    padding: 0 8px;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 18px;
    background-color: var(--highlight);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 4px;
    opacity: 0.9;
    transition: var(--transition);
    animation: highlightPulse 3s infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 42px;
    max-width: 520px;
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--font-primary);
    padding-left: 8px;
    border-left: 4px solid var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--accent);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: white;
}

.hero-stats {
    margin-top: 40px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(67, 87, 112, 0.1);
    padding-top: 40px;
}

.stat-item {
    text-align: left;
    position: relative;
    padding-left: 30px;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(67, 87, 112, 0.2);
    animation: pulse 2s infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
    letter-spacing: -1px;
    text-shadow: 2px 2px 0 rgba(67, 87, 112, 0.1);
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: var(--font-primary);
}

/* Removido opacity:0 e transform inicial para carregamento mais rápido */
.hero-image {
    position: relative;
    /* opacity:0 e transform removidos - carrega visível instantaneamente */
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    border: 1px solid rgba(67, 87, 112, 0.1);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    filter: grayscale(0.05) contrast(1.05);
}

.image-wrapper:hover img {
    transform: scale(1.08);
}

.crn-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-dark);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--white);
    font-family: var(--font-secondary);
    animation: pulse 2s infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-dark);
    opacity: 0.08;
    animation: float 10s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 10%;
    width: 120px;
    height: 120px;
    animation-delay: 1s;
}

.floating-element:nth-child(3) {
    top: 30%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
    background: var(--accent);
}

.floating-element:nth-child(4) {
    bottom: 20%;
    right: 5%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes highlightPulse {
    0% {
        opacity: 0.7;
        height: 18px;
    }
    50% {
        opacity: 0.9;
        height: 22px;
    }
    100% {
        opacity: 0.7;
        height: 18px;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .hero .container {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        order: 2;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        padding-left: 0;
    }
    
    .stat-item::before {
        display: none;
    }
    
    .hero-image {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        order: 1;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 36px;
        border-left: none;
        padding-left: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transition: var(--transition);
        z-index: 999;
        padding: 100px 40px 40px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav ul.active {
        left: 0;
    }
    
    .nav ul li {
        margin-left: 0;
        opacity: 0;
        transform: translateX(-30px);
        width: 100%;
        border-bottom: 1px solid rgba(67, 87, 112, 0.1);
    }
    
    .nav ul li:last-child {
        border-bottom: none;
    }
    
    .nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }
    
    .nav ul.active li {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav ul.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .header-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
    }
    
    .hero-stats {
        gap: 30px 20px;
        padding-top: 30px;
    }
    
    .btn {
        padding: 18px 32px;
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .crn-badge {
        bottom: -15px;
        right: -15px;
        font-size: 0.9rem;
        padding: 14px 22px;
    }
    
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .floating-element:nth-child(1),
    .floating-element:nth-child(2),
    .floating-element:nth-child(3),
    .floating-element:nth-child(4) {
        display: none;
    }
    
    .image-wrapper {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero .container {
        gap: 50px;
    }
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-name {
        font-size: 1.5rem;
    }
    
    .logo-subtext {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
    
    .logo-subtext {
        font-size: 0.55rem;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}


        /* About Section */
        .about {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.97), rgba(219, 225, 227, 0.15));
        }

        .about::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--primary-dark);
            opacity: 0.03;
            border-radius: 50%;
            z-index: 0;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--accent);
            opacity: 0.03;
            border-radius: 50%;
            z-index: 0;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-content {
            padding-right: 40px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-dark);
            background: rgba(67, 87, 112, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .about-title {
            font-family: var(--font-secondary);
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 28px;
            line-height: 1.2;
            color: var(--primary-dark);
            letter-spacing: -1px;
        }

        .title-highlight {
            position: relative;
            display: inline-block;
            color: var(--primary-dark);
            z-index: 1;
            padding: 0 5px;
        }

        .title-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--highlight);
            z-index: -1;
            transform: skewX(-15deg);
            border-radius: 3px;
            opacity: 0.8;
        }

        .about-description {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.8;
        }

        .about-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 50%;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .detail-item:hover .detail-icon {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-5px);
        }

        .detail-content h4 {
            font-family: var(--font-secondary);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .detail-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .signature {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(67, 87, 112, 0.1);
        }

        .signature-img {
            width: 50px;
            opacity: 0.9;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
        }

        .signature-text {
            font-family: var(--font-secondary);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .signature-text span {
            display: block;
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
            margin-top: 5px;
        }

        .about-image {
            position: relative;
        }

        .image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
            transition: var(--transition);
        }

        .image-container:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .achievements {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: var(--white);
            padding: 25px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            width: 80%;
            z-index: 3;
        }

        .achievement-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .achievement-item:last-child {
            margin-bottom: 0;
        }

        .achievement-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 10px;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .achievement-content {
            flex: 1;
        }

        .achievement-content h4 {
            font-family: var(--font-secondary);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 3px;
        }

        .achievement-content p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .credentials {
            position: absolute;
            top: 30px;
            right: -20px;
            background: var(--primary-dark);
            color: var(--white);
            padding: 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            z-index: 3;
            text-align: center;
            animation: pulse 2s infinite;
        }

        .credentials h4 {
            font-family: var(--font-secondary);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .credentials p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1001;
            text-decoration: none;
            transition: var(--transition);
            margin-bottom: 40px;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo-img {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            border-radius: 50%;
            padding: 4px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            overflow: hidden;
            border: 2px solid var(--primary-light);
        }

        .logo:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
            filter: brightness(1.1) contrast(1.1);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-name {
            font-family: var(--font-secondary);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1;
            letter-spacing: -0.5px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .logo-subtext {
            font-size: 0.7rem;
            color: var(--text-light);
            margin-top: 4px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* Animações */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            }
        }

        /* Responsividade */
        @media (max-width: 1100px) {
            .about .container {
                gap: 60px;
            }
            
            .about-title {
                font-size: 2.8rem;
            }
            
            .about-details {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 900px) {
            .about .container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                padding-right: 0;
                order: 2;
                text-align: center;
            }
            
            .about-details {
                grid-template-columns: 1fr 1fr;
            }
            
            .detail-item {
                justify-content: center;
                text-align: center;
                flex-direction: column;
            }
            
            .signature {
                justify-content: center;
            }
            
            .achievements {
                position: relative;
                bottom: 0;
                left: 0;
                width: 100%;
                margin-top: 40px;
            }
            
            .credentials {
                position: relative;
                top: 0;
                right: 0;
                margin-bottom: 30px;
                margin-left: auto;
                margin-right: auto;
                max-width: 300px;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 0px 0;
            }
            
            .about-title {
                font-size: 2.4rem;
            }
            
            .about-description {
                font-size: 1.1rem;
            }
            
            .about-details {
                grid-template-columns: 1fr;
            }
           
            .detail-item i {
                flex-direction: row;
                text-align: left;
                justify-content: flex-start;
            }
            .detail-item {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            height: 100% !important; /* garante que ocupe toda a altura do container pai */
            width: 100% !important;  /* garante que ocupe toda a largura do container pai */
            text-align: center !important;
        }

            .logo {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-title {
                font-size: 2rem;
            }
            
            .logo-img {
                width: 50px;
                height: 50px;
            }
            
            .logo-name {
                font-size: 1.5rem;
            }
            
            .detail-item {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            
            .signature {
                flex-direction: column;
                text-align: center;
            }
            
            .credentials, .achievements {
                width: 100%;
                margin-top: 10px;
                left: 0;
                right: 0;
            }
        }

        /* Reset e variáveis CSS otimizadas */
        :root {
            --primary-color: #2c5530;
            --secondary-color: #4a7c59;
            --accent-color: #8fb996;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

       
        /* Services Marketing Section - Design Premium */
        .services-marketing-01 {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .services-marketing-01::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(67, 87, 112, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .services-marketing-01::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(156, 88, 73, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .marketing-header-01 {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .logo-marketing-01 {
            margin-bottom: 30px;
        }

        .marketing-logo-01 {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }

        .marketing-title-01 {
            font-family: var(--font-secondary);
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
        }

        .marketing-title-01::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--highlight));
            border-radius: 2px;
        }

        .title-highlight-01 {
            color: var(--accent);
            position: relative;
        }

        .title-highlight-01::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(156, 88, 73, 0.2);
            z-index: -1;
            border-radius: 2px;
        }

        .marketing-subtitle-01 {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 400;
            line-height: 1.8;
        }

        .marketing-content-01 {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .marketing-differentials-01 {
            position: relative;
        }

        .differential-grid-01 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .differential-item-01 {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(67, 87, 112, 0.08);
            position: relative;
            overflow: hidden;
        }

        .differential-item-01::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary-dark), var(--accent));
            transition: height 0.6s ease;
        }

        .differential-item-01:hover::before {
            height: 100%;
        }

        .differential-item-01:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .differential-icon-01 {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            color: var(--white);
            border-radius: 18px;
            font-size: 1.8rem;
            margin-bottom: 20px;
            box-shadow: 0 10px 25px rgba(67, 87, 112, 0.2);
            transition: all 0.4s ease;
        }

        .differential-item-01:hover .differential-icon-01 {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 15px 30px rgba(67, 87, 112, 0.3);
        }

        .differential-item-01 h3 {
            font-family: var(--font-secondary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .differential-item-01 p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
        }

        .conclusion-box-01 {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #526c86 100%);
            color: var(--white);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(67, 87, 112, 0.2);
        }

        .conclusion-box-01::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
            animation: rotate-01 15s linear infinite;
        }

        @keyframes rotate-01 {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .conclusion-icon-01 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--highlight);
            position: relative;
            z-index: 2;
        }

        .conclusion-box-01 h3 {
            font-family: var(--font-secondary);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .conclusion-box-01 p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .marketing-image-01 {
            position: relative;
        }

        .image-container-01 {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            border: 4px solid var(--white);
            transition: all 0.5s ease;
        }

        .image-container-01::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 15px;
            z-index: 2;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-container-01:hover::before {
            opacity: 1;
        }

        .image-container-01:hover {
            border-color: var(--highlight);
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .main-image-01 {
            width: 100%;
            height:850px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .image-container-01:hover .main-image-01 {
            transform: scale(1.05);
        }

        .image-overlay-01 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--white);
            z-index: 3;
        }

        .image-overlay-01 h3 {
            font-family: var(--font-secondary);
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        .image-overlay-01 p {
            opacity: 0.9;
            font-size: 1rem;
        }

        .bonus-section-01 {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(67, 87, 112, 0.1);
        }

        .bonus-title-01 {
            font-family: var(--font-secondary);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 25px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .bonus-title-01 i {
            color: var(--accent);
        }

        .bonus-grid-01 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .bonus-item-01 {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(67, 87, 112, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .bonus-item-01:hover {
            background: rgba(67, 87, 112, 0.1);
            transform: translateX(5px);
        }

        .bonus-item-01 i {
            color: var(--accent);
            font-size: 1.2rem;
            width: 25px;
        }

        .bonus-item-01 span {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .cta-section-01 {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #526c86 100%);
            padding: 60px 40px;
            border-radius: 0px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(67, 87, 112, 0.2);
        }

        .cta-section-01::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }

        .cta-content-01 {
            position: relative;
            z-index: 2;
        }

        .cta-content-01 h3 {
            font-family: var(--font-secondary);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-content-01 p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .cta-button-01 {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: var(--highlight);
            color: var(--primary-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
            font-size: 1.1rem;
        }

        .cta-button-01:hover {
            background: var(--white);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .marketing-content-01 {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .differential-grid-01 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-marketing-01 {
                padding: 80px 0;
            }
            
            .marketing-title-01 {
                font-size: 2.5rem;
            }
            
            .marketing-subtitle-01 {
                font-size: 1.1rem;
            }
            
            .differential-grid-01 {
                grid-template-columns: 1fr;
            }
            
            .bonus-grid-01 {
                grid-template-columns: 1fr;
            }
            
            .cta-content-01 h3 {
                font-size: 1.8rem;
            }
            
            .cta-content-01 p {
                font-size: 1.1rem;
            }
            
            .marketing-logo-01 {
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .marketing-title-01 {
                font-size: 2rem;
            }
            
            .differential-item-01 {
                padding: 25px 20px;
            }
            
            .differential-icon-01 {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .conclusion-box-01 {
                padding: 30px 20px;
            }
            
            .conclusion-box-01 h3 {
                font-size: 1.5rem;
            }
            
            .cta-section-01 {
                padding: 40px 20px;
            }
            
            .cta-content-01 h3 {
                font-size: 1.6rem;
            }
            
            .cta-button-01 {
                padding: 16px 30px;
                font-size: 1rem;
            }
        }


    
        .bonus {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .bonus::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(67, 87, 112, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(156, 88, 73, 0.03) 0%, transparent 50%);
            z-index: 0;
        }

        .bonus-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-dark);
            background: rgba(67, 87, 112, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .bonus-title {
            font-family: var(--font-secondary);
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }

        .title-highlight {
            position: relative;
            display: inline-block;
            color: var(--accent);
            font-weight: 800;
        }

        .bonus-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
            line-height: 1.8;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .bonus-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            height: 450px;
            border: 1px solid rgba(67, 87, 112, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 40px 30px;
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-dark), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
            z-index: 3;
        }

        .bonus-card:hover::before {
            transform: scaleX(1);
        }

        .bonus-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .bonus-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            color: var(--white);
            border-radius: 22px;
            margin-bottom: 30px;
            box-shadow: 0 15px 30px rgba(67, 87, 112, 0.2);
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .bonus-icon::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border-radius: 25px;
            background: inherit;
            filter: blur(20px);
            opacity: 0.3;
            z-index: -1;
            transition: all 0.5s ease;
        }

        .bonus-card:hover .bonus-icon {
            transform: translateY(-10px) rotate(5deg);
            box-shadow: 0 25px 40px rgba(67, 87, 112, 0.3);
        }

        .bonus-card:hover .bonus-icon::after {
            opacity: 0.5;
            filter: blur(25px);
        }

        /* Ajuste para os ícones - todos terão o mesmo tamanho visual */
        .bonus-icon i {
            font-size: 2.2rem;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Ajustes específicos para ícones que naturalmente são menores */
        .bonus-icon .fa-percent,
        .bonus-icon .fa-exchange-alt,
        .bonus-icon .fa-gift,
        .bonus-icon .fa-surprise {
            transform: scale(1.2);
        }

        .bonus-name {
            font-family: var(--font-secondary);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .bonus-description {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .bonus-tag {
            display: inline-block;
            padding: 10px 22px;
            background: linear-gradient(135deg, var(--primary-light) 0%, #e8edf0 100%);
            color: var(--primary-dark);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            margin-top: auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }

        /* Responsividade */
        @media (max-width: 1200px) {
            .bonus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .bonus {
                padding: 60px 0;
            }
            
            .bonus-title {
                font-size: 2.2rem;
            }
            
            .bonus-subtitle {
                font-size: 1.1rem;
            }
            
            .bonus-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .bonus-card {
                height: 350px;
                padding: 30px 25px;
            }
            
            .bonus-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 25px;
            }
            
            .bonus-icon i {
                font-size: 2rem;
            }
            
            .bonus-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .bonus-title {
                font-size: 2rem;
            }
            
            .bonus-card {
                height: 360px;
                padding: 25px 20px;
            }
            
            .bonus-icon {
                width: 65px;
                height: 65px;
                margin-bottom: 20px;
            }
            
            .bonus-icon i {
                font-size: 1.8rem;
            }
            
            .bonus-name {
                font-size: 1.4rem;
            }
            
            .bonus-description {
                font-size: 1rem;
            }
        }
 
    


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Minha História Section */
.my-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.my-story::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 87, 112, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.my-story::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(149, 124, 91, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.section-header {
    display: block !important;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.section-label {
    display: inline-block !important;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(67, 87, 112, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 20px 0 !important;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    padding: 0;
    clear: both;
    width: 100%;
}

.video-instruction {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 10px;
}

.story-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.story-video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.story-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-video-card.featured {
    border: 2px solid var(--highlight);
    transform: scale(1.02);
}

.story-video-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.video-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    background: #f8f9fa;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.video-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-loader p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.video-content {
    padding: 25px;
}

.video-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.video-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #526c86 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(67, 87, 112, 0.2);
}

.story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--highlight);
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
    font-size: 1.05rem;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
    .story-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .my-story {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .video-instruction {
        font-size: 1rem;
    }
    
    .story-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .story-video-card.featured {
        transform: none;
    }
    
    .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .story-cta {
        padding: 40px 30px;
    }
    
    .video-container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .story-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .video-container {
        height: 400px;
    }
}
    
     :root {
            --primary-dark: #435770;
            --accent: #9c5849;
            --highlight: #f8b195;
            --primary-light: #d9e1e8;
            --text-light: #6c757d;
            --white: #ffffff;
            --font-secondary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8fafb;
        }

 .services10 {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.container10 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-services10 {
    margin-bottom: 30px;
}

.services-logo10 {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.section-label10 {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(67, 87, 112, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: fit-content;
}

.services-title10 {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
}

.services-title10::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    border-radius: 2px;
}

.services-subtitle10 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.services-grid10 {
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card10 {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: 400px;
    cursor: pointer;
    border: 1px solid rgba(67, 87, 112, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 3;
}

.service-card10:hover::before {
    transform: scaleX(1);
}

.service-card10:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-front10 {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: space-between;
}

.service-icon10 {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 22px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(67, 87, 112, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.service-icon10::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 25px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.5s ease;
}

.service-card10:hover .service-icon10 {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 25px 40px rgba(67, 87, 112, 0.3);
}

.service-card10:hover .service-icon10::after {
    opacity: 0.5;
    filter: blur(25px);
}

.service-name10 {
    font-family: var(--font-secondary);
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.service-description10 {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Botão Saiba Mais */
.saiba-mais-btn10 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.saiba-mais-btn10::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.saiba-mais-btn10:hover::before {
    left: 100%;
}

.saiba-mais-btn10:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

.saiba-mais-btn10 i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.saiba-mais-btn10:hover i {
    transform: translateX(3px);
}

/* Seção de Check-ins */
.checkins-section10 {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(67, 87, 112, 0.05) 0%, rgba(67, 87, 112, 0.02) 100%);
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(67, 87, 112, 0.08);
}

.checkins-content10 {
    max-width: 800px;
    margin: 0 auto;
}

.checkins-title10 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.checkins-description10 {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.checkins-btn10 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.checkins-btn10::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.checkins-btn10:hover::before {
    left: 100%;
}

.checkins-btn10:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

/* Estilos do Modal */
.modal-overlay10 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay10.active {
    opacity: 1;
    visibility: visible;
}

.modal-content10 {
    background: var(--white);
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay10.active .modal-content10 {
    transform: translateY(0);
}

.close-modal10 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal10:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-body10 {
    padding: 40px;
}

.modal-header10 {
    text-align: center;
    margin-bottom: 30px;
}

.modal-title10 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.modal-description10 {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.modal-features10 {
    margin-bottom: 30px;
}

.service-features10 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features10 li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.service-features10 li i {
    margin-right: 12px;
    color: var(--highlight);
    font-size: 1.1rem;
    min-width: 20px;
    margin-top: 2px;
}

.modal-actions10 {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn10 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(67, 87, 112, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.whatsapp-btn10::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.whatsapp-btn10:hover::before {
    left: 100%;
}

.whatsapp-btn10:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 35px rgba(67, 87, 112, 0.4);
}

.fechar-btn10 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(67, 87, 112, 0.1);
    color: var(--primary-dark);
    border: 2px solid rgba(67, 87, 112, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fechar-btn10:hover {
    background: rgba(67, 87, 112, 0.2);
    border-color: rgba(67, 87, 112, 0.4);
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid10 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services10 {
        padding: 80px 0;
    }
    
    .services-title10 {
        font-size: 2.5rem;
    }
    
    .services-subtitle10 {
        font-size: 1.1rem;
    }
    
    .services-grid10 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card10 {
        height: 380px;
    }
    
    .service-icon10 {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-name10 {
        font-size: 1.6rem;
    }
    
    .checkins-section10 {
        padding: 30px;
        margin-top: 60px;
    }
    
    .checkins-title10 {
        font-size: 1.8rem;
    }
    
    .modal-content10 {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body10 {
        padding: 30px 25px;
    }
    
    .modal-title10 {
        font-size: 1.8rem;
    }
    
    .modal-actions10 {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn10, .fechar-btn10 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-title10 {
        font-size: 2.2rem;
    }
    
    .service-card10 {
        height: 350px;
    }
    
    .card-front10 {
        padding: 25px 15px;
    }
    
    .service-icon10 {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .service-name10 {
        font-size: 1.5rem;
    }
    
    .service-description10 {
        font-size: 1rem;
    }
    
    .services-logo10 {
        height: 120px;
    }
    
    .saiba-mais-btn10 {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .checkins-section10 {
        padding: 25px 20px;
    }
    
    .checkins-title10 {
        font-size: 1.6rem;
    }
    
    .checkins-description10 {
        font-size: 1rem;
    }
    
    .modal-body10 {
        padding: 25px 20px;
    }
    
    .modal-title10 {
        font-size: 1.6rem;
    }
}
/* Blog Section - Design Premium 1 */
.blog-section-1 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.blog-section-1::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 87, 112, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.blog-section-1::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 88, 73, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.container-1 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.blog-header-1 {
    text-align: center;
    margin-bottom: 60px;
}

.section-label-1 {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(67, 87, 112, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.blog-title-1 {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.title-mark-1 {
    position: relative;
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    z-index: 1;
}

.title-mark-1::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--highlight);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 3px;
    opacity: 0.8;
}

.blog-subtitle-1 {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.blog-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card-1 {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.blog-card-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-1.featured-1 {
    border: 2px solid var(--highlight);
    transform: scale(1.02);
}

.blog-card-1.featured-1::before {
    content: 'Destaque';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--highlight);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.card-media-1 {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.recipe-video-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.blog-card-1:hover .recipe-video-1 {
    transform: scale(1.05);
}

.video-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.blog-card-1:hover .video-overlay-1 {
    opacity: 0.8;
}

.play-button-1 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button-1 i {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-button-1:hover {
    transform: scale(1.1);
    background: var(--white);
}

.recipe-badge-1 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.card-content-1 {
    padding: 30px;
}

.recipe-title-1 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.recipe-excerpt-1 {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.recipe-meta-1 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item-1 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item-1 i {
    color: var(--accent);
}

.recipe-benefits-1 {
    list-style: none;
    margin-bottom: 25px;
}

.recipe-benefits-1 li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.recipe-benefits-1 i {
    color: var(--accent);
    font-size: 1rem;
}

.recipe-cta-1 {
    margin-top: 20px;
}

.recipe-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.recipe-button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

.blog-cta-1 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #526c86 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(67, 87, 112, 0.2);
}

.blog-cta-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-content-1 {
    position: relative;
    z-index: 2;
}

.cta-content-1 h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content-1 p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--highlight);
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 209, 102, 0.3);
    font-size: 1.05rem;
}

.cta-button-1:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
}

/* Modal Styles */
.recipe-modal-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recipe-modal-1.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-1 {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.recipe-modal-1.active .modal-content-1 {
    transform: scale(1);
}

.modal-close-1 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-dark);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header-1 {
    position: relative;
    height: 250px;
}

.modal-image-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-title-section-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.modal-title-section-1 h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-meta-1 {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.modal-meta-1 span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-body-1 {
    padding: 30px;
}

.modal-body-1 h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-section-1,
.preparation-section-1,
.tips-section-1 {
    margin-bottom: 30px;
}

.ingredients-section-1 ul,
.preparation-section-1 ol {
    padding-left: 20px;
}

.ingredients-section-1 li,
.preparation-section-1 li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.tips-section-1 p {
    background: rgba(67, 87, 112, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    font-style: italic;
}

.modal-footer-1 {
    padding: 0 30px 30px;
    text-align: center;
}

.download-button-1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(67, 87, 112, 0.2);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.download-button-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(67, 87, 112, 0.3);
}

/* Responsividade */
@media (max-width: 1024px) {
    .blog-grid-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section-1 {
        padding: 80px 0;
    }
    
    .blog-title-1 {
        font-size: 2.5rem;
    }
    
    .blog-subtitle-1 {
        font-size: 1.1rem;
    }
    
    .blog-grid-1 {
        grid-template-columns: 1fr;
    }
    
    .blog-card-1.featured-1 {
        transform: none;
    }
    
    .cta-content-1 h3 {
        font-size: 1.7rem;
    }
    
    .blog-cta-1 {
        padding: 40px 30px;
    }
    
    .modal-content-1 {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header-1 {
        height: 200px;
    }
    
    .modal-title-section-1 h2 {
        font-size: 1.6rem;
    }
    
    .modal-meta-1 {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .blog-title-1 {
        font-size: 2rem;
    }
    
    .card-content-1 {
        padding: 25px 20px;
    }
    
    .recipe-title-1 {
        font-size: 1.4rem;
    }
    
    .recipe-meta-1 {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button-1 {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .blog-cta-1 {
        padding: 30px 20px;
    }
    
    .cta-content-1 h3 {
        font-size: 1.5rem;
    }
    
    .modal-body-1 {
        padding: 20px;
    }
    
    .modal-footer-1 {
        padding: 0 20px 20px;
    }
    
    .download-button-1 {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


 /* Loja Section */
     :root {
            --primary: #435770;
            --secondary: #81aada;
            --accent: #957c5b;
            --light: #f5f5f5;
            --dark: #fffefe;
            --text: #333;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --highlight: #fff9c4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background-color: var(--light);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .container-loj {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .loja {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .loja::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 L100,0 L100,100 L0,100 Z" fill="rgba(149, 124, 91, 0.03)"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .section-header-loj {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .section-title-loj {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-loj::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--primary));
            border-radius: 2px;
        }
        
        .section-subtitle-loj {
            font-size: 1.2rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .produto-container-loj {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .produto-imagem-loj {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .produto-imagem-loj:hover {
            transform: perspective(1000px) rotateY(0deg) translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .produto-imagem-loj img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .produto-imagem-loj:hover img {
            transform: scale(1.05);
        }
        
        .badge-loj {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: var(--dark);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            animation: pulse 2s infinite;
        }
        
        .produto-info-loj {
            padding: 30px;
        }
        
        .produto-titulo-loj {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .produto-descricao-loj {
            font-size: 1.1rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .produto-lista-loj {
            margin-bottom: 30px;
        }
        
        .produto-item-loj {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .produto-item-loj i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.3rem;
            width: 25px;
        }
        
        .produto-preco-loj {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .preco-atual-loj {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
        }
        
        .preco-parcelado-loj {
            font-size: 1.1rem;
            color: var(--text);
        }
        
        .garantia-loj {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding: 15px;
            background: rgba(149, 124, 91, 0.1);
            border-radius: 10px;
        }
        
        .garantia-loj i {
            color: var(--accent);
            font-size: 2rem;
        }
        
        .garantia-texto-loj {
            font-size: 1rem;
            color: var(--text);
        }
        
        .btn-comprar-loj {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(67, 87, 112, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .btn-comprar-loj:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(67, 87, 112, 0.4);
        }
        
        .btn-comprar-loj::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }
        
        .btn-comprar-loj:hover::before {
            left: 100%;
        }
        
        .novidades-loj {
            text-align: center;
            margin-top: 80px;
            padding: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, #2c3a4e 100%);
            border-radius: 20px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .novidades-loj::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,50 L100,0 L100,100 L0,100 Z" fill="rgba(255, 255, 255, 0.03)"/></svg>');
            background-size: cover;
            z-index: 1;
        }
        
        .novidades-conteudo-loj {
            position: relative;
            z-index: 2;
        }
        
        .novidades-titulo-loj {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .novidades-texto-loj {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contador-loj {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contador-item-loj {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            min-width: 100px;
            backdrop-filter: blur(10px);
        }
        
        .contador-numero-loj {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
        }
        
        .contador-label-loj {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-notificar-loj {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--secondary);
            color: var(--dark);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }
        
        .btn-notificar-loj:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Animações */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .produto-container-loj {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .produto-imagem-loj {
                transform: perspective(1000px) rotateY(0deg);
                max-width: 500px;
                margin: 0 auto;
            }
            
            .section-title-loj {
                font-size: 2.5rem;
            }
            
            .produto-titulo-loj {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .loja {
                padding: 80px 0;
            }
            
            .section-title-loj {
                font-size: 2.2rem;
            }
            
            .produto-titulo-loj {
                font-size: 1.8rem;
            }
            
            .preco-atual-loj {
                font-size: 2.2rem;
            }
            
            .novidades-titulo-loj {
                font-size: 1.8rem;
            }
            
            .contador-item-loj {
                min-width: 80px;
                padding: 15px;
            }
            
            .contador-numero-loj {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title-loj {
                font-size: 1.8rem;
            }
            
            .produto-titulo-loj {
                font-size: 1.6rem;
            }
            
            .btn-comprar-loj {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            .contador-loj {
                gap: 10px;
            }
            
            .contador-item-loj {
                min-width: 70px;
                padding: 10px;
            }
            
            .contador-numero-loj {
                font-size: 1.5rem;
            }
        }
:root {
            --primary-dark: #435770;
            --primary-light: #dbe1e3;
            --white: #ffffff;
            --black: #000000;
            --accent: #957c5b;
            --highlight: #b1a79e;
            --text-dark: #2a2a2a;
            --text-light: #5a5a5a;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);
            --border-radius: 16px;
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Manrope', sans-serif;
        }
        
        /* Efeitos de partículas no background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(-35px) translateX(-15px);
            }
            75% {
                transform: translateY(-15px) translateX(15px);
            }
        }
        
        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.97), rgba(219, 225, 227, 0.2));
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 90% 10%, rgba(149, 124, 91, 0.05) 0%, transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(67, 87, 112, 0.05) 0%, transparent 25%);
            z-index: 0;
            animation: pulse 15s infinite alternate;
        }
        
        @keyframes pulse {
            0% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }

        .contact .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            padding-right: 20px;
        }

        .contact-title {
            font-family: var(--font-secondary);
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .contact-text {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-details {
            margin-bottom: 50px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background: var(--primary-dark);
            color: var(--white);
            transform: scale(1.1);
        }

        .contact-item-content h4 {
            font-family: var(--font-secondary);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .contact-item-content p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .contact-item-content a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-link:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-5px);
        }

        .contact-form-container {
            background: var(--white);
            padding: 20px 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(67, 87, 112, 0.1);
            animation: glow 3s infinite alternate;
        }
        
        @keyframes glow {
            from {
                box-shadow: var(--shadow-md);
            }
            to {
                box-shadow: 0 0 25px rgba(67, 87, 112, 0.2);
            }
        }

        .form-title {
            font-family: var(--font-secondary);
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 1rem;
            font-family: var(--font-secondary);
        }

        .form-input {
            padding: 16px 20px;
            border: 1px solid var(--primary-light);
            border-radius: 12px;
            font-size: 1rem;
            font-family: var(--font-primary);
            transition: var(--transition);
            background: rgba(219, 225, 227, 0.2);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 3px rgba(67, 87, 112, 0.2);
            background: var(--white);
            transform: translateY(-2px);
        }

        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            margin-top: 70px;
            padding: 18px 30px;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-secondary);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            background: var(--accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .contact .container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .contact-info {
                padding-right: 0;
            }
            
            .contact-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .contact {
                padding: 80px 0;
            }
        .contact-item {
            display: flex !important;
            flex-direction: row !important; /* ícone à esquerda, texto à direita */
            align-items: flex-start !important; /* alinhamento vertical ao topo */
            gap: 15px !important; /* espaço entre ícone e conteúdo */
            text-align: left !important; /* texto alinhado à esquerda */
        }

        .contact-icon {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            font-size: 32px !important; /* tamanho do ícone */
            width: 50px !important; /* largura fixa do ícone */
            height: 50px !important; /* altura fixa do ícone */
        }

        .contact-item-content h4,
        .contact-item-content p {
            margin: 0 !important;
        }



            .contact-title {
                font-size: 2.5rem;
            }
            
            .contact-form-container {
                padding: 40px 30px;
            }
            
            .contact-item {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .contact-icon {
                align-self: center;
            }
            
            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .contact-title {
                font-size: 2.2rem;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
        
        
            .form-title {
                font-size: 1.8rem;
            }
        }

         /* Efeitos de partículas no background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(-35px) translateX(-15px);
            }
            75% {
                transform: translateY(-15px) translateX(15px);
            }
        }
      
   /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 87, 112, 0.03) 0%, rgba(149, 124, 91, 0.03) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(149, 124, 91, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(67, 87, 112, 0.1) 0%, transparent 70%);
            z-index: 0;
        }
        
        .testimonials .container {
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-label {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            background: rgba(149, 124, 91, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
        }
        
        .section-title {
            font-family: var(--font-secondary);
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--primary-dark));
            border-radius: 2px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .testimonial-content {
            padding-right: 30px;
        }
        
        .testimonial-title {
            font-family: var(--font-secondary);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .testimonial-title span {
            color: var(--accent);
            position: relative;
        }
        
        .testimonial-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(149, 124, 91, 0.2);
            z-index: -1;
        }
        
        .marketing-highlights {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .highlight-item:hover .highlight-icon {
            background: var(--primary-dark);
            color: var(--white);
            transform: scale(1.1) rotate(5deg);
        }
        
        .highlight-text {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 35px;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-secondary);
            box-shadow: var(--shadow-md);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background: var(--accent);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-slider {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            transition: transform 0.5s ease;
        }
        
        .testimonial-slider:hover {
            transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-5px);
        }
        
        .slider-container {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
            transform: scale(0.95);
        }
        
        .slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .youtube-video-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        
        .youtube-video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Efeitos especiais para o card */
        .testimonial-slider::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--primary-dark), var(--accent), var(--primary-dark));
            z-index: -1;
            border-radius: 20px;
            opacity: 0.7;
            filter: blur(20px);
            animation: borderGlow 3s infinite alternate;
        }
        
        @keyframes borderGlow {
            0% {
                opacity: 0.4;
            }
            100% {
                opacity: 0.7;
            }
        }
        
        .shine-effect {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.7) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg);
            animation: shine 5s infinite;
            z-index: 5;
        }
        
        @keyframes shine {
            0% {
                left: -50%;
                top: -50%;
            }
            20% {
                left: 100%;
                top: 100%;
            }
            100% {
                left: 100%;
                top: 100%;
            }
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .testimonial-content {
                padding-right: 0;
                text-align: center;
            }
            
            .testimonial-title {
                font-size: 2.2rem;
            }
            
            .highlight-item {
                justify-content: center;
            }
            
            .slider-container {
                height: 450px;
            }
        }
        
        @media (max-width: 768px) {
            .testimonials {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .testimonial-title {
                font-size: 2rem;
            }
            
            .slider-container {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .testimonial-title {
                font-size: 1.8rem;
            }
            
            .slider-container {
                height: 350px;
            }
            
            .cta-button {
                padding: 16px 30px;
                font-size: 1rem;
            }
        }
        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3a4e 100%);
            color: var(--white);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            max-width: 50px;
            height: auto;
            filter: brightness(0) invert(1);
        }
        
        .footer-about {
            margin-bottom: 25px;
        }
        
        .footer-about p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }
        
        .footer-contact-info {
            margin-bottom: 25px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .footer-contact-item:hover .footer-contact-icon {
            background: var(--accent);
            transform: scale(1.05);
        }
        
        .footer-contact-text h4 {
            font-family: var(--font-secondary);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .footer-contact-text p,
        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .footer-contact-text a:hover {
            color: var(--accent);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .footer-social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .footer-heading {
            font-family: var(--font-secondary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .newsletter-input {
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-family: var(--font-primary);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .newsletter-button {
            text-decoration: none;
            padding: 15px 25px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .newsletter-button:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .footer-map {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 250px;
            margin-bottom: 30px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            filter: grayscale(20%) contrast(110%);
        }
        
        .footer-business-hours {
            margin-bottom: 30px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-day {
            color: var(--white);
            font-weight: 500;
        }
        
        .hours-time {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .developer-credit {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .developer-credit a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .developer-credit a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        .footer-payments {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .payment-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-right: 10px;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
        }
        
        .payment-icon {
            width: 40px;
            height: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-newsletter {
                grid-column: span 2;
                order: 3;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-newsletter {
                grid-column: span 1;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-payments {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .footer-heading {
                font-size: 1.2rem;
                
            }
            
            .footer-newsletter {
                padding: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-map {
                height: 200px;
            }
        }