 :root {
            --otica-gia-bg: #F5F0EB;
            --otica-gia-gold: #C4A35A;
            --otica-gia-gold-light: #D4B36A;
            --otica-gia-green: #2D6B4F;
            --otica-gia-green-hover: #245a42;
            --otica-gia-text: #1A1A1A;
            --otica-gia-text-light: #555555;
            --otica-gia-white: #FFFFFF;
            --otica-gia-border: #E5E0D8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--otica-gia-bg);
            color: var(--otica-gia-text);
            overflow-x: hidden;
        }

        /* Header */
        .otica-gia-header {
            width: 100%;
            padding: 24px 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .otica-gia-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .otica-gia-logo-icon {
            width: 36px;
            height: 36px;
            border: 2px solid var(--otica-gia-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .otica-gia-logo-icon::before {
            content: '';
            position: absolute;
            width: 14px;
            height: 8px;
            border: 2px solid var(--otica-gia-gold);
            border-radius: 50% 50% 0 0;
            border-bottom: none;
            top: 8px;
        }

        .otica-gia-logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .otica-gia-logo-text-small {
            font-size: 10px;
            letter-spacing: 2px;
            color: var(--otica-gia-text-light);
            font-weight: 500;
            text-transform: uppercase;
        }

        .otica-gia-logo-text-large {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--otica-gia-text);
            text-transform: uppercase;
        }

        .otica-gia-btn-comprar {
            padding: 10px 24px;
            border: 1px solid var(--otica-gia-text);
            border-radius: 24px;
            background: transparent;
            color: var(--otica-gia-text);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .otica-gia-btn-comprar:hover {
            background: var(--otica-gia-text);
            color: var(--otica-gia-white);
        }

        /* Hero Section */
        .otica-gia-hero {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 48px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        /* Left Content */
        .otica-gia-hero-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            padding-top: 20px;
        }

        .otica-gia-hero-tag {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--otica-gia-gold);
            text-transform: uppercase;
        }

        .otica-gia-hero-tag::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background-color: var(--otica-gia-gold);
        }

        .otica-gia-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            line-height: 1.1;
            font-weight: 400;
            color: var(--otica-gia-text);
            margin-top: 8px;
        }

        .otica-gia-hero-title-accent {
            color: var(--otica-gia-gold);
            font-style: italic;
        }

        .otica-gia-hero-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-style: italic;
            font-weight: 400;
            color: var(--otica-gia-text);
            line-height: 1.5;
            max-width: 90%;
        }

        .otica-gia-hero-divider {
            width: 48px;
            height: 2px;
            background-color: var(--otica-gia-gold);
            margin: 8px 0;
        }

        .otica-gia-hero-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--otica-gia-text-light);
            max-width: 90%;
            font-weight: 400;
        }

        .otica-gia-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--otica-gia-green);
            color: var(--otica-gia-white);
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            margin-top: 8px;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            box-shadow: 0 4px 20px rgba(45, 107, 79, 0.3);
        }

        .otica-gia-hero-btn:hover {
            background-color: var(--otica-gia-green-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(45, 107, 79, 0.4);
        }

        .otica-gia-hero-btn-arrow {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .otica-gia-hero-btn:hover .otica-gia-hero-btn-arrow {
            transform: translateX(4px);
        }

        .otica-gia-hero-features {
            display: flex;
            gap: 28px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .otica-gia-hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--otica-gia-text-light);
            font-weight: 500;
        }

        .otica-gia-hero-feature-dot {
            width: 8px;
            height: 8px;
            background-color: var(--otica-gia-gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Right Image */
        .otica-gia-hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 540px;
            justify-self: end;
        }

        .otica-gia-hero-image {
            width: 100%;
            height: 620px;
            object-fit: cover;
            border-radius: 24px;
            display: block;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .otica-gia-hero-image-decor {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            border: 1px solid rgba(196, 163, 90, 0.3);
            border-radius: 50%;
            z-index: 3;
        }

        .otica-gia-hero-image-decor::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border: 1px solid rgba(196, 163, 90, 0.2);
            border-radius: 50%;
        }

        .otica-gia-hero-image-label {
            position: absolute;
            bottom: 24px;
            left: 24px;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .otica-gia-hero-image-label-collection {
            font-size: 10px;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            font-weight: 500;
        }

        .otica-gia-hero-image-label-name {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            color: var(--otica-gia-white);
            font-weight: 400;
        }

        .otica-gia-hero-image-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            z-index: 3;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 12px;
            color: var(--otica-gia-white);
            font-weight: 500;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* Decorative top line */
        .otica-gia-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--otica-gia-gold), transparent);
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .otica-gia-hero {
                gap: 40px;
            }
            
            .otica-gia-hero-title {
                font-size: 44px;
            }
            
            .otica-gia-hero-image {
                height: 520px;
            }
        }

        @media (max-width: 768px) {
            .otica-gia-header {
                padding: 20px 24px;
            }
            
            .otica-gia-hero {
                grid-template-columns: 1fr;
                padding: 30px 24px 60px;
                gap: 40px;
            }
            
            .otica-gia-hero-content {
                order: 2;
                padding-top: 0;
            }
            
            .otica-gia-hero-image-wrapper {
                order: 1;
                justify-self: center;
                max-width: 100%;
            }
            
            .otica-gia-hero-image {
                height: 420px;
                border-radius: 20px;
            }
            
            .otica-gia-hero-title {
                font-size: 38px;
            }
            
            .otica-gia-hero-subtitle {
                font-size: 18px;
                max-width: 100%;
            }
            
            .otica-gia-hero-text {
                max-width: 100%;
            }
            
            .otica-gia-hero-btn {
                width: 100%;
                justify-content: center;
            }
            
            .otica-gia-hero-features {
                justify-content: center;
                gap: 16px;
            }
            
            .otica-gia-hero-feature {
                font-size: 11px;
            }
            
            .otica-gia-hero-image-decor {
                width: 60px;
                height: 60px;
                top: -12px;
                right: -12px;
            }
            
            .otica-gia-hero-image-decor::after {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 480px) {
            .otica-gia-hero-title {
                font-size: 32px;
            }
            
            .otica-gia-hero-image {
                height: 360px;
            }
            
            .otica-gia-hero-features {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .otica-gia-logo-text-large {
                font-size: 16px;
            }
            
            .otica-gia-btn-comprar {
                padding: 8px 18px;
                font-size: 11px;
            }
        }

         /* ============================================
       SEÇÃO PRÓXIMO PASSO
       ============================================ */
    .otica-gia-next-step {
        width: 100%;
        padding: 100px 24px;
        position: relative;
        overflow: hidden;
    }

    /* Padrão de fundo sutil */
    .otica-gia-next-step::before {
        content: '';
        position: absolute;
        inset: 0;
        background-color: var(--otica-gia-bg, #F5F0EB);
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(196, 163, 90, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(196, 163, 90, 0.04) 0%, transparent 50%);
        z-index: 0;
    }

    .otica-gia-next-step-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Header */
    .otica-gia-next-step-header {
        text-align: center;
        margin-bottom: 56px;
    }

    .otica-gia-next-step-tag {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 600;
        color: var(--otica-gia-gold, #C4A35A);
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .otica-gia-next-step-tag-line {
        display: block;
        width: 32px;
        height: 1px;
        background-color: var(--otica-gia-gold, #C4A35A);
    }

    .otica-gia-next-step-title {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        line-height: 1.15;
        font-weight: 400;
        color: var(--otica-gia-text, #1A1A1A);
        margin-bottom: 16px;
    }

    .otica-gia-next-step-title-accent {
        color: var(--otica-gia-gold, #C4A35A);
        font-style: italic;
    }

    .otica-gia-next-step-subtitle {
        font-family: 'Montserrat', sans-serif;
        font-size: 15px;
        color: var(--otica-gia-text-light, #555555);
        font-weight: 400;
    }

    /* Cards Grid */
    .otica-gia-next-step-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 80px;
    }

    .otica-gia-next-step-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(196, 163, 90, 0.15);
        border-radius: 20px;
        padding: 48px 40px;
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .otica-gia-next-step-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--otica-gia-gold, #C4A35A), transparent);
        opacity: 0.3;
    }

    .otica-gia-next-step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
        border-color: rgba(196, 163, 90, 0.3);
    }

    .otica-gia-next-step-card-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--otica-gia-gold, #C4A35A);
        opacity: 0.8;
    }

    .otica-gia-next-step-card-title {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 400;
        line-height: 1.3;
        color: var(--otica-gia-text, #1A1A1A);
        margin-bottom: 16px;
    }

    .otica-gia-next-step-card-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        line-height: 1.7;
        color: var(--otica-gia-text-light, #555555);
        margin-bottom: 32px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .otica-gia-next-step-card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        padding: 16px 28px;
        border-radius: 50px;
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 18px;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        margin-bottom: 16px;
    }

    .otica-gia-next-step-card-btn--dark {
        background-color: var(--otica-gia-text, #1A1A1A);
        color: var(--otica-gia-white, #FFFFFF);
        box-shadow: 0 4px 16px rgba(26, 26, 26, 0.2);
    }

    .otica-gia-next-step-card-btn--dark:hover {
        background-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
    }

    .otica-gia-next-step-card-btn--green {
        background-color: var(--otica-gia-green, #2D6B4F);
        color: var(--otica-gia-white, #FFFFFF);
        box-shadow: 0 4px 16px rgba(45, 107, 79, 0.25);
    }

    .otica-gia-next-step-card-btn--green:hover {
        background-color: var(--otica-gia-green-hover, #245a42);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 107, 79, 0.35);
    }

    .otica-gia-next-step-card-footer {
        font-family: 'Montserrat', sans-serif;
        font-size: 10px;
        letter-spacing: 1.5px;
        font-weight: 600;
        color: var(--otica-gia-text-light, #555555);
        text-transform: uppercase;
        opacity: 0.7;
    }

    /* Features */
    .otica-gia-next-step-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 100%;
        margin: 0 auto;
    }

    .otica-gia-next-step-feature {
        text-align: center;
        padding: 24px 16px;
        transition: transform 0.3s ease;
        background: #fff;
        border-radius: 13px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    }

    .otica-gia-next-step-feature:hover {
        transform: translateY(-4px);
    }

    .otica-gia-next-step-feature-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--otica-gia-gold, #C4A35A);
        opacity: 1;
        background: #faf6f0;
        border-radius: 100%;
        border: 1px solid #e8d8bf;
    }

    .otica-gia-next-step-feature-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--otica-gia-text, #1A1A1A);
        margin-bottom: 4px;
    }

    .otica-gia-next-step-feature-desc {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        color: var(--otica-gia-text-light, #555555);
        opacity: 0.8;
    }

    /* ============================================
       RESPONSIVO
       ============================================ */
    @media (max-width: 1024px) {
        .otica-gia-next-step-title {
            font-size: 36px;
        }
        
        .otica-gia-next-step-card {
            padding: 40px 32px;
        }
    }

    @media (max-width: 768px) {
        .otica-gia-next-step {
            padding: 60px 20px;
        }
        
        .otica-gia-next-step-title {
            font-size: 30px;
        }
        
        .otica-gia-next-step-cards {
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }
        
        .otica-gia-next-step-card {
            padding: 36px 28px;
        }
        
        .otica-gia-next-step-card-title {
            font-size: 22px;
        }
        
        .otica-gia-next-step-features {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .otica-gia-next-step-feature {
            padding: 16px 8px;
        }
    }

    @media (max-width: 480px) {
        .otica-gia-next-step-title {
            font-size: 26px;
        }
        
        .otica-gia-next-step-card {
            padding: 32px 20px;
        }
        
        .otica-gia-next-step-card-title {
            font-size: 20px;
        }
        
        .otica-gia-next-step-card-btn {
            font-size: 11px;
            padding: 14px 20px;
        }
        
        .otica-gia-next-step-features {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .otica-gia-next-step-feature-title {
            font-size: 12px;
        }
        
        .otica-gia-next-step-feature-desc {
            font-size: 10px;
        }
    }