/*
Theme Name: Loucos Landing
Author: R&R Company
Version: 1.0
*/
        :root {
            --cyan: #029dc4;
            --blue: #1f58ca;
            --purple: #700ecd;
            --dark: #1a1a1a;
            --dark2: #2d2d2d;
            --light: #ffffff;
            --gray: #666;
            --light-gray: #f8f9fa;
            --green: #10b981;
            --red: #ef4444;
            --yellow: #fbbf24;
            --gradient: linear-gradient(90deg, #029dc4 0%, #1f58ca 50%, #700ecd 100%);
            --gradient-135: linear-gradient(135deg, #029dc4 0%, #1f58ca 50%, #700ecd 100%);
            --radius: 20px;
            --max-width: 1200px;
            --font: 'Poppins', sans-serif;
            --font-titles: 'Times New Roman', Times, serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font);
            background: var(--light-gray);
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6,
        .section-title,
        .hero-content h1,
        .pricing-section h2,
        .carousels-content h3,
        .bonus-card h3,
        .guarantee-box h3,
        footer h3 {
            font-family: var(--font-titles) !important;
            font-style: italic !important;
            font-stretch: condensed !important;
            letter-spacing: 0 !important;
        }

        header {
            background: var(--gradient);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(2, 157, 196, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            height: 60px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-weight: 600;
            font-size: 13px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #21bee2;
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .urgency-banner {
            background: #21bee2;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-weight: 600;
            font-size: 16px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .urgency-banner-content {
            display: inline-block;
            animation: marquee 50s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: linear-gradient(90deg, #029dc4 0%, #1f58ca 50%, #700ecd 100%);
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            color: white;
        }

        .hero-content h1 {
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.1;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .hero-content h1 .highlight {
            color: #fbbf24;
        }

        .hero-content .lead {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .hero-phones {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px auto;
            max-width: 800px;
        }

        .phone-mockup {
            width: 280px;
            height: 560px;
            background: #1a1a1a;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
        }

        .phone-notch {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 25px;
            background: #1a1a1a;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 32px;
            overflow: hidden;
            background: #000;
            position: relative;
        }

        .phone-carousel {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-slide {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        .btn {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            padding: 20px 40px !important;
            border-radius: 50px !important;
            font-weight: 900 !important;
            font-size: 18px !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
            cursor: pointer !important;
            border: none !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: var(--gradient) !important;
            color: white !important;
            box-shadow: 0 10px 30px rgba(2, 157, 196, 0.4) !important;
            transition: all 0.3s ease !important;
        }

        .btn-primary:hover {
            background: var(--green) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 15px 45px rgba(16, 185, 129, 0.6) !important;
        }

        .btn-secondary {
            background: var(--green) !important;
            color: white !important;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4) !important;
            transition: all 0.3s ease !important;
        }

        .btn-secondary:hover {
            background: #059669 !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 15px 45px rgba(16, 185, 129, 0.6) !important;
        }

        .section {
            padding: 50px 20px;
            background: white;
        }

        .section-alt {
            background: var(--light-gray);
        }

        .section-title {
            font-size: 42px;
            font-weight: 900;
            text-align: center;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 20px;
            text-align: center;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.6;
            font-weight: 500;
        }

        .scroll-carousel-section {
            padding: 35px 0;
            background: white;
            overflow: visible;
        }

        .scroll-carousel-wrapper {
            position: relative;
            margin: 50px 0;
            width: 100%;
            overflow: visible;
        }

        .scroll-carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding: 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--cyan) #e5e7eb;
            width: 100%;
            touch-action: pan-x;
        }

        .scroll-carousel::-webkit-scrollbar {
            height: 8px;
        }

        .scroll-carousel::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }

        .scroll-carousel::-webkit-scrollbar-thumb {
            background: var(--cyan);
            border-radius: 10px;
        }

        .scroll-carousel-item {
            min-width: 350px;
            width: 350px;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .scroll-carousel-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }

        .scroll-carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            border-radius: var(--radius);
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 40px;
            color: white;
            font-size: 50px;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10000;
        }

        .modal-close:hover {
            transform: scale(1.2);
            color: var(--red);
        }

        .for-you-section {
            padding: 35px 20px;
            background: #e5e7eb;
        }

        .for-you-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .for-you-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            border: 2px solid #cbd5e1;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .for-you-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 50%;
            background: #700ecd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .for-you-card p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--dark2);
            font-weight: 600;
        }
/* ADAPTABLE TEMPLATES SECTION */
.adaptable-section {
    padding: 40px 20px;
    background: white;
}

.adaptable-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.adaptable-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: var(--font-titles) !important;
    font-style: italic !important;
}

.adaptable-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.adaptable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    margin: 40px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.adaptable-item {
    position: relative;
}

.adaptable-item img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.adaptable-item:hover img {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.adaptable-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(2, 157, 196, 0.3);
}

.adaptable-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 36px;
    color: var(--cyan);
    opacity: 0.7;
}
        /* CANVA FREE SECTION */
        .canva-free-section {
            padding: 30px 20px;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .canva-free-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            color: #1a1a1a;
        }

        .canva-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .canva-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .canva-free-title {
            font-size: 20px;
            font-weight: 400;
            color: #1a1a1a;
            margin-bottom: 15px;
            font-style: italic;
            line-height: 1.3;
        }

        .canva-free-title strong {
            font-weight: 700;
        }

        .canva-free-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .canva-free-cta {
            background: var(--gradient) !important;
            color: white !important;
            padding: 12px 35px !important;
            font-size: 14px !important;
            font-weight: 800 !important;
            border-radius: 50px !important;
            text-transform: uppercase !important;
            letter-spacing: 0.8px !important;
            box-shadow: 0 6px 20px rgba(2, 157, 196, 0.4) !important;
            display: inline-block;
            text-decoration: none !important;
            transition: all 0.3s !important;
        }

        .canva-free-cta:hover {
            background: var(--green) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5) !important;
        }

        /* TESTIMONIALS SECTION */
        .testimonials-section {
            padding: 40px 20px;
            background: white;
            color: #1a1a1a;
        }

        .testimonials-section .section-title {
            color: #1a1a1a;
            font-size: 38px;
        }

        .testimonials-section .section-subtitle {
            color: #666;
            font-size: 18px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 40px auto 0;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.3s;
            cursor: pointer;
            border: 2px solid #e5e7eb;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(2, 157, 196, 0.25);
            border-color: var(--cyan);
        }

        .testimonial-card img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 300px;
            object-fit: cover;
        }

        .bonus-section {
            padding: 35px 20px;
            background: white;
        }

        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .bonus-card {
            background: var(--light-gray);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            border: 2px solid #e5e7eb;
            transition: all 0.3s;
        }

        .bonus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--cyan);
        }

        .bonus-image {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 12px;
            overflow: hidden;
        }

        .bonus-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bonus-card h3 {
            font-size: 22px;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .bonus-card p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .bonus-value {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            background: var(--green);
            color: white;
            font-weight: 800;
            font-size: 14px;
        }

        .bonus-old-price {
            text-decoration: line-through;
            color: var(--gray);
            margin-right: 10px;
        }

        .niches-section {
            background:
                linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
                url('https://loucosporcanva.com.br/wp-content/uploads/2025/12/back.png')
                center/cover no-repeat;
            padding: 35px 20px;
        }

       .niches-section .section-title,
.niches-section .section-subtitle {
    text-align: center;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

        .niches-section .highlight-white {
            color: white;
            font-style: italic;
        }

        .niches-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 22px 26px;
            max-width: 1100px;
            margin: 50px auto 0;
        }

        .niche-tag {
            background: #ffffff;
            color: #2b2b2b;
            border: 2px solid rgba(0,0,0,.25);
            border-radius: 12px;
            padding: 16px 26px;
            font-weight: 500;
            font-size: 18px;
            letter-spacing: .2px;
            min-width: 240px;
            transition: all 0.3s;
        }

        .niche-tag:nth-child(even) {
            background: #c9e5f2;
        }

        .niche-tag:hover {
            filter: brightness(0.98);
        }

        .niche-tag.highlight {
            background: #ffffff;
            color: #2b2b2b;
            border: 2px solid #16a34a;
            font-weight: 500;
            min-width: 520px;
        }

        .carousels-section {
            padding: 35px 20px;
            background: #f8f9fa;
            color: #1a1a1a;
        }

        .carousels-section .section-title {
            color: #1a1a1a;
        }

        .carousels-section .section-subtitle {
            color: #666;
        }

        .carousels-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: var(--max-width);
            margin: 50px auto 0;
        }

        .carousels-content h3 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #1a1a1a;
        }

        .carousels-content h3 em {
            font-style: italic;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .carousels-content p {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
            color: #666;
        }

        .carousels-image {
            max-width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .carousels-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .pricing-section {
            background: linear-gradient(90deg, #029dc4 0%, #1f58ca 50%, #700ecd 100%);
            padding: 35px 20px;
            text-align: center;
            color: white;
        }

        .pricing-box {
            background: white;
            border-radius: calc(var(--radius) + 10px);
            padding: 50px 40px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            color: #1a1a1a;
        }

        .price-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            background: var(--red);
            color: white;
            font-weight: 900;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .price-old {
            font-size: 28px;
            color: var(--gray);
            text-decoration: line-through;
        }

        .price-new {
            font-size: 72px;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin: 20px 0;
        }

        .price-subtitle {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .guarantee-box {
            background: #f0fdf4;
            border: 3px solid var(--green);
            border-radius: var(--radius);
            padding: 40px;
            margin: 40px auto;
            max-width: 700px;
            text-align: center;
        }

        .guarantee-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }

        .guarantee-box h3 {
            font-size: 28px;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .guarantee-box p {
            font-size: 17px;
            color: var(--dark2);
            line-height: 1.8;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-item summary {
            padding: 25px;
            cursor: pointer;
            font-weight: 800;
            color: #1a1a1a;
            font-size: 18px;
            list-style: none;
            user-select: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 28px;
            font-weight: 300;
            color: var(--blue);
        }

        .faq-item[open] summary::after {
            content: '−';
        }

        .faq-answer {
            padding: 0 25px 25px;
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
        }

        footer {
            background: var(--dark);
            color: white;
            padding: 60px 20px 30px;
            text-align: center;
        }

        footer h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--cyan);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 30px 0;
        }

        .footer-social a {
            color: white;
            font-size: 28px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            color: var(--cyan);
            transform: scale(1.2);
        }

        .copyright {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #333;
            font-size: 13px;
            color: #888;
        }

        /* Responsivo - Tablets */
        @media (min-width: 769px) and (max-width: 968px) {
            .scroll-carousel-item {
                min-width: 300px;
                width: 300px;
                height: 430px;
            }

            .scroll-carousel {
                padding: 20px 15px;
            }
        }

        @media (max-width: 968px) {
            .hero-grid,
            .carousels-grid,
            .adaptable-grid {
                grid-template-columns: 1fr;
                gap: 40px;
.adaptable-item img {
        max-width: 300px;
    }
            }

            .adaptable-arrow {
                display: none;
            }

            .adaptable-item img {
                max-width: 200px;
            }

            .for-you-grid {
                grid-template-columns: 1fr;
            }

            .niches-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 32px;
            }

            .price-new {
                font-size: 56px;
            }

            .header-badge {
                display: none;
            }

            .carousels-content h3 {
                font-size: 32px;
            }

            .hero-phones {
                flex-direction: column;
                align-items: center;
            }

            .phone-mockup {
                width: 250px;
                height: 500px;
            }

            .adaptable-title {
                font-size: 28px;
            }

            .canva-free-title {
                font-size: 22px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fadeInUp {
            animation: fadeInUp 0.6s ease-out;
        }

        /* ANIMAÇÃO DE LOGOS FLUTUANTES */
        .floating-logos {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .floating-logo {
            position: absolute;
            opacity: 0.10;
        }

        .floating-logo img {
            display: block;
            width: 100%;
            height: auto;
        }

        /* LOGO 1 - GRANDE ESQUERDA */
        .floating-logo-1 {
            width: 180px;
            top: 10%;
            left: 5%;
            animation: float-1 6s ease-in-out infinite;
        }

        /* LOGO 2 - MÉDIO DIREITA */
        .floating-logo-2 {
            width: 120px;
            top: 60%;
            right: 8%;
            animation: float-2 7s ease-in-out infinite 1.5s;
        }

        /* LOGO 3 - PEQUENO CENTRO */
        .floating-logo-3 {
            width: 90px;
            top: 35%;
            left: 50%;
            animation: float-3 5s ease-in-out infinite 3s;
        }

        /* LOGO 4 - MÉDIO ESQUERDA BAIXO */
        .floating-logo-4 {
            width: 110px;
            bottom: 15%;
            left: 15%;
            animation: float-4 8s ease-in-out infinite 2s;
        }

        @keyframes float-1 {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-40px) rotate(8deg);
            }
        }

        @keyframes float-2 {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-35px) rotate(-6deg);
            }
        }

        @keyframes float-3 {
            0%, 100% {
                transform: translateY(0px) rotate(0deg) scale(1);
            }
            50% {
                transform: translateY(-25px) rotate(5deg) scale(1.1);
            }
        }

        @keyframes float-4 {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(-8deg);
            }
        }

        /* Responsivo - Esconde em mobile */
        @media (max-width: 768px) {
            .floating-logos {
                display: none;
            }

            .scroll-carousel-section {
                padding: 60px 0;
                overflow: visible;
            }

            .scroll-carousel-section .container {
                padding: 0;
                max-width: 100%;
            }

            .scroll-carousel {
                padding: 15px 10px 15px 10px;
                gap: 12px;
            }

            .scroll-carousel-item {
                min-width: 260px !important;
                width: 260px !important;
                height: 370px !important;
            }

            .scroll-carousel-wrapper {
                margin: 25px 0;
                padding: 0;
                overflow-x: auto;
            }

            .section-subtitle {
                font-size: 16px;
                padding: 0 20px;
            }

            .scroll-carousel-section .section-title {
                padding: 0 20px;
                font-size: 28px;
            }
        }

        /* Free Templates Section */
        .free-section {
            padding: 40px 20px;
            background: #f8f9fa;
            text-align: center;
        }
        .free-badge {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: #333;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        .free-title {
            font-size: 36px;
            font-weight: 800;
            color: #1f58ca;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .free-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .free-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .free-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s;
        }
        .free-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        .free-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .free-info {
            padding: 25px;
            text-align: center;
        }
        .free-info h3 {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        .free-info p {
            font-size: 15px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .free-button {
            background: linear-gradient(90deg, #029dc4 0%, #1f58ca 50%, #700ecd 100%);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 6px 18px rgba(2, 157, 196, 0.4);
        }
        .free-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(2, 157, 196, 0.6);
        }
        .free-button i {
            margin-right: 10px;
        }
    